| | |
| | | <el-col :span="11" :offset="2"> |
| | | <el-form-item label="被考核人" size="default" prop="beExaminedPersonName"> |
| | | <el-input v-model="form.beExaminedPersonName"> |
| | | <template #append> <el-button :icon="Search" @click="daiInpt(2)" /></template> |
| | | <template #append> <el-button :icon="Search" @click="daiInpt(0)" /></template> |
| | | </el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | form.value.examinePersonId = val.uid; |
| | | form.value.examinePersonName = val.realName; |
| | | } else if (type == 2) { |
| | | form.value.beExaminedPersonId = val.uid; |
| | | form.value.beExaminedPersonName = val.realName; |
| | | let uid=[] |
| | | let realName=[] |
| | | for(let i=0;i<val.length;i++){ |
| | | uid.push(val[i].uid) |
| | | realName.push(val[i].realName) |
| | | } |
| | | form.value.beExaminedPersonId = uid.toString(); |
| | | form.value.beExaminedPersonName =realName.toString(); |
| | | console.log(form.value.beExaminedPersonId,form.value.beExaminedPersonName) |
| | | } |
| | | }; |
| | | //全屏 |