浏览代码

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

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 : '';
             }
           },
           {