From 56bb8dabc0dcb60a0094ef4db2a213c07250a285 Mon Sep 17 00:00:00 2001 From: long <18782126717@163.com> Date: Thu, 20 Oct 2022 20:26:47 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=8E=B7=E5=8F=96=E5=AD=90=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/activiti/applyHome.vue | 16 +- .../activiti/form/ProcessUdgetPlanForm.vue | 89 +++++---- src/views/activiti/historicDetailBak.vue | 186 ++++++++++++++++++ .../modules/ProcessUdgetPlanForm.vue | 40 +++- .../modules/ProcessUdgetPlanModal.vue | 167 +++------------- 5 files changed, 313 insertions(+), 185 deletions(-) create mode 100644 src/views/activiti/historicDetailBak.vue diff --git a/src/views/activiti/applyHome.vue b/src/views/activiti/applyHome.vue index 8fde2d5..11c9e9c 100644 --- a/src/views/activiti/applyHome.vue +++ b/src/views/activiti/applyHome.vue @@ -31,10 +31,19 @@ - + + @afterSubmit="afterSub" @close="lcModa.visible=false,lcModa.disabled = false" > + @@ -58,6 +67,7 @@ return { description: '所有', dictOptions:[], + disableSubmit: false, url: { getProcessDataList: "/activiti_process/listData", getFirstNode:'/actProcessIns/getFirstNode', @@ -163,7 +173,7 @@ /*提交成功申请后*/ afterSub(formData){ this.lcModa.visible = false; - this.$message("请前往我的申请列表提交审批!") + this.$message.success("请前往我的申请列表提交审批!") }, /*前往我的申请页面*/ handleToApplyList() { diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue index 33b6adb..c4a67bb 100644 --- a/src/views/activiti/form/ProcessUdgetPlanForm.vue +++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue @@ -57,7 +57,7 @@ - + \ No newline at end of file diff --git a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue index a98bc9d..94a1916 100644 --- a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue +++ b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue @@ -26,12 +26,12 @@ - + - + @@ -78,14 +78,14 @@ import { JEditableTableMixin } from '@/mixins/JEditableTableMixin' import { validateDuplicateValue } from '@/utils/util' import JFormContainer from '@/components/jeecg/JFormContainer' - import JDate from '@/components/jeecg/JDate' + import JDate from '@/components/jeecg/JDate' import JUpload from '@/components/jeecg/JUpload' import JSelectDepart from '@/components/jeecgbiz/JSelectDepart' import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep' import JDictSelectTag from "@/components/dict/JDictSelectTag" export default { - name: 'ProcessUdgetPlanForm', + name: 'ProcessUdgetPlanFormff', mixins: [JEditableTableMixin], components: { JFormContainer, @@ -245,10 +245,7 @@ { title: '对比单价', key: 'contrastPrice', - type: FormTypes.popup, - popupCode:"", - destFields:"", - orgFields:"", + type: FormTypes.inputNumber, width:"200px", placeholder: '请输入${title}', defaultValue:'', @@ -285,6 +282,30 @@ placeholder: '请输入${title}', defaultValue:'', }, + { + title: '删除标志', + key: 'delFlag', + type: FormTypes.inputNumber, + width:"200px", + placeholder: '请输入${title}', + defaultValue:'', + }, + { + title: '删除时间', + key: 'delTime', + type: FormTypes.input, + width:"200px", + placeholder: '请输入${title}', + defaultValue:'', + }, + { + title: '修改人', + key: 'updateBy', + type: FormTypes.input, + width:"200px", + placeholder: '请输入${title}', + defaultValue:'', + }, ] }, url: { @@ -342,11 +363,13 @@ }, methods: { addBefore(){ + alert(3) this.form.resetFields() this.processUdgetPlanMaterialTable.dataSource=[] }, getAllTable() { let values = this.tableKeys.map(key => getRefPromise(this, key)) + console.log('-------->',values) return Promise.all(values) }, /** 调用完edit()方法之后会自动调用此方法 */ @@ -363,6 +386,7 @@ }, /** 整理成formData */ classifyIntoFormData(allValues) { + alert(JSON.stringify(allValues)) let main = Object.assign(this.model, allValues.formValue) return { ...main, // 展开 diff --git a/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue b/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue index 42c5951..24c8d32 100644 --- a/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue +++ b/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue @@ -1,125 +1,45 @@ \ No newline at end of file + + + \ No newline at end of file From 7ca7299a46a4e85e286422714e8c59df0f7f11a7 Mon Sep 17 00:00:00 2001 From: sensen <1401009740@qq.com> Date: Fri, 21 Oct 2022 11:59:31 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=80=BB=E5=BA=93=E7=89=A9=E8=B5=84,?= =?UTF-8?q?=E5=BA=9F=E6=97=A7=E7=89=A9=E8=B5=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProcessSuppliesStrongerList.vue | 115 +++---- .../ProcessSuppliesStrongerLists.vue | 20 +- .../modules/ProcessSuppliesStrongerForm.vue | 24 +- src/views/waste/ProcessWasteList.vue | 313 ++++++++++++++++++ src/views/waste/modules/ProcessWasteForm.vue | 210 ++++++++++++ src/views/waste/modules/ProcessWasteModal.vue | 60 ++++ .../ProcessWasteModal__Style#Drawer.vue | 83 +++++ 7 files changed, 746 insertions(+), 79 deletions(-) rename src/views/suppliesstronger/{modules => }/ProcessSuppliesStrongerLists.vue (93%) create mode 100644 src/views/waste/ProcessWasteList.vue create mode 100644 src/views/waste/modules/ProcessWasteForm.vue create mode 100644 src/views/waste/modules/ProcessWasteModal.vue create mode 100644 src/views/waste/modules/ProcessWasteModal__Style#Drawer.vue diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue index a042aa1..b4dfa53 100644 --- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue @@ -12,7 +12,16 @@ - + + + + + + + + + + @@ -23,19 +32,19 @@ - + - + - + - + - + - + @@ -60,61 +69,53 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - {{ toggleSearchStatus ? '收起' : '展开' }} - - - - @@ -130,7 +131,7 @@ 查询 重置 - + 删除 @@ -193,7 +194,7 @@ - + @@ -206,7 +207,6 @@ import JDate from '@/components/jeecg/JDate.vue' import JSearchSelectTag from '@/components/dict/JSearchSelectTag' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' - import ProcessSuppliesStrongerLists from '@views/suppliesstronger/modules/ProcessSuppliesStrongerLists' export default { name: 'ProcessSuppliesStrongerList', @@ -216,7 +216,6 @@ JSearchSelectTag, ProcessSuppliesStrongerModal, JSuperQuery, - ProcessSuppliesStrongerLists, }, data () { return { @@ -369,11 +368,13 @@ }, methods: { handleDetaills(){ - this.item = true; + // this.item = true; + this.$router.push({path:'/src/views/suppliesstronger/ProcessSuppliesStrongerLists'}) }, strongerExit(){ this.item = false; }, + initDictConfig(){ }, getSuperFieldList(){ @@ -391,9 +392,9 @@ 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:'date',value:'productionTime',text:'生产时间'}) - fieldList.push({type:'date',value:'expirationDate',text:'保质期'}) + fieldList.push({type:'string',value:'expirationDate',text:'保质期'}) fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''}) - fieldList.push({type:'int',value:'arrivalNotice',text:'是否到货',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:'accountingAttributes',text:'核算属性',dictCode:''}) diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue similarity index 93% rename from src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue rename to src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue index c39016e..056c3bc 100644 --- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue @@ -25,17 +25,17 @@ - + - + - + @@ -62,12 +62,12 @@ - + - + @@ -82,7 +82,7 @@ - + @@ -97,7 +97,7 @@ - + @@ -131,7 +131,7 @@ 重置 - + 删除 @@ -139,7 +139,7 @@ 批量操作 - 退出 + @@ -207,7 +207,7 @@ import '@/assets/less/TableExpand.less' import { mixinDevice } from '@/utils/mixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin' - import ProcessSuppliesStrongerModal from './ProcessSuppliesStrongerModal' + import ProcessSuppliesStrongerModal from './modules/ProcessSuppliesStrongerModal' import JDate from '@/components/jeecg/JDate.vue' import JSearchSelectTag from '@/components/dict/JSearchSelectTag' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue index 678da99..4328175 100644 --- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue +++ b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue @@ -15,27 +15,27 @@ - + - + - + - + - + @@ -55,12 +55,12 @@ - + - + @@ -70,17 +70,17 @@ - + - + - + @@ -90,12 +90,12 @@ - + - + diff --git a/src/views/waste/ProcessWasteList.vue b/src/views/waste/ProcessWasteList.vue new file mode 100644 index 0000000..792aeb6 --- /dev/null +++ b/src/views/waste/ProcessWasteList.vue @@ -0,0 +1,313 @@ + + + + \ No newline at end of file diff --git a/src/views/waste/modules/ProcessWasteForm.vue b/src/views/waste/modules/ProcessWasteForm.vue new file mode 100644 index 0000000..5700a7a --- /dev/null +++ b/src/views/waste/modules/ProcessWasteForm.vue @@ -0,0 +1,210 @@ + + + \ No newline at end of file diff --git a/src/views/waste/modules/ProcessWasteModal.vue b/src/views/waste/modules/ProcessWasteModal.vue new file mode 100644 index 0000000..674c1c3 --- /dev/null +++ b/src/views/waste/modules/ProcessWasteModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/waste/modules/ProcessWasteModal__Style#Drawer.vue b/src/views/waste/modules/ProcessWasteModal__Style#Drawer.vue new file mode 100644 index 0000000..56f149f --- /dev/null +++ b/src/views/waste/modules/ProcessWasteModal__Style#Drawer.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file From 4f68cd3905dbe795b46bb3441c910d8ebf3dffc5 Mon Sep 17 00:00:00 2001 From: "0.0" <1092404103.qq.com> Date: Fri, 21 Oct 2022 15:40:06 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0,?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD,=E9=A2=84=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + src/components/jeecg/JUpload.vue | 15 +++++++++--- src/main.js | 3 +++ src/mixins/JeecgListMixin.js | 15 ++++++++++++ .../processmaterials/ProcessUdgetPlanList.vue | 24 ++++++++++++++++--- .../modules/ProcessUdgetPlanForm.vue | 2 -- yarn.lock | 9 +++++-- 7 files changed, 59 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 2bce7a0..689fda5 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "echarts": "^4.8.0", "element-resize-detector": "^1.2.1", "enquire.js": "^2.1.6", + "js-base64": "^3.7.2", "js-cookie": "^2.2.0", "lodash.get": "^4.4.2", "lodash.pick": "^4.4.0", diff --git a/src/components/jeecg/JUpload.vue b/src/components/jeecg/JUpload.vue index fbad090..a52e9a5 100644 --- a/src/components/jeecg/JUpload.vue +++ b/src/components/jeecg/JUpload.vue @@ -23,6 +23,8 @@ :returnUrl="returnUrl" :listType="complistType" @preview="handlePreview" + @download="handleDownload" + :showUploadList="{ showRemoveIcon: true, showDownloadIcon: true }" :class="{'uploadty-disabled':disabled}"> + + + + + + + + + + + + 编辑 @@ -106,7 +118,6 @@ - @@ -186,6 +197,12 @@ dataIndex: 'fileId', scopedSlots: {customRender: 'fileSlot'} }, + // { + // title:'文件预览', + // align:"center", + // dataIndex: 'fileId', + // scopedSlots: {customRender: 'fileOn'} + // }, { title: '操作', dataIndex: 'action', @@ -308,11 +325,12 @@ fieldList.push({type:'date',value:'needTime',text:'需求时间'}) fieldList.push({type:'int',value:'orderNumber',text:'顺序号',dictCode:''}) fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) + // fieldList.push({type:'string',value:'fileId',text:'文件预览',dictCode:'1'}) this.superFieldList = fieldList } } } \ No newline at end of file diff --git a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue index 94a1916..5bf2d2d 100644 --- a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue +++ b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue @@ -76,7 +76,6 @@ import { getAction } from '@/api/manage' import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil' import { JEditableTableMixin } from '@/mixins/JEditableTableMixin' - import { validateDuplicateValue } from '@/utils/util' import JFormContainer from '@/components/jeecg/JFormContainer' import JDate from '@/components/jeecg/JDate' import JUpload from '@/components/jeecg/JUpload' @@ -386,7 +385,6 @@ }, /** 整理成formData */ classifyIntoFormData(allValues) { - alert(JSON.stringify(allValues)) let main = Object.assign(this.model, allValues.formValue) return { ...main, // 展开 diff --git a/yarn.lock b/yarn.lock index 60c0b60..58239ab 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6747,6 +6747,11 @@ js-base64@^2.1.9: resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209" integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ== +js-base64@^3.7.2: + version "3.7.2" + resolved "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.2.tgz#816d11d81a8aff241603d19ce5761e13e41d7745" + integrity sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ== + js-cookie@^2.2.0: version "2.2.1" resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" @@ -10028,8 +10033,8 @@ set-value@^2.0.0, set-value@^2.0.1: setimmediate@^1.0.4: version "1.0.5" - resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + resolved "https://registry.npmmirror.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== setprototypeof@1.1.0: version "1.1.0"