0.0 2 years ago
parent
commit
86c2624577
  1. 25
      src/components/jeecg/modal/ProcessPlan.vue
  2. 6
      src/mixins/JeecgListMixin.js
  3. 2
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  4. 23
      src/views/processmaterials/ProcessUdgetPlanMaterialList.vue
  5. 8
      src/views/processmaterials/modules/ProcessUdgetPlanMaterialModal.vue

25
src/components/jeecg/modal/ProcessPlan.vue

@ -131,7 +131,7 @@
<a-tabs defaultActiveKey="1">
<a-tab-pane tab="预算计划采购流程物料清单表" key="1">
<ProcessUdgetPlanMaterialList :mainId="selectedMainId"/>
<ProcessUdgetPlanMaterialList :mainId="selectedRowKeys"/>
</a-tab-pane>
</a-tabs>
</a-card>
@ -299,8 +299,8 @@
this.selectedMainId = ''
},
onSelectChange(selectedRowKeys, selectionRows) {
console.log(selectedRowKeys)
console.log(selectionRows)
// console.log("selectedRowKeys>>>>>>>>>>>>>>>",selectedRowKeys)
// console.log("selectionRows>>>>>>>>>>>>>>>>>>>",selectionRows)
this.selectedMainId = selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys
this.selectionRows = selectionRows
@ -317,7 +317,7 @@
this.onClearSelected()
var params = this.getQueryParams()//
if(this.changeData){
params.id=this.changeData[0]
params.id=this.changeData
}
this.loading = true
getAction(this.url.list, params).then((res) => {
@ -331,7 +331,7 @@
this.loading = false
})
this.selectedRowKeys = this.changeData
this.selectedMainId = this.changeData[0]
this.selectedMainId = this.changeData
},
clickThenSelect(record) {
return {
@ -400,14 +400,13 @@
this.visible = false
return
}*/
console.log('//////////',this.changeData)
if (!this.multi) {
if (this.selectionRows && this.selectionRows.length > 1) {
this.$message.warning('请选择一条记录')
return false
}
}
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>',this.changeData)
// if (!this.multi) {
// if (this.selectionRows && this.selectionRows.length > 1) {
// this.$message.warning('')
// return false
// }
// }
if (!this.selectionRows || this.selectionRows.length == 0) {
if (this.getFileData){
this.$emit('close')

6
src/mixins/JeecgListMixin.js

@ -95,13 +95,17 @@ export const JeecgListMixin = {
this.isorter.column='postRank'
this.isorter.order='desc'
}
// if (arg==="selectedRowKeys"){
// this.url.list ='/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId'
// arg = 1
// }
//加载数据 若传入参数1则加载第一页的内容
if (arg === 1) {
this.ipagination.current = 1;
}
var params = this.getQueryParams();//查询条件
this.loading = true;
console.log("params>>>>>>",params)
console.log("params>>>>>>",params)
getAction(this.url.list, params).then((res) => {
if (res.success) {
//update-begin---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------

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

@ -34,7 +34,7 @@
<a-form-item label="关联预算流程" :labelCol="labelCol" :wrapperCol="wrapperCol">
<!-- <a-input v-decorator="['processUdgetPlanId']" placeholder="请输入关联预算流程" ></a-input>-->
<h-plan v-decorator="['processUdgetPlanId',validatorRules.processUdgetPlanId]" :trigger-change="true"
code="demo" field="name" orgFields="name" @mounted="getPlanList" @callType="getcallType"
code="demo" field="name" :multi="true" orgFields="name" @mounted="getPlanList" @callType="getcallType"
destFields="name" />
<!-- <j-popup-->
<!-- v-decorator="['one']"-->

23
src/views/processmaterials/ProcessUdgetPlanMaterialList.vue

@ -40,7 +40,9 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
@change="handleTableChange">
@change="handleTableChange
">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
@ -89,13 +91,7 @@
mixins:[JeecgListMixin],
components: { JDictSelectTag,ProcessUdgetPlanMaterialModal,JSuperQuery,
},
props:{
mainId:{
type:String,
default:'',
required:false
}
},
props:['mainId'],
watch:{
mainId:{
immediate: true,
@ -104,7 +100,14 @@
if(!this.mainId){
this.clearList()
}else{
this.queryParam['id'] = val
let newarr=[]
val.map(item=>{
if(item){
newarr.push(item)
}
})
let a = JSON.stringify(newarr)
this.queryParam['ids'] = a
this.loadData(1);
}
}
@ -263,7 +266,7 @@
}*/
],
url: {
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId",
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainIds",
delete: "/hy/processUdgetPlan/deleteProcessUdgetPlanMaterial",
deleteBatch: "/hy/processUdgetPlan/deleteBatchProcessUdgetPlanMaterial",
exportXlsUrl: "/hy/processUdgetPlan/exportProcessUdgetPlanMaterial",

8
src/views/processmaterials/modules/ProcessUdgetPlanMaterialModal.vue

@ -150,13 +150,7 @@
JDictSelectTag,
JSearchSelectTag,
},
props:{
mainId:{
type:String,
required:false,
default:''
}
},
props:['mainId'],
data () {
return {
form: this.$form.createForm(this),

Loading…
Cancel
Save