From b9f127e59ea5fa113b3b0241ed3fc860512ae6d1 Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Wed, 26 Oct 2022 15:21:50 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activiti/form/ProcessUdgetPlanForm.vue | 186 +++++++++++++----- 1 file changed, 134 insertions(+), 52 deletions(-) diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue index 5b1d8c5..0fe2bd8 100644 --- a/src/views/activiti/form/ProcessUdgetPlanForm.vue +++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue @@ -119,6 +119,8 @@ data() { return { bigId:[], + bigIdMerchandiseNews:[], + bigIdMerchandiseNewsList:[], labelCol: { xs: { span: 24 }, sm: { span: 6 } @@ -156,7 +158,6 @@ width: '200px', placeholder: '请输入${title}', options: [], - props:{title: 'show title'} // scopedSlots: { customRender: 'edit' },//引入的插槽 // customRender:function (t,r,index) { // console.log(t,r); @@ -171,7 +172,7 @@ dictCode: '', width: '200px', placeholder: '请输入${title}', - defaultValue: '' + options: [], }, // { // title: '物料描述', @@ -240,7 +241,8 @@ { title: '物料名称及规格型号', key: 'materialName', - type: FormTypes.sel_search, + type: FormTypes.input, + // type: FormTypes.sel_search, dictCode: '', width: '200px', placeholder: '请输入${title}', @@ -249,7 +251,7 @@ { title: '系列', key: 'materialSeries', - type: FormTypes.sel_search, + type: FormTypes.input, dictCode: '', width: '200px', placeholder: '请输入${title}', @@ -258,7 +260,8 @@ { title: '单位', key: 'materialUnit', - type: FormTypes.select, + type: FormTypes.input, + // type: FormTypes.select, dictCode: '', width: '200px', placeholder: '请输入${title}', @@ -396,17 +399,55 @@ }, methods: { onSelect(record) { - // this.$refs.processUdgetPlanMaterial.getValues((error, values) => { - // - // console.log(error, values) - // }) - - console.log(record.row); - console.log(record.row.materialGroup); - if(record.row.materialGroup.length > 0){ - console.log("执行l") + // console.log(record.row); + if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber === ''){ + // console.log("执行materialGroup") this.fetchMerchandiseNews(record.row.materialGroup); } + if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber !== ''){ + // console.log("执行materialNumber") + let materialName = { } + this.bigIdMerchandiseNewsList.forEach( item => { + if( item.id === record.row.materialNumber ){ + materialName ={ + name: item.merchandiseName, + unit: item.materialsUnit, + } + + } + }) + let values = [ + { + rowKey: record.row.id, + values: { + 'materialNumber': record.row.materialNumber, + 'materialGroup': record.row.materialGroup, + 'materialSeries':"SM-JD36-BA", + 'materialName': materialName.name, + 'materialUnit': materialName.unit, + }, + }, + ] + this.$refs.processUdgetPlanMaterial.setValues(values); + } + + if(record.row.materialQuantity !== '' && record.row.materialPrice !== '' && record.row.materialQuantity !== undefined && record.row.materialPrice !== undefined){ + // record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice; + let values = [ + { + rowKey: record.row.id, + values: { + 'materialNumber': record.row.materialNumber, + 'materialGroup': record.row.materialGroup, + 'materialSeries': record.row.materialSeries, + 'materialName': record.row.materialName, + 'materialUnit': record.row.materialUnit, + 'materialAmount': record.row.materialQuantity * record.row.materialPrice + }, + }, + ] + this.$refs.processUdgetPlanMaterial.setValues(values); + } }, fetchMerchandiseNews(value){ //查询物料组 @@ -415,16 +456,54 @@ delFlag: 0, descriptionId:value, } - this.bigId = []; + this.bigIdMerchandiseNews = []; + this.bigIdMerchandiseNewsList = []; + let qc = []; + let numberList = []; + if(this.processUdgetPlanMaterialTable.columns[1].options.length > 0){ + this.processUdgetPlanMaterialTable.columns[1].options = []; + } + this.$refs.processUdgetPlanMaterial.getValues((a,b,c)=>{ + // console.log(a,b,c) + b.forEach(item =>{ + if(item.materialNumber !== '' && item.materialNumber !== undefined && item.materialNumber !== null){ + numberList.push(item.materialNumber); + } + }); + }); getAction(this.url.merchandiseNewsList,par).then((res)=>{ if(res.success){ - console.log(res.result); - // res.result.forEach( item => { - // this.processUdgetPlanMaterialTable.columns[0].options.push({ - // title : item.descriptionName, - // value : item.id, - // }) - // }) + // console.log(res.result); + let newList = res.result; + // console.log("12312312:"+numberList.length); + if(numberList.length > 0){ + newList.forEach( item => { + qc.push({ + title : item.materialsNumber, + value : item.id, + disabled : false + }) + }) + numberList.forEach( num => { + qc.forEach( i => { + if(num === i.value){ + console.log(num,i.value); + i.disabled = true; + } + }); + }) + this.processUdgetPlanMaterialTable.columns[1].options = qc; + }else{ + newList.forEach( item => { + this.processUdgetPlanMaterialTable.columns[1].options.push({ + title : item.materialsNumber, + value : item.id, + disabled : false + }) + }) + } + // console.log(this.processUdgetPlanMaterialTable.columns[1].options); + this.bigIdMerchandiseNewsList = res.result; } }); }, @@ -437,7 +516,10 @@ this.bigId = []; getAction(this.url.descriptionRake,par).then((res)=>{ if(res.success){ - console.log(res.result); + // console.log(res.result); + if(this.processUdgetPlanMaterialTable.columns[0].options.length > 0){ + this.processUdgetPlanMaterialTable.columns[0].options = []; + } res.result.forEach( item => { this.processUdgetPlanMaterialTable.columns[0].options.push({ title : item.descriptionName, @@ -555,35 +637,35 @@ throw this.throwNotFunction('classifyIntoFormData') } let formData = this.classifyIntoFormData(allValues) - - this.form.validateFields((err, values) => { - if (!err) { - formData.procDefId = this.processData.id; - formData.procDeTitle = this.processData.name; - formData.title=this.processData.description; - if (!formData.tableName)formData.tableName = this.processData.businessTable; - console.log('格式化后的数据',formData) - var url = this.url.add; - let method='post'; - if (!this.isNew){ - url = this.url.edit; - method='put'; - } - console.log('提交方法',method) - this.btndisabled = true; - httpAction(url,formData,method).then((res)=>{ - if (res.success){ - this.$message.success("保存成功!") - //todo 将表单的数据传给父组件 - this.$emit('afterSubmit',formData) - }else { - this.$message.error(res.message) - } - }).finally(()=>{ - this.btndisabled = false; - }) - } - }) + console.log('格式化后的数据',formData) + // this.form.validateFields((err, values) => { + // if (!err) { + // formData.procDefId = this.processData.id; + // formData.procDeTitle = this.processData.name; + // formData.title=this.processData.description; + // if (!formData.tableName)formData.tableName = this.processData.businessTable; + // console.log('格式化后的数据',formData) + // var url = this.url.add; + // let method='post'; + // if (!this.isNew){ + // url = this.url.edit; + // method='put'; + // } + // console.log('提交方法',method) + // this.btndisabled = true; + // httpAction(url,formData,method).then((res)=>{ + // if (res.success){ + // this.$message.success("保存成功!") + // //todo 将表单的数据传给父组件 + // this.$emit('afterSubmit',formData) + // }else { + // this.$message.error(res.message) + // } + // }).finally(()=>{ + // this.btndisabled = false; + // }) + // } + // }) }) }, From 1a5851d1aa485c4fcb740ae96225ebc144ccc613 Mon Sep 17 00:00:00 2001 From: kilo Date: Wed, 26 Oct 2022 16:08:48 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E5=B8=90=E5=A4=96+=E6=80=BB=E5=BA=93?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProcessSuppliesStrongerList.vue | 220 ++--------------- .../ProcessSuppliesStrongerLists.vue | 226 ++++++++---------- .../modules/ProcessSuppliesStrongerForm.vue | 4 +- .../ProcessWasteMaterialsLists.vue | 16 +- 4 files changed, 132 insertions(+), 334 deletions(-) diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue index 41e914b..b171a17 100644 --- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue @@ -2,122 +2,31 @@
- +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - {{item.itemGroup}} - + - + - + + + + + + - - @@ -133,8 +42,6 @@ 查询 重置 - - 删除 @@ -186,9 +93,7 @@ - - 详情 - + 详情 @@ -197,7 +102,6 @@ -
@@ -223,7 +127,6 @@ }, data () { return { - // item:false, description: '物资总库管理页面', // 表头 bigId:[], @@ -238,21 +141,6 @@ return parseInt(index)+1; } }, - // { - // title:'流程表单号', - // align:"center", - // dataIndex: 'processId' - // }, - { - title:'供应商', - align:"center", - dataIndex: 'supplierId' - }, - // { - // title:'供应商描述', - // align:"center", - // dataIndex: 'supplierDescription_dictText' - // }, { title:'物料组', align:"center", @@ -278,69 +166,10 @@ align:"center", dataIndex: 'amount' }, - // { - // title:'价格', - // align:"center", - // dataIndex: 'price' - // }, - // { - // title:'金额', - // align:"center", - // dataIndex: 'rates' - // }, - // { - // title:'仓储地点_id', - // align:"center", - // dataIndex: 'unitWasteWarehouseCodeId_dictText' - // }, - // { - // title:'存储仓位', - // align:"center", - // dataIndex: 'freightSpace_dictText' - // }, - // { - // title:'生产时间', - // align:"center", - // dataIndex: 'productionTime', - // customRender:function (text) { - // return !text?"":(text.length>10?text.substr(0,10):text) - // } - // }, - // { - // title:'保质期', - // align:"center", - // dataIndex: 'expirationDate', - // customRender:function (text) { - // return !text?"":(text.length>10?text.substr(0,10):text) - // } - // }, - // { - // title:'批次', - // align:"center", - // dataIndex: 'batch_dictText' - // }, - // { - // title:'是否到货', - // align:"center", - // dataIndex: 'arrivalNotice' - // }, - // { - // title:'入库时间', - // align:"center", - // dataIndex: 'inboundTime', - // customRender:function (text) { - // return !text?"":(text.length>10?text.substr(0,10):text) - // } - // }, - // { - // title:'入库人', - // align:"center", - // dataIndex: 'librarySign_dictText' - // }, { title:'核算属性', align:"center", - dataIndex: 'accountingAttributes' + dataIndex: 'accountingAttributes_dictText' }, { title: '详情', @@ -372,36 +201,31 @@ }, }, methods: { - handleDetaills(){ - // this.item = true; - this.$router.push({path:'/src/views/suppliesstronger/ProcessSuppliesStrongerLists'}) - }, - strongerExit(){ - this.item = false; + handleDetaills(record){ + this.$router.push({name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',params:{item: record.item}}) }, - initDictConfig(){ }, getSuperFieldList(){ let fieldList=[]; fieldList.push({type:'string',value:'processId',text:'流程表单号',dictCode:''}) - fieldList.push({type:'string',value:'supplierId',text:'供应商',dictCode:''}) - fieldList.push({type:'sel_search',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'supplier',text:'供应商',dictCode:''}) + fieldList.push({type:'string',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'string',value:'unitMeasurement',text:'计量单位',dictCode:''}) fieldList.push({type:'int',value:'amount',text:'数量',dictCode:''}) fieldList.push({type:'BigDecimal',value:'price',text:'单价',dictCode:''}) fieldList.push({type:'BigDecimal',value:'rates',text:'金额',dictCode:''}) - fieldList.push({type:'sel_search',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'date',value:'productionTime',text:'生产时间'}) fieldList.push({type:'string',value:'expirationDate',text:'保质期'}) - fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'string',value:'arrivalNotice',text:'是否到货',dictCode:''}) fieldList.push({type:'date',value:'inboundTime',text:'入库时间'}) - fieldList.push({type:'sel_search',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'string',value:'accountingAttributes',text:'核算属性',dictCode:''}) this.superFieldList = fieldList diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue index bb81ab6..e8afa0e 100644 --- a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue @@ -1,95 +1,54 @@ - - - - - - - - 查看详情 - - - - -
@@ -211,6 +142,7 @@ import JDate from '@/components/jeecg/JDate.vue' import JSearchSelectTag from '@/components/dict/JSearchSelectTag' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' + import { getAction } from '@api/manage' export default { @@ -224,8 +156,20 @@ }, data () { return { + queryParam: { + supplier: null, + itemGroup: null, + item: this.$route.params.item, + itemDescription: null, + unitWasteWarehouseCodeId: null, + freightSpace: null, + productionTime: null, + batch: null, + expirationDate: null, + inboundTime: null, + librarySign: null, + }, description: '物资总库管理详情页面', - // 表头 columns: [ { title: '#', @@ -245,7 +189,7 @@ { title:'供应商', align:"center", - dataIndex: 'supplierId' + dataIndex: 'supplier' }, { title:'供应商描述', @@ -308,10 +252,7 @@ { title:'保质期', align:"center", - dataIndex: 'expirationDate', - customRender:function (text) { - return !text?"":(text.length>10?text.substr(0,10):text) - } + dataIndex: 'expirationDate' }, { title:'批次', @@ -339,19 +280,11 @@ { title:'核算属性', align:"center", - dataIndex: 'accountingAttributes' - }, - // { - // title: '详情', - // dataIndex: 'action', - // align:"center", - // fixed:"right", - // width:147, - // scopedSlots: { customRender: 'action' } - // } + dataIndex: 'accountingAttributes_dictText' + } ], url: { - list: "/suppliesstronger/processSuppliesStronger/list", + list: "/suppliesstronger/processSuppliesStronger/lists", delete: "/suppliesstronger/processSuppliesStronger/delete", deleteBatch: "/suppliesstronger/processSuppliesStronger/deleteBatch", exportXlsUrl: "/suppliesstronger/processSuppliesStronger/exportXls", @@ -363,7 +296,15 @@ } }, created() { - this.getSuperFieldList(); + // 判断路由上是否存在参数,如果没有则跳转回帐外物资管理页面 + this.judgeRouterParam(); + this.getSuperFieldList(); + }, + watch: { + $route() { + this.queryParam.item = this.$route.params.item + this.loadData() + } }, computed: { importExcelUrl: function(){ @@ -371,34 +312,61 @@ }, }, methods: { - handleDetaills(){ - this.item = true; + searchReset(){ + this.queryParam = { + supplier: null, + itemGroup: null, + item: this.$route.params.item, + itemDescription: null, + unitWasteWarehouseCodeId: null, + freightSpace: null, + productionTime: null, + batch: null, + expirationDate: null, + inboundTime: null, + librarySign: null, + del_flag: 0 + }, + getAction(this.url.list,this.queryParam).then((res)=>{ + if(res.success){ + this.dataSource=res.result.records; + } + }); }, - handlereturn(){ - this.$emit("strongerExit",false); + judgeRouterParam(){ + if (this.$route.params.item == null){ + this.$router.go(-1); + } }, initDictConfig(){ }, + loadData(){ + getAction(this.url.list,this.queryParam).then((res)=>{ + if(res.success){ + this.dataSource=res.result.records; + } + }); + }, getSuperFieldList(){ let fieldList=[]; fieldList.push({type:'string',value:'processId',text:'流程表单号',dictCode:''}) - fieldList.push({type:'string',value:'supplierId',text:'供应商',dictCode:''}) - fieldList.push({type:'sel_search',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'supplier',text:'供应商',dictCode:''}) + fieldList.push({type:'string',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'string',value:'unitMeasurement',text:'计量单位',dictCode:''}) fieldList.push({type:'int',value:'amount',text:'数量',dictCode:''}) fieldList.push({type:'BigDecimal',value:'price',text:'单价',dictCode:''}) fieldList.push({type:'BigDecimal',value:'rates',text:'金额',dictCode:''}) - fieldList.push({type:'sel_search',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'sel_search',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'date',value:'productionTime',text:'生产时间'}) - fieldList.push({type:'date',value:'expirationDate',text:'保质期'}) - fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'String',value:'expirationDate',text:'保质期'}) + fieldList.push({type:'string',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'int',value:'arrivalNotice',text:'是否到货',dictCode:''}) fieldList.push({type:'date',value:'inboundTime',text:'入库时间'}) - fieldList.push({type:'sel_search',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''}) + fieldList.push({type:'string',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''}) fieldList.push({type:'string',value:'accountingAttributes',text:'核算属性',dictCode:''}) this.superFieldList = fieldList } diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue index c7cb6c8..0eed1d1 100644 --- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue +++ b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue @@ -10,7 +10,7 @@ - + @@ -251,7 +251,7 @@ that.confirmLoading = false; }) } - + }) }, popupCallback(row){ diff --git a/src/views/wastematerials/ProcessWasteMaterialsLists.vue b/src/views/wastematerials/ProcessWasteMaterialsLists.vue index 6862029..c2b1057 100644 --- a/src/views/wastematerials/ProcessWasteMaterialsLists.vue +++ b/src/views/wastematerials/ProcessWasteMaterialsLists.vue @@ -20,11 +20,11 @@ - - - - - + + + + + @@ -267,6 +267,12 @@ this.judgeRouterParam(); this.getSuperFieldList(); }, + watch: { + $route() { + this.queryParam.material = this.$route.params.material + this.loadData() + } + }, computed: { importExcelUrl: function(){ return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; From 8d96e47ea9ce2ccea790c49a96a37607d176e5e6 Mon Sep 17 00:00:00 2001 From: kilo Date: Wed, 26 Oct 2022 17:37:12 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E6=9D=83=E9=99=90=E6=8E=88=E6=9D=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProcessPermissionAuthorizationForm.vue | 217 ++++++++++++++++++ .../ProcessPermissionAuthorizationList.vue | 180 +++++++++++++++ 2 files changed, 397 insertions(+) create mode 100644 src/views/activiti/form/ProcessPermissionAuthorizationForm.vue create mode 100644 src/views/processmaterials/ProcessPermissionAuthorizationList.vue diff --git a/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue b/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue new file mode 100644 index 0000000..f068b04 --- /dev/null +++ b/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue @@ -0,0 +1,217 @@ + + + \ No newline at end of file diff --git a/src/views/processmaterials/ProcessPermissionAuthorizationList.vue b/src/views/processmaterials/ProcessPermissionAuthorizationList.vue new file mode 100644 index 0000000..21d8612 --- /dev/null +++ b/src/views/processmaterials/ProcessPermissionAuthorizationList.vue @@ -0,0 +1,180 @@ + + + + \ No newline at end of file From fbb10c9a052af0c7716713bd0952d3262b6c2504 Mon Sep 17 00:00:00 2001 From: kilo Date: Wed, 26 Oct 2022 17:41:44 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E6=9D=83=E9=99=90=E6=8E=88=E6=9D=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProcessPermissionAuthorizationForm.vue | 217 ++++++++++++++++++ .../ProcessPermissionAuthorizationModal.vue | 60 +++++ ...issionAuthorizationModal__Style#Drawer.vue | 83 +++++++ 3 files changed, 360 insertions(+) create mode 100644 src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue create mode 100644 src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue create mode 100644 src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue new file mode 100644 index 0000000..f068b04 --- /dev/null +++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue @@ -0,0 +1,217 @@ + + + \ No newline at end of file diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue new file mode 100644 index 0000000..6904d32 --- /dev/null +++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue new file mode 100644 index 0000000..4043b1e --- /dev/null +++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file