|
|
|
@ -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() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|