diff --git a/src/utils/costTime.js b/src/utils/costTime.js new file mode 100644 index 0000000..6cde676 --- /dev/null +++ b/src/utils/costTime.js @@ -0,0 +1,39 @@ + +//格式时间 +export function FilterTime(time,type) { + var date = new Date(time); + var y = date.getFullYear(); + var m = date.getMonth() + 1; + m = m < 10 ? "0" + m : m; + if(!!type){ + return y + "-" + m; + } + var d = date.getDate(); + d = d < 10 ? "0" + d : d; + var h = date.getHours(); + h = h < 10 ? "0" + h : h; + var minute = date.getMinutes(); + minute = minute < 10 ? "0" + minute : minute; + var s = date.getSeconds(); + s = s < 10 ? "0" + s : s; + return y + "-" + m + "-" + d + " " + h + ":" + minute + ":" + s; +}; + +/** + * 根据当前月份获取其前12个月的月份 + * @param month + * @return {Array|*} + */ +export function GetRecentMonth(month,arr) { + for(let i = 11;i > 0;i --) { + let sixMonth = month - i + if(sixMonth <= 0) { + sixMonth = 12 + sixMonth + } + arr.push(sixMonth + '月') + } + arr.push(month + '月') + return arr; +}; + +export default {GetRecentMonth,FilterTime }; \ No newline at end of file diff --git a/src/views/activiti/form/ProcessMaterialsAllotForm.vue b/src/views/activiti/form/ProcessMaterialsAllotForm.vue index 610d767..74fc8ec 100644 --- a/src/views/activiti/form/ProcessMaterialsAllotForm.vue +++ b/src/views/activiti/form/ProcessMaterialsAllotForm.vue @@ -49,8 +49,11 @@ - + + + + {{item.departName}} + { + if (res.success) { + this.queryParamsUntil = res.result.records||res.result; + } + }) + }, async onSelect(record) { - // console.log(record) - // console.log("keykey",record.column.key) let isDB = true // if (!!record.row.materialGroup) { // if (this.issh){ @@ -716,8 +724,8 @@ }, materialType(val) { - console.log("val===================") - console.log(val) + // console.log("val===================") + // console.log(val) this.materialTypeRecord = val; this.qeihuan = val; if (!!val && !!this.libraryInvisible ) { @@ -1096,9 +1104,12 @@ this.libraryInvisible = value; getAction(this.url.puwwlistByuntil, params).then((rest) => { if (rest.success && rest.result.total > 0) { - this.libraryAssociationIdInvisible = value - this.heid = false - this.descriptionFetchData(this.materialTypeRecord,value); + this.libraryAssociationIdInvisible = value; + this.qeihuan = value; + if(!!this.materialTypeRecord){ + this.heid = false; + this.descriptionFetchData(this.materialTypeRecord,value); + } }else { this.$message.error("请选择正确项目部!") this.heid = true; diff --git a/src/views/dashboard/HomePage.vue b/src/views/dashboard/HomePage.vue index 9bc85ec..9808e17 100644 --- a/src/views/dashboard/HomePage.vue +++ b/src/views/dashboard/HomePage.vue @@ -50,7 +50,7 @@
-
+
@@ -615,7 +615,7 @@ export default { display: block; margin: 5px auto; height: 90%; - width: 85%; + width: 100%; /* 水平垂直居中 */ } @@ -624,7 +624,7 @@ export default { text-align: center; height: 260px; line-height: 160px; - background: #364d79; + /*background: #888a8d;*/ overflow: hidden; } @@ -632,7 +632,7 @@ export default { width: 25px; height: 25px; font-size: 25px; - color: #fff; + color: #f6f3f3; background-color: rgba(31, 45, 61, 0.11); opacity: 0.3; } diff --git a/src/views/dictionaries/ProcessDictionariesList.vue b/src/views/dictionaries/ProcessDictionariesList.vue index efd0068..27794fd 100644 --- a/src/views/dictionaries/ProcessDictionariesList.vue +++ b/src/views/dictionaries/ProcessDictionariesList.vue @@ -83,16 +83,20 @@ 编辑 - - 更多 - - - + + 删除 - - - - + + + + + + + + + + + @@ -100,7 +104,7 @@ - + @@ -192,7 +196,8 @@ showSizeChanger: true, total: 0 }, - selectedMainId:'', + selectedMainId:undefined, + typeId:undefined, superFieldList:[], } }, @@ -227,8 +232,14 @@ this.selectedMainId='' }, onSelectChange(selectedRowKeys, selectionRows) { + console.log(selectedRowKeys,selectionRows,"=-=-=-=-="); // this.tabKey= '3'; if(selectionRows[0].typeName === '库房编码'){ + if(selectionRows[0].dictionaryLabel == "FJWZ_BM"){ + this.typeId = "1"; + }else{ + this.typeId = "2"; + } this.tabKey= '1'; } if(selectionRows[0].typeName === '物资信息'){ diff --git a/src/views/dictionaries/ProcessLibraryAssociationList.vue b/src/views/dictionaries/ProcessLibraryAssociationList.vue index 4e3846f..d702f77 100644 --- a/src/views/dictionaries/ProcessLibraryAssociationList.vue +++ b/src/views/dictionaries/ProcessLibraryAssociationList.vue @@ -115,6 +115,11 @@ type:String, default:'', required:false + }, + type:{ + type: String, + default:'', + required:false } }, watch:{ @@ -124,7 +129,9 @@ if(!this.mainId){ this.clearList() }else{ - this.queryParam['processDictionariesId'] = val + // this.queryParam['processDictionariesId'] = val; + this.queryParam['sort'] = parseInt(this.type); + this.dataSource = []; this.loadData(1); } } @@ -164,7 +171,7 @@ customRender:function (t,r,index) { console.log(t,r,index); let name = ''; - if(r.sort === 0){ + if(r.sort === 2){ name = "账外物资库房"; }else if(r.sort === 1){ name = "废旧物资库房"; @@ -230,5 +237,5 @@ } diff --git a/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue b/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue index 02f9201..0b923e0 100644 --- a/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue +++ b/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue @@ -25,8 +25,8 @@ - 账外物资库房编码 - 废旧物资库房编码 + 账外物资库房 + 废旧物资库房 @@ -115,9 +115,15 @@ import { getAction, httpAction } from '@/api/manage' edit (record) { this.form.resetFields(); this.model = Object.assign({}, record); + // console.log("this,",this.model); + if(this.model.sort === 1){ + this.model.sort = "废旧物资库房" + }else{ + this.model.sort = "账外物资库房" + } this.visible = true; this.$nextTick(() => { - this.form.setFieldsValue(pick(this.model,'libraryName')) + this.form.setFieldsValue(pick(this.model,'libraryName','sort')) // this.form.setFieldsValue(pick(this.model,'createBy','createTime','updateBy','updateTime','sysOrgCode','libraryName','state','sort','delFlog','processDictionariesId')) }) }, @@ -141,7 +147,12 @@ import { getAction, httpAction } from '@/api/manage' method = 'put'; } let formData = Object.assign(this.model, values); - formData['processDictionariesId'] = this.mainId + formData['processDictionariesId'] = this.mainId; + if(formData.sort === '废旧物资库房'){ + formData.sort = 1 + }else if(formData.sort === '账外物资库房'){ + formData.sort = 2 + } console.log("表单提交数据",formData) httpAction(httpurl,formData,method).then((res)=>{ if(res.success){ diff --git a/src/views/statisticanalysis/costecharts/Cost.vue b/src/views/statisticanalysis/costecharts/Cost.vue index 7e5db33..0af7594 100644 --- a/src/views/statisticanalysis/costecharts/Cost.vue +++ b/src/views/statisticanalysis/costecharts/Cost.vue @@ -2,31 +2,11 @@
公司成本 - - +
- - - - - - - - - - - - - - - - - - - -
@@ -36,6 +16,9 @@