祖安之光
8 天以前 65c426a4930005901aa86a7cb8a60cf27811617c
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()
}