Browse Source

修改账外物资查询

dev
caoyizhong 2 years ago
parent
commit
db0b2480a7
  1. 1
      src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
  2. 2
      src/views/activiti/form/ProcessUdgetPlan.vue
  3. 9
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  4. 43
      src/views/wastematerials/ProcessWasteMaterialsList.vue

1
src/views/activiti/form/ProcessMaterialsDeliveryForm.vue

@ -950,6 +950,7 @@
// console.log("this.data==============>",this.data) //id // console.log("this.data==============>",this.data) //id
let params = {} let params = {}
params.id = sessionStorage.getItem('PUWWC_Id')//id params.id = sessionStorage.getItem('PUWWC_Id')//id
console.log("322222232323",params.id);
getAction(this.url.unitWasteWarehouseList, params).then((res) => { getAction(this.url.unitWasteWarehouseList, params).then((res) => {
console.log(res) console.log(res)
if (res.success) { if (res.success) {

2
src/views/activiti/form/ProcessUdgetPlan.vue

@ -54,7 +54,7 @@
hieg: { hieg: {
type: Boolean, type: Boolean,
default: true, default: true,
required: true required: false
} }
}, },
// props: { // props: {

9
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -75,7 +75,7 @@
:maxHeight="300" :maxHeight="300"
:action-button="true" :action-button="true"
:rowNumber="true" :rowNumber="true"
:disabled="hieg" :disabled="hiegs"
:isabled = "isabled" :isabled = "isabled"
:rowSelection="true" :rowSelection="true"
:actionButton="true" :actionButton="true"
@ -251,7 +251,7 @@
materialPrice:0, materialPrice:0,
materialAmount:0, materialAmount:0,
describes:'', describes:'',
// hieg:true, hiegs:true,
historyBigId:[], historyBigId:[],
isHistoryBigId:false, isHistoryBigId:false,
bigIdMerchandiseNews:[], bigIdMerchandiseNews:[],
@ -546,7 +546,7 @@
hieg: { hieg: {
type: Boolean, type: Boolean,
default: true, default: true,
required: true required: false
} }
}, },
computed: { computed: {
@ -559,6 +559,7 @@
} }
console.log("523452345",this.disabled); console.log("523452345",this.disabled);
console.log("34523452345",this.hieg); console.log("34523452345",this.hieg);
this.hiegs = this.hieg;
return this.disabled return this.disabled
}, },
showFlowSubmitButton() { showFlowSubmitButton() {
@ -633,7 +634,7 @@
elect(val){ elect(val){
if(val != undefined){ if(val != undefined){
this.hieg = false; this.hiegs = false;
// this.fetchData(); // this.fetchData();
this.fetchDataRake(); this.fetchDataRake();
} }

43
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -124,7 +124,7 @@
// //
columns: [ columns: [
{ {
title: '#', title: '序号',
dataIndex: '', dataIndex: '',
key:'rowIndex', key:'rowIndex',
width:60, width:60,
@ -198,9 +198,10 @@
} }
}, },
created() { created() {
this.getSuperFieldList(); this.getSuperFieldList();
this.initDictConfig(); this.initDictConfig();
console.log()
}, },
computed: { computed: {
importExcelUrl: function(){ importExcelUrl: function(){
@ -208,6 +209,44 @@
}, },
}, },
methods: { methods: {
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.section();
var params = this.getQueryParams();//
this.loading = true;
console.log("params>>>>>>",params)
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records||res.result;
if(res.result.total)
{
this.ipagination.total = res.result.total;
}
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
//ID
section(){
let ue= sessionStorage.getItem('USER_INFORMATION');
let res=JSON.parse(ue);
if(res.realname !== "管理员"){
this.queryParam.sysOrgCode = res.departIds;
}
},
handleDetail(record){ handleDetail(record){
console.log("1111111111111111111111111111111111") console.log("1111111111111111111111111111111111")
console.log(record); console.log(record);

Loading…
Cancel
Save