This commit is contained in:
linfeng 2022-12-29 09:35:09 +08:00
parent ce9e093fb4
commit 5a6865e07e

View File

@ -2,19 +2,23 @@
<el-dialog <el-dialog
:title="!dataForm.id ? '新增' : '修改'" :title="!dataForm.id ? '新增' : '修改'"
:close-on-click-modal="false" :close-on-click-modal="false"
:visible.sync="visible"> :visible.sync="visible"
<el-form :model="dataForm" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="80px"> >
<el-form
:model="dataForm"
ref="dataForm"
@keyup.enter.native="dataFormSubmit()"
label-width="80px"
>
<el-form-item label="浏览量" prop="readCount"> <el-form-item label="浏览量" prop="readCount">
<el-input v-model="dataForm.readCount" placeholder="浏览量"></el-input> <el-input v-model="dataForm.readCount" placeholder="浏览量"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="置顶" prop="postTop"> <el-form-item label="平台置顶" prop="postTop">
<el-radio-group v-model="dataForm.postTop"> <el-radio-group v-model="dataForm.postTop">
<el-radio :label="0"></el-radio> <el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio> <el-radio :label="1"></el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="visible = false">取消</el-button> <el-button @click="visible = false">取消</el-button>
@ -30,101 +34,102 @@
visible: false, visible: false,
dataForm: { dataForm: {
id: 0, id: 0,
uid: '', uid: "",
topicId: '', topicId: "",
discussId: '', discussId: "",
voteId: '', voteId: "",
title: '', title: "",
content: '', content: "",
media: '', media: "",
readCount: '', readCount: "",
postTop: '', postTop: "",
type: '', type: "",
address: '', address: "",
longitude: '', longitude: "",
latitude: '', latitude: "",
createTime: '', createTime: "",
status:'', status: "",
}, },
};
}
}, },
methods: { methods: {
init(id) { init(id) {
this.dataForm.id = id || 0 this.dataForm.id = id || 0;
this.visible = true this.visible = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['dataForm'].resetFields() this.$refs["dataForm"].resetFields();
if (this.dataForm.id) { if (this.dataForm.id) {
this.$http({ this.$http({
url: this.$http.adornUrl(`/admin/post/info/${this.dataForm.id}`), url: this.$http.adornUrl(`/admin/post/info/${this.dataForm.id}`),
method: 'get', method: "get",
params: this.$http.adornParams() params: this.$http.adornParams(),
}).then(({ data }) => { }).then(({ data }) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.dataForm.uid = data.post.uid this.dataForm.uid = data.post.uid;
this.dataForm.topicId = data.post.topicId this.dataForm.topicId = data.post.topicId;
this.dataForm.discussId = data.post.discussId this.dataForm.discussId = data.post.discussId;
this.dataForm.voteId = data.post.voteId this.dataForm.voteId = data.post.voteId;
this.dataForm.title = data.post.title this.dataForm.title = data.post.title;
this.dataForm.content = data.post.content this.dataForm.content = data.post.content;
this.dataForm.media = data.post.media this.dataForm.media = data.post.media;
this.dataForm.readCount = data.post.readCount this.dataForm.readCount = data.post.readCount;
this.dataForm.postTop = data.post.postTop this.dataForm.postTop = data.post.postTop;
this.dataForm.type = data.post.type this.dataForm.type = data.post.type;
this.dataForm.address = data.post.address this.dataForm.address = data.post.address;
this.dataForm.longitude = data.post.longitude this.dataForm.longitude = data.post.longitude;
this.dataForm.latitude = data.post.latitude this.dataForm.latitude = data.post.latitude;
this.dataForm.createTime = data.post.createTime this.dataForm.createTime = data.post.createTime;
this.dataForm.status = data.post.status this.dataForm.status = data.post.status;
} }
}) });
} }
}) });
}, },
// //
dataFormSubmit() { dataFormSubmit() {
this.$refs['dataForm'].validate((valid) => { this.$refs["dataForm"].validate((valid) => {
if (valid) { if (valid) {
this.$http({ this.$http({
url: this.$http.adornUrl(`/admin/post/${!this.dataForm.id ? 'save' : 'update'}`), url: this.$http.adornUrl(
method: 'post', `/admin/post/${!this.dataForm.id ? "save" : "update"}`
),
method: "post",
data: this.$http.adornData({ data: this.$http.adornData({
'id': this.dataForm.id || undefined, id: this.dataForm.id || undefined,
'uid': this.dataForm.uid, uid: this.dataForm.uid,
'topicId': this.dataForm.topicId, topicId: this.dataForm.topicId,
'discussId': this.dataForm.discussId, discussId: this.dataForm.discussId,
'voteId': this.dataForm.voteId, voteId: this.dataForm.voteId,
'title': this.dataForm.title, title: this.dataForm.title,
'content': this.dataForm.content, content: this.dataForm.content,
'media': this.dataForm.media, media: this.dataForm.media,
'readCount': this.dataForm.readCount, readCount: this.dataForm.readCount,
'postTop': this.dataForm.postTop, postTop: this.dataForm.postTop,
'type': this.dataForm.type, type: this.dataForm.type,
'address': this.dataForm.address, address: this.dataForm.address,
'longitude': this.dataForm.longitude, longitude: this.dataForm.longitude,
'latitude': this.dataForm.latitude, latitude: this.dataForm.latitude,
'createTime': this.dataForm.createTime, createTime: this.dataForm.createTime,
'status': this.dataForm.status, status: this.dataForm.status,
}) }),
}).then(({ data }) => { }).then(({ data }) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message({ this.$message({
message: '操作成功', message: "操作成功",
type: 'success', type: "success",
duration: 1500, duration: 1500,
onClose: () => { onClose: () => {
this.visible = false this.visible = false;
this.$emit('refreshDataList') this.$emit("refreshDataList");
} },
}) });
} else { } else {
this.$message.error(data.msg) this.$message.error(data.msg);
}
})
}
})
}
} }
});
} }
});
},
},
};
</script> </script>