소스 검색

工位管理新增设备编码显示

yusheng 9 달 전
부모
커밋
ef2b6c7cd0
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8 1
      src/views/factoryModel/station/index.vue

+ 8 - 1
src/views/factoryModel/station/index.vue

@@ -143,7 +143,14 @@
             label: '设备名称',
             prop: 'extInfo.assetName',
             formatter: (_row, _column, cellValue) => {
-              return typeof cellValue === 'string' ? cellValue :'';
+              return typeof cellValue === 'string' ? cellValue : '';
+            }
+          },
+          {
+            label: '设备编码',
+            prop: 'extInfo.assetCode',
+            formatter: (_row, _column, cellValue) => {
+              return typeof cellValue === 'string' ? cellValue : '';
             }
           },
           {