From 2f44e519400cf15060f519830c3cff01d1d3484f Mon Sep 17 00:00:00 2001 From: shenyuan Date: Wed, 7 Sep 2022 11:02:19 +0800 Subject: [PATCH] =?UTF-8?q?20220907-syy-=E5=B7=A5=E5=BA=8F=E9=9D=A2?= =?UTF-8?q?=E6=96=99-=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../procedure/processAccessories.vue | 40 ++++++++++++ .../views/cloths/ZyProcessAccessoriesList.vue | 11 +++- .../ZyProcessAccessoriesFormDetail.vue | 65 +++++++++++++++++++ 3 files changed, 113 insertions(+), 3 deletions(-) create mode 100644 ant-design-vue-jeecg/src/components/procedure/processAccessories.vue create mode 100644 ant-design-vue-jeecg/src/views/cloths/modules/ZyProcessAccessoriesFormDetail.vue diff --git a/ant-design-vue-jeecg/src/components/procedure/processAccessories.vue b/ant-design-vue-jeecg/src/components/procedure/processAccessories.vue new file mode 100644 index 00000000..093cb509 --- /dev/null +++ b/ant-design-vue-jeecg/src/components/procedure/processAccessories.vue @@ -0,0 +1,40 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/cloths/ZyProcessAccessoriesList.vue b/ant-design-vue-jeecg/src/views/cloths/ZyProcessAccessoriesList.vue index 55d1a9af..ad2569d4 100644 --- a/ant-design-vue-jeecg/src/views/cloths/ZyProcessAccessoriesList.vue +++ b/ant-design-vue-jeecg/src/views/cloths/ZyProcessAccessoriesList.vue @@ -89,7 +89,7 @@ - 详情 + 详情 删除 @@ -101,6 +101,7 @@ + @@ -110,12 +111,13 @@ import { mixinDevice } from '@/utils/mixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin' import ZyProcessAccessoriesModal from './modules/ZyProcessAccessoriesModal' + import ZyProcessAccessoriesFormDetail from './modules/ZyProcessAccessoriesFormDetail' export default { name: 'ZyProcessAccessoriesList', mixins:[JeecgListMixin, mixinDevice], components: { - ZyProcessAccessoriesModal + ZyProcessAccessoriesModal,ZyProcessAccessoriesFormDetail }, data () { return { @@ -175,7 +177,7 @@ deleteBatch: "/pro/zyProcessAccessories/deleteBatch", exportXlsUrl: "/pro/zyProcessAccessories/exportXls", importExcelUrl: "pro/zyProcessAccessories/importExcel", - + }, dictOptions:{}, superFieldList:[], @@ -197,6 +199,9 @@ fieldList.push({type:'popup',value:'processId',text:'工序表id', popup:{code:'',field:'',orgFields:'',destFields:''}}) fieldList.push({type:'popup',value:'accessoriesId',text:'面料表id', popup:{code:'',field:'',orgFields:'',destFields:''}}) this.superFieldList = fieldList + }, + handleDetail(id){ + this.$refs.ZyProcessAccessoriesFormDetail.showModal(id) } } } diff --git a/ant-design-vue-jeecg/src/views/cloths/modules/ZyProcessAccessoriesFormDetail.vue b/ant-design-vue-jeecg/src/views/cloths/modules/ZyProcessAccessoriesFormDetail.vue new file mode 100644 index 00000000..9cd876f0 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/cloths/modules/ZyProcessAccessoriesFormDetail.vue @@ -0,0 +1,65 @@ + + + + \ No newline at end of file