emis-frontend/src/views/emis/emisWaybillProblemFaq/commentInfoForm.vue

166 lines
4.3 KiB
Vue
Raw Normal View History

2024-06-20 04:48:19 +00:00
<template>
<div >
2024-06-20 05:36:41 +00:00
<el-form ref="form" :model="form" size="mini" :rules="rules" label-width="80px">
2024-06-20 04:48:19 +00:00
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
<el-col :span="24">
2024-06-20 05:36:41 +00:00
<el-form-item label="处理状态" prop="status">
<el-input v-model="form.status" placeholder="" />
2024-06-20 04:48:19 +00:00
</el-form-item>
</el-col>
<el-col :span="24">
2024-06-20 05:36:41 +00:00
<el-form-item label="回复内容" prop="content">
<el-input v-model="form.content" type="textarea" placeholder="请输入具体内容" />
2024-06-20 04:48:19 +00:00
</el-form-item>
</el-col>
</el-row>
</el-form>
<div style="text-align: center;margin-bottom: 10px;">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
2024-06-20 09:31:46 +00:00
<el-scrollbar class="kr-designer-tool_con">
<panel class="control-panel" />
<CommentPanel :billCode="billCode" ></CommentPanel>
</el-scrollbar>
2024-06-20 05:36:41 +00:00
2024-06-20 04:48:19 +00:00
</div>
</template>
<script>
import { listEmisWaybillProblemFaq, getEmisWaybillProblemFaq, delEmisWaybillProblemFaq, addEmisWaybillProblemFaq, updateEmisWaybillProblemFaq } from "@/api/emis/emisWaybillProblemFaq";
2024-06-20 05:36:41 +00:00
import CommentPanel from '@/views/emis/emisWaybillProblemFaq/commentPanel.vue';
2024-06-20 04:48:19 +00:00
export default {
name: "emisWaybillProblemFaqForm",
props:{
2024-06-20 05:36:41 +00:00
promInfo:{
type:Object
2024-06-20 09:31:46 +00:00
},
2024-06-20 04:48:19 +00:00
},
2024-06-20 05:36:41 +00:00
components: { CommentPanel },
2024-06-20 04:48:19 +00:00
dicts: [
],
data() {
return {
emisWaybillProblemFaqOptions: [],
// 遮罩层
loading: true,
2024-06-20 09:31:46 +00:00
2024-06-20 04:48:19 +00:00
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "id不能为空", trigger: "blur" }
],
probId: [
{ required: true, message: "问题件序号不能为空", trigger: "blur" }
],
title: [
{ required: true, message: "标题不能为空", trigger: "blur" }
],
content: [
{ required: true, message: "具体内容不能为空", trigger: "blur" }
],
}
};
},
watch: {
"id": {
handler (newValue, oldValue) {
this.id = newValue;
this.initData();
},
deep: true
}
},
created() {
this.initData();
},
methods: {
initData() {
2024-06-20 09:31:46 +00:00
this.reset();
2024-06-20 04:48:19 +00:00
2024-06-20 09:31:46 +00:00
// if(this.id !=null) {
// this.loading = true;
// getEmisWaybillProblemFaq(this.id).then(response => {
// this.form = response.data;
// this.loading = false;
// });
// }else{
// }
2024-06-20 04:48:19 +00:00
// this.getTreeselect();
},
// 取消按钮
cancel() {
this.reset();
this.$emit("on-cancel");
},
// 表单重置
reset() {
this.form = {
id: null,
probId: null,
billCode: null,
title: null,
content: null,
status: null,
showFlag: null,
replayId: null,
delFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null,
createSite: null,
updateSite: null
};
this.resetForm("form");
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
2024-06-20 09:31:46 +00:00
addEmisWaybillProblemFaq(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
2024-06-20 04:48:19 +00:00
this.$emit("on-changed");
});
}
});
},
// /** 转换菜单数据结构 */
// normalizer(node) {
// if (node.children && !node.children.length) {
// delete node.children;
// }
// return {
// id: node.id,
// label: node.idName,
// children: node.children
// };
// },
// /** 查询菜单下拉树结构 */
// getTreeselect() {
// const queryParams = {}
// listEmisWaybillProblemFaq(queryParams).then(response => {
// this.emisWaybillProblemFaqOptions = [];
// const rootItem = { idId: 0, emisWaybillProblemFaqName: '-', children: [] };
// rootItem.children = this.handleTree(response.data, "id");
// this.emisWaybillProblemFaqOptions.push(rootItem);
// if(this.parentId != undefined) {
// this.form.parentId = this.parentId;
// }
// });
// },
}
};
</script>