From 7a5f71b1a9868ea0a90a097d24890454b8f7ef34 Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: 星期四, 27 十一月 2025 10:27:32 +0800
Subject: [PATCH] 修改新增
---
src/views/work/selfProblems/internalAudit/auditorManage/tableList/components/editDialog.vue | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/views/work/selfProblems/internalAudit/auditorManage/tableList/components/editDialog.vue b/src/views/work/selfProblems/internalAudit/auditorManage/tableList/components/editDialog.vue
index 4939c0e..b16a327 100644
--- a/src/views/work/selfProblems/internalAudit/auditorManage/tableList/components/editDialog.vue
+++ b/src/views/work/selfProblems/internalAudit/auditorManage/tableList/components/editDialog.vue
@@ -9,7 +9,7 @@
:close-on-click-modal="false"
>
<el-form :model="state.form" size="default" ref="superRef" :rules="state.formRules" label-width="150px" >
- <el-form-item label="企业名称:" prop="companyId" v-if="state.isAdmin">
+ <el-form-item label="单位名称:" prop="companyId" v-if="state.isAdmin">
<el-select
v-model="state.form.companyId"
filterable
@@ -43,19 +43,19 @@
/>
</el-select>
</el-form-item>
- <el-form-item label="内审员证书:" prop="certifity">
+ <el-form-item label="内审员证书:" prop="paperStudentId">
<el-select
clearable
- v-model="state.form.certifity"
+ v-model="state.form.paperStudentId"
:disabled="state.title =='查看'"
filterable
style="width: 100%"
>
<el-option
v-for="item in state.certList"
- :key="item.number"
+ :key="item.paperStudentId"
:label="item.certName"
- :value="item.number"
+ :value="item.paperStudentId"
/>
</el-select>
</el-form-item>
@@ -96,7 +96,7 @@
id: null,
personId: null,
companyId: null,
- certifity: '',
+ paperStudentId: '',
amount: '',
conclusion: ''
@@ -208,7 +208,7 @@
}
const selectValueCom = (val) => {
state.form.personId = null
- state.form.certifity = ''
+ state.form.paperStudentId = ''
getPeopleList()
}
@@ -217,7 +217,7 @@
id: null,
personId: null,
companyId: null,
- certifity: '',
+ paperStudentId: '',
amount: '',
conclusion: ''
}
@@ -229,7 +229,7 @@
dialogVisible.value = false;
}
const changePerson = () =>{
- state.form.certifity = ''
+ state.form.paperStudentId = ''
getCertList()
}
--
Gitblit v1.9.2