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
let params = {}
params.id = sessionStorage.getItem('PUWWC_Id')//id
console.log("322222232323",params.id);
getAction(this.url.unitWasteWarehouseList, params).then((res) => {
console.log(res)
if (res.success) {

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

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

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

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

43
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -124,7 +124,7 @@
//
columns: [
{
title: '#',
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
@ -198,9 +198,10 @@
}
},
created() {
this.getSuperFieldList();
this.initDictConfig();
console.log()
},
computed: {
importExcelUrl: function(){
@ -208,6 +209,44 @@
},
},
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){
console.log("1111111111111111111111111111111111")
console.log(record);

Loading…
Cancel
Save