|
@@ -104,7 +104,7 @@
|
|
|
<!-- 第一审核人 -->
|
|
|
<el-form-item label="第一审核人" v-if="auditTypeItem.auditType == 2">
|
|
|
<el-select v-if="user.userNameNeedTranslate != '1'" v-model="addForm.firstCheckerId"
|
|
|
- :placeholder="$t('pleaseselecttheapplicant')" style="width: 150px"
|
|
|
+ :placeholder="'请选择审核人'" style="width: 150px"
|
|
|
filterable="true">
|
|
|
<span v-for="(item, index) in usersNoInfo" :key="index">
|
|
|
<el-option :label="item.name" :value="item.id"></el-option>
|
|
@@ -118,7 +118,7 @@
|
|
|
<!-- 第一审核人 -->
|
|
|
<el-form-item label="第二审核人" v-if="auditTypeItem.auditType == 2">
|
|
|
<el-select v-if="user.userNameNeedTranslate != '1'" v-model="addForm.secondCheckerId"
|
|
|
- :placeholder="$t('pleaseselecttheapplicant')" style="width: 150px"
|
|
|
+ :placeholder="'请选择审核人'" style="width: 150px"
|
|
|
filterable="true">
|
|
|
<span v-for="(item, index) in usersNoInfo" :key="index">
|
|
|
<el-option :label="item.name" :value="item.id"></el-option>
|
|
@@ -461,13 +461,13 @@
|
|
|
<el-select v-if="user.userNameNeedTranslate != '1'" v-model="ParticularsList.firstCheckerId"
|
|
|
:placeholder="'请选择审核人'" style="width: 150px" :disabled="ParticularsList.reviewProcess > 0"
|
|
|
filterable="true">
|
|
|
- <span v-for="(item, index) in usersNoInfo" :key="index">
|
|
|
+ <span v-for="(item, index) in users" :key="index">
|
|
|
<el-option :label="item.name" :value="item.id"></el-option>
|
|
|
</span>
|
|
|
</el-select>
|
|
|
|
|
|
<selectCat v-if="user.userNameNeedTranslate == '1'" :size="'medium'" :widthStr="'150'" :distinction="'6'"
|
|
|
- :subject="usersNoInfo" :subjectId="ParticularsList.firstCheckerId" ref="selectCat" :disabled="ParticularsList.reviewProcess > 0"
|
|
|
+ :subject="users" :subjectId="ParticularsList.firstCheckerId" ref="selectCat" :disabled="ParticularsList.reviewProcess > 0"
|
|
|
@selectCal="selectCal"></selectCat>
|
|
|
</el-form-item>
|
|
|
<!-- 第二审核人 -->
|
|
@@ -475,13 +475,13 @@
|
|
|
<el-select v-if="user.userNameNeedTranslate != '1'" v-model="ParticularsList.secondCheckerId"
|
|
|
:placeholder="'请选择审核人'" style="width: 150px" :disabled="ParticularsList.reviewProcess > 1"
|
|
|
filterable="true">
|
|
|
- <span v-for="(item, index) in usersNoInfo" :key="index">
|
|
|
+ <span v-for="(item, index) in users" :key="index">
|
|
|
<el-option :label="item.name" :value="item.id"></el-option>
|
|
|
</span>
|
|
|
</el-select>
|
|
|
|
|
|
<selectCat v-if="user.userNameNeedTranslate == '1'" :size="'medium'" :widthStr="'150'" :distinction="'7'"
|
|
|
- :subject="usersNoInfo" :subjectId="ParticularsList.secondCheckerId" ref="selectCat" :disabled="ParticularsList.reviewProcess > 1"
|
|
|
+ :subject="users" :subjectId="ParticularsList.secondCheckerId" ref="selectCat" :disabled="ParticularsList.reviewProcess > 1"
|
|
|
@selectCal="selectCal"></selectCat>
|
|
|
</el-form-item>
|
|
|
|