diff --git a/src/views/mes/md/mditem/components/sop.vue b/src/views/mes/md/mditem/components/sop.vue index 0591db2..120a3f1 100644 --- a/src/views/mes/md/mditem/components/sop.vue +++ b/src/views/mes/md/mditem/components/sop.vue @@ -48,12 +48,12 @@
- - + +
- {{sopList[index].sopDescription}} + {{sopList[index].sopTitle}} @@ -88,28 +88,31 @@ export default{ ], }, // 产品SOP表格数据 - sopList: [ - { - sopId: 1, - sopTitle: '移液盒注塑作业指导书-1', - sopDescription: "请注意操作顺序", - sopUrl: "https://t7.baidu.com/it/u=1595072465,3644073269&fm=193&f=GIF" - } - ], + sopList: [], //用于图片预览的清单 imageList: [], //工序选项 processOptions:[], - + queryParams: { + itemId: this.itemId + } } }, created(){ + this.getList(); this.getProcess(); }, methods: { //获取当前产品的SOP资料清单 - getSopList(){ - + getList(){ + listSop(this.queryParams).then(response =>{ + debugger; + this.imageList = []; + this.sopList = response.rows; + this.sopList.forEach(row => { + this.imageList.push(row.sopUrl); + }); + }); }, //查询工序信息 getProcess(){ @@ -154,10 +157,6 @@ export default{ this.open = true; this.title = "修改产品SOP"; }); - }, - //选择工序 - handleSelectProcess(){ - }, //图片上传成功 handleImgUplaoded(imgUrl){ diff --git a/src/views/mes/md/mditem/index.vue b/src/views/mes/md/mditem/index.vue index 94f071c..6b31ad2 100644 --- a/src/views/mes/md/mditem/index.vue +++ b/src/views/mes/md/mditem/index.vue @@ -316,7 +316,7 @@ - +