Browse Source

修改统计查询

dev
caoyizhong 2 years ago
parent
commit
bad8281b37
  1. 29
      src/views/statisticanalysis/costecharts/CaseCost.vue
  2. 19
      src/views/statisticanalysis/costecharts/CostAnalysis.vue

29
src/views/statisticanalysis/costecharts/CaseCost.vue

@ -6,7 +6,7 @@
<!-- <j-dict-select-tag type="list" v-model="formData.materialType" style="width: 20%;float: right;margin-right: 2%"-->
<!-- :trigger-change="true" dictCode="material_type"-->
<!-- placeholder="请选择物资类型" @change="handleChange"/>-->
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 20%;float: right;margin-right: 2%" @change="getList">
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 20%;float: right;margin-right: 2%" @change="getList" :disabled=buMen >
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>
</a-select>
</div>
@ -48,7 +48,7 @@
<script>
import * as echarts from 'echarts';
import { FormTypes } from '@/utils/JEditableTableUtil'
import { GetRecentMonth } from '@/utils/costTime'
import { GetRecentMonth, information } from '@/utils/costTime'
import moment from 'moment'
import { getAction } from '@api/manage'
import { ajaxGetDictItems, getDictItemsFromCache } from '@api/api'
@ -60,6 +60,8 @@ export default {
return{
materialType:null,
timeNum:[],
bu: null,
buMen : false,
//
queryParamsUntil:[],
formData:{
@ -231,6 +233,12 @@ export default {
created() {
this.formData.dateItem = moment(new Date(), 'YYYY-MM');
// this.getList();
this.bu = information();
// console.log("bububub",this.bu);
if(!!this.bu){
//
this.buMen = true;
}
this.initDictData();
this.getUnit();
},
@ -249,13 +257,20 @@ export default {
})
},
//
getUnit(){
getUnit: function() {
getAction(this.url.listByuntil).then((res) => {
if (res.success) {
this.queryParamsUntil = res.result.records||res.result;
// console.log(this.queryParamsUntil)
this.formData.materialType = this.queryParamsUntil[1].id;
this.getList();
this.queryParamsUntil = res.result.records || res.result
console.log(this.queryParamsUntil)
let ind = this.queryParamsUntil.findIndex(item => item.id === this.bu);
console.log(ind);
if(ind == -1){
this.formData.materialType = this.queryParamsUntil[1].id;
}else{
this.formData.materialType = this.bu;
}
this.getList()
}
})
},

19
src/views/statisticanalysis/costecharts/CostAnalysis.vue

@ -13,7 +13,7 @@
</a-select>
<!-- <a-month-picker placeholder="选择日期" @change="disabledDate" v-model="formData.dateItem"/>-->
</span>
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 45%;;padding-right: 4%" @change="getShuJu()">
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 45%;;padding-right: 4%" @change="getShuJu()" :disabled=xingMuBu>
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>
</a-select>
</div>
@ -30,12 +30,15 @@ import * as echarts from 'echarts'
import moment from 'moment'
import { getAction } from '@api/manage'
import { ajaxGetDictItems, getDictItemsFromCache } from '@api/api'
import { information } from '@/utils/costTime'
export default {
name: "CostAnalysis",
data(){
return{
materialType:null,
xingMuBu:false,
bu:null, //ID
options: { },
list:[],
dictOptions:[],//
@ -63,6 +66,12 @@ name: "CostAnalysis",
this.initDictData();
},
created() {
this.bu = information();
// console.log("111bububub",this.bu);
if(!!this.bu){
//
this.xingMuBu = true;
}
// this.formData.dateItem = moment(new Date(), 'YYYY-MM');
},
methods:{
@ -88,7 +97,13 @@ name: "CostAnalysis",
if (res.success) {
this.queryParamsUntil = res.result.records||res.result;
// console.log(this.queryParamsUntil)
this.formData.materialType = this.queryParamsUntil[1].id;
let index = this.queryParamsUntil.findIndex(item => item.id=== this.bu)
if(index == -1) {
this.formData.materialType = this.queryParamsUntil[1].id;
}else{
this.formData.materialType = this.bu;
}
this.getShuJu();
}
})

Loading…
Cancel
Save