diff --git a/src/views/extend/processFlowView/components/ProcessBomList.vue b/src/views/extend/processFlowView/components/ProcessBomList.vue
index dc3533cd..8e9c0eec 100644
--- a/src/views/extend/processFlowView/components/ProcessBomList.vue
+++ b/src/views/extend/processFlowView/components/ProcessBomList.vue
@@ -8,6 +8,50 @@
+
+
+
+ 分配设备
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -19,15 +63,40 @@ export default {
data() {
return {
searchBarFormConfig: [{ label: '工序下设备' }],
+ tableProps: [
+ // {
+ // prop: 'createTime',
+ // label: '添加时间',
+ // fixed: true,
+ // width: 180,
+ // filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
+ // },
+ { prop: 'name', label: '设备名称' },
+ { prop: 'code', label: '物料BOM' },
+ { prop: 'remark', label: '参数BOM' },
+ ],
+ list: [],
+ total: 0,
+ tableBtn: [],
+ queryParams: {
+ pageNo: 1,
+ pageSize: 10,
+ },
};
},
computed: {},
- methods: {},
+ methods: {
+ handleEmitFun() {},
+ handleTableBtnClick() {},
+ getList() {},
+ },
};