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