瀏覽代碼

SAI检查管理新增/修改下拉框label加员工号

wangggziwen 2 年之前
父節點
當前提交
f3c5e248a9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ui/src/views/production/check/index.vue

+ 1 - 1
ui/src/views/production/check/index.vue

@@ -454,7 +454,7 @@ export default {
         this.applicantOptions = [];
         for (let i = 0; i < staffList.length; i++) {
           let staffOption = {
-            dictLabel: staffList[i].name,
+            dictLabel: staffList[i].staffid + " - " + staffList[i].name,
             dictValue: staffList[i].userId
           }
           this.applicantOptions.push(staffOption);