| | |
| | | <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> |
| | |
| | | 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" |
| | |
| | | function openDialog(item) { |
| | | info.value = item |
| | | form.value.id = item.id |
| | | form.value.result = "" |
| | | dialogVisible.value = true |
| | | } |
| | | function closeDialog() { |
| | |
| | | if(val.code == 200){ |
| | | ElMessage.success("操作成功") |
| | | closeDialog() |
| | | emits('upload') |
| | | } |
| | | }) |
| | | } |