From 50a690b3b8d60746e83592f6045a8e052aba1c6e Mon Sep 17 00:00:00 2001 From: shenyuan Date: Sat, 10 Dec 2022 17:11:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B6=E8=A1=A3=E9=83=A8=E4=BB=B6=E8=AF=A6?= =?UTF-8?q?=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/process/ZyClothsComponentList.vue | 9 +- .../modules/ZyClothsComponentListDetail.vue | 125 ++++++++++++++++++ 2 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 ant-design-vue-jeecg/src/views/process/modules/ZyClothsComponentListDetail.vue diff --git a/ant-design-vue-jeecg/src/views/process/ZyClothsComponentList.vue b/ant-design-vue-jeecg/src/views/process/ZyClothsComponentList.vue index 711921fa..67c2036d 100644 --- a/ant-design-vue-jeecg/src/views/process/ZyClothsComponentList.vue +++ b/ant-design-vue-jeecg/src/views/process/ZyClothsComponentList.vue @@ -100,6 +100,7 @@ + @@ -111,14 +112,15 @@ import ZyClothsComponentModal from './modules/ZyClothsComponentModal' import ZyProcessComponentList from "@views/process/ZyProcessComponentList" import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'; - +import ZyClothsComponentListDetail from './modules/ZyClothsComponentListDetail' export default { name: 'ZyClothsComponentList', mixins:[JeecgListMixin, mixinDevice], components: { ZyProcessComponentList, - ZyClothsComponentModal + ZyClothsComponentModal, + ZyClothsComponentListDetail }, data () { return { @@ -239,6 +241,9 @@ fieldList.push({type:'string',value:'modularId',text:'模块',dictCode:'zy_cloths_modular,modular_name,id'}) fieldList.push({type:'string',value:'enterpriseId',text:'企业',dictCode:''}) this.superFieldList = fieldList + }, + handleDetail(record){ + this.$refs.ZyClothsComponentListDetail.showModal(record) } } } diff --git a/ant-design-vue-jeecg/src/views/process/modules/ZyClothsComponentListDetail.vue b/ant-design-vue-jeecg/src/views/process/modules/ZyClothsComponentListDetail.vue new file mode 100644 index 00000000..fc44ff34 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/process/modules/ZyClothsComponentListDetail.vue @@ -0,0 +1,125 @@ + + + \ No newline at end of file