|
|
@ -31,17 +31,17 @@ |
|
|
|
/> |
|
|
|
/> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24" :hidden="showdw"> |
|
|
|
<a-form-item label="流程发起部门"> |
|
|
|
<a-form-item label="流程发起部门"> |
|
|
|
<a-select v-model="queryParam.departId" placeholder="请输入项目部" @mouseenter="getUnit" > |
|
|
|
<a-select v-model="queryParam.departId" placeholder="请输入项目部" @mouseenter="getUnit" > |
|
|
|
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.unit">{{item.unit_dictText}}</a-select-option> |
|
|
|
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-select> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
<a-form-item label="流程计划"> |
|
|
|
<a-form-item label="流程计划"> |
|
|
|
<j-dict-select-tag type="list" v-model="queryParam.processPlan" dictCode="process_plan" |
|
|
|
<j-dict-select-tag type="list" v-model="queryParam.processPlan" dictCode="process_plan" |
|
|
|
placeholder="请选择物资类型" /> |
|
|
|
placeholder="请选择计划类型" /> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
<!--<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<!--<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
@ -188,6 +188,7 @@ export default { |
|
|
|
mixins: [JeecgListMixin], |
|
|
|
mixins: [JeecgListMixin], |
|
|
|
data() { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
return { |
|
|
|
|
|
|
|
showdw: true, |
|
|
|
visible: false, |
|
|
|
visible: false, |
|
|
|
confirmLoading: false, |
|
|
|
confirmLoading: false, |
|
|
|
title: '预算计划采购流程管理列表', |
|
|
|
title: '预算计划采购流程管理列表', |
|
|
@ -257,7 +258,7 @@ export default { |
|
|
|
}*/ |
|
|
|
}*/ |
|
|
|
], |
|
|
|
], |
|
|
|
url: { |
|
|
|
url: { |
|
|
|
listByuntil: '/unitwaste/processUnitWasteWarehouseCode/list', |
|
|
|
listByuntil: '/unitwaste/processUnitWasteWarehouseCode/listAll', |
|
|
|
list: '/hy/processUdgetPlan/listByplan', |
|
|
|
list: '/hy/processUdgetPlan/listByplan', |
|
|
|
delete: '/hy/processUdgetPlan/delete', |
|
|
|
delete: '/hy/processUdgetPlan/delete', |
|
|
|
deleteBatch: '/hy/processUdgetPlan/deleteBatch', |
|
|
|
deleteBatch: '/hy/processUdgetPlan/deleteBatch', |
|
|
@ -306,6 +307,9 @@ export default { |
|
|
|
mounted() { |
|
|
|
mounted() { |
|
|
|
//this.loadColumnsInfo() |
|
|
|
//this.loadColumnsInfo() |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
created() { |
|
|
|
|
|
|
|
this.showDepart() |
|
|
|
|
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
watch: {}, |
|
|
|
computed: { |
|
|
|
computed: { |
|
|
|
showSearchFlag() { |
|
|
|
showSearchFlag() { |
|
|
@ -313,6 +317,16 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//是否隐藏流程发起部门查询 |
|
|
|
|
|
|
|
showDepart(){ |
|
|
|
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
|
|
|
if(res.realname == "管理员"){ |
|
|
|
|
|
|
|
this.showdw = false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
//流程发起时间 |
|
|
|
//流程发起时间 |
|
|
|
processDateChange: function (value, dateString) { |
|
|
|
processDateChange: function (value, dateString) { |
|
|
|
this.processTime = value |
|
|
|
this.processTime = value |
|
|
@ -375,6 +389,15 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
this.onClearSelected() |
|
|
|
this.onClearSelected() |
|
|
|
var params = this.getQueryParams();//查询条件 |
|
|
|
var params = this.getQueryParams();//查询条件 |
|
|
|
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
|
|
|
if(res.realname !== "管理员"){ |
|
|
|
|
|
|
|
if(!!res.departIds){ |
|
|
|
|
|
|
|
params.departId = res.departIds ; |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
return ; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
this.loading = true; |
|
|
|
this.loading = true; |
|
|
|
getAction(this.url.list, params).then((res) => { |
|
|
|
getAction(this.url.list, params).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
if (res.success) { |
|
|
|