From 406de3117d385d3a6d8d136a0dbb4880320484f4 Mon Sep 17 00:00:00 2001 From: kilo Date: Tue, 1 Nov 2022 18:09:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/HomePage.vue | 50 ++--- .../ProcessSuppliesStrongerList.vue | 32 +-- src/views/waste/ProcessWasteList.vue | 49 ++--- src/views/waste/ProcessWasteListCable.vue | 203 ++++++++++++++++++ .../ProcessWasteMaterialsLists.vue | 14 +- 5 files changed, 259 insertions(+), 89 deletions(-) create mode 100644 src/views/waste/ProcessWasteListCable.vue diff --git a/src/views/dashboard/HomePage.vue b/src/views/dashboard/HomePage.vue index d8db067..5a6b5d4 100644 --- a/src/views/dashboard/HomePage.vue +++ b/src/views/dashboard/HomePage.vue @@ -1,25 +1,22 @@ - - 编辑 - - - - 更多 - - - 详情 - - - - 删除 - - - - - - @@ -138,6 +119,8 @@ import JDate from '@/components/jeecg/JDate.vue' import JSearchSelectTag from '@/components/dict/JSearchSelectTag' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' + import ProcessWasteListCable from '@views/waste/ProcessWasteListCable' + import { getAction } from '@api/manage' export default { name: 'ProcessWasteList', @@ -147,9 +130,11 @@ JSearchSelectTag, ProcessWasteModal, JSuperQuery, + ProcessWasteListCable, }, data () { return { + createScrapTime: [], description: '废旧物资库表管理页面', // 表头 columns: [ @@ -174,7 +159,7 @@ dataIndex: 'brand' }, { - title:'物资名称', + title:'名称', align:"center", dataIndex: 'materialName' }, @@ -194,7 +179,7 @@ dataIndex: 'number' }, { - title:'存放位置', + title:'存放地点', align:"center", dataIndex: 'depositary' }, @@ -246,7 +231,19 @@ }, }, methods: { + searchReset(){ + this.createScrapTime = [] + getAction(this.url.list).then((res)=>{ + if(res.success){ + this.dataSource=res.result.records; + } + }); + }, + handleInto() { + this.$router.push({name:'src-views-waste-ProcessWasteListCable'}) + }, onDateChange: function (value, dateString) { + this.createScrapTime = value; this.queryParam.scrapDateBegin=dateString[0]; this.queryParam.scrapDateEnd=dateString[1]; }, diff --git a/src/views/waste/ProcessWasteListCable.vue b/src/views/waste/ProcessWasteListCable.vue new file mode 100644 index 0000000..cfa57a6 --- /dev/null +++ b/src/views/waste/ProcessWasteListCable.vue @@ -0,0 +1,203 @@ + + + + \ No newline at end of file diff --git a/src/views/wastematerials/ProcessWasteMaterialsLists.vue b/src/views/wastematerials/ProcessWasteMaterialsLists.vue index 2bd3d4d..0951267 100644 --- a/src/views/wastematerials/ProcessWasteMaterialsLists.vue +++ b/src/views/wastematerials/ProcessWasteMaterialsLists.vue @@ -230,12 +230,12 @@ dataIndex: 'number' }, { - title:'单价', + title:'单价(元)', align:"center", dataIndex: 'price' }, { - title:'金额', + title:'金额(元)', align:"center", dataIndex: 'money' }, @@ -336,16 +336,6 @@ this.createProductTime = [], this.createInnerTime = [], this.queryParam = { - supplier: null, - supplierDescription: null, - materialGroup : null, - material : null, - materialDescription: null, - theirTeam: null, - productionDate: null, - expirationDate: null, - inboundTime: null, - materialsState: null, descriptionId: this.$route.params.descriptionId, del_flag: 0 },