+
@@ -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 @@
编辑
-
- 更多
-
-
- handleDelete(record.id)">
+
+ handleDelete(record.id)">
删除
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
@@ -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 @@