|
|
@ -357,8 +357,8 @@
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-form-item label="是否转办" prop="isturn">
|
|
|
|
<el-form-item label="是否是转办单">
|
|
|
|
<el-select v-model="form.isturn" placeholder="请选择是否转办">
|
|
|
|
<el-select v-model="form.isturn" placeholder="请选择是否是转办单">
|
|
|
|
<el-option
|
|
|
|
<el-option
|
|
|
|
v-for="dict in dict.type.tc_yes_no"
|
|
|
|
v-for="dict in dict.type.tc_yes_no"
|
|
|
|
:key="dict.value"
|
|
|
|
:key="dict.value"
|
|
|
@ -369,6 +369,39 @@
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
|
|
<el-form-item label="是否提示单">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="form.reminder"
|
|
|
|
|
|
|
|
placeholder="请选择是否是提示单"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
|
|
v-for="dict in dict.type.tc_yes_no"
|
|
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
|
|
:value="parseInt(dict.value)"
|
|
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
|
|
<el-form-item label="舆情报告类型">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="form.sentimentReportType"
|
|
|
|
|
|
|
|
placeholder="请选择舆情报告类型"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
|
|
v-for="dict in dict.type.tc_yqbg_type"
|
|
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
|
|
:value="parseInt(dict.value)"
|
|
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-form-item label="附件上传" prop="fileName">
|
|
|
|
<el-form-item label="附件上传" prop="fileName">
|
|
|
@ -483,6 +516,7 @@ export default {
|
|
|
|
"tc_yes_no",
|
|
|
|
"tc_yes_no",
|
|
|
|
"tc_event_type",
|
|
|
|
"tc_event_type",
|
|
|
|
"tc_yq_type",
|
|
|
|
"tc_yq_type",
|
|
|
|
|
|
|
|
"tc_yqbg_type",
|
|
|
|
],
|
|
|
|
],
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
@ -600,6 +634,7 @@ export default {
|
|
|
|
updateTime: null,
|
|
|
|
updateTime: null,
|
|
|
|
|
|
|
|
|
|
|
|
remark: null,
|
|
|
|
remark: null,
|
|
|
|
|
|
|
|
reminder: null,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.fileList = [];
|
|
|
|
this.fileList = [];
|
|
|
|
this.resetForm("form");
|
|
|
|
this.resetForm("form");
|
|
|
@ -689,7 +724,6 @@ export default {
|
|
|
|
if (valid) {
|
|
|
|
if (valid) {
|
|
|
|
if (this.form.id != null) {
|
|
|
|
if (this.form.id != null) {
|
|
|
|
this.form.areaId = JSON.stringify(this.form.areaId);
|
|
|
|
this.form.areaId = JSON.stringify(this.form.areaId);
|
|
|
|
|
|
|
|
|
|
|
|
this.filterFile(1);
|
|
|
|
this.filterFile(1);
|
|
|
|
updateSentiment(this.form).then((response) => {
|
|
|
|
updateSentiment(this.form).then((response) => {
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
@ -697,6 +731,7 @@ export default {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.form.areaId = JSON.stringify(this.form.areaId);
|
|
|
|
addSentiment(this.form).then((response) => {
|
|
|
|
addSentiment(this.form).then((response) => {
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.open = false;
|
|
|
|