From 603b43fcf3381307f8ad7c2c6f181b3f7cb1ccc0 Mon Sep 17 00:00:00 2001 From: wjt <1797368093@qq.com> Date: 星期三, 26 六月 2024 10:07:54 +0800 Subject: [PATCH] 投诉内容置空 --- src/views/infomanger/complating/component/index.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/views/infomanger/complating/component/index.vue b/src/views/infomanger/complating/component/index.vue index 6cf1fb2..fa274ee 100644 --- a/src/views/infomanger/complating/component/index.vue +++ b/src/views/infomanger/complating/component/index.vue @@ -12,7 +12,7 @@ <el-radio value="2">鍔炵粨</el-radio> </el-radio-group> </el-form-item> - <el-form-item label="椹冲洖鍘熷洜"> + <el-form-item label="璇存槑"> <el-input type="textarea" placeholder="璇疯緭鍏�" v-model="form.result"></el-input> </el-form-item> </el-form> @@ -27,6 +27,7 @@ import { ElMessage } from 'element-plus' import { updComplaintLog, doComplaint } from "@/api/system/company/company" const dialogVisible = ref(false) + const emits = defineEmits({}) const info = ref({}) const form = ref({ complaintStatus: "-1" @@ -34,6 +35,7 @@ function openDialog(item) { info.value = item form.value.id = item.id + form.value.result = "" dialogVisible.value = true } function closeDialog() { @@ -50,6 +52,7 @@ if(val.code == 200){ ElMessage.success("鎿嶄綔鎴愬姛") closeDialog() + emits('upload') } }) } -- Gitblit v1.9.1