|
|
|
@ -147,7 +147,8 @@
|
|
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
|
|
|
@change="handleTableChange"> |
|
|
|
|
<span slot="processId" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="10"/> |
|
|
|
|
<!-- <j-ellipsis :value="text" :length="10"/>--> |
|
|
|
|
<a href="javascript:void(0);" @click="jumpLink(text,record)" >{{text}}111</a> |
|
|
|
|
</span> |
|
|
|
|
<span slot="supplierName" slot-scope="text, record"> |
|
|
|
|
<j-ellipsis :value="text" :length="5"/> |
|
|
|
@ -198,7 +199,12 @@
|
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!--流程表单--> |
|
|
|
|
<a-modal :title="lcModa.title" v-model="lcModa.visible" :footer="null" :maskClosable="false" width="80%"> |
|
|
|
|
<component :disabled="lcModa.disabled" v-if="lcModa.visible" :is="lcModa.formComponent" :hieg ="lcModa.hieg" |
|
|
|
|
:processData="lcModa.processData" :isNew = "lcModa.isNew" :procInstId="lcModa.procInstId" :pictureId="lcModa.pictureId" |
|
|
|
|
@close="lcModa.visible=false,lcModa.disabled = false"></component> |
|
|
|
|
</a-modal> |
|
|
|
|
<process-supplies-stronger-modal ref="modalForm" @ok="modalFormOk"></process-supplies-stronger-modal> |
|
|
|
|
</a-card> |
|
|
|
|
</template> |
|
|
|
@ -208,6 +214,7 @@
|
|
|
|
|
import '@/assets/less/TableExpand.less' |
|
|
|
|
import { mixinDevice } from '@/utils/mixin' |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin' |
|
|
|
|
import ProcessSuppliesStrongerModal from './modules/ProcessSuppliesStrongerModal' |
|
|
|
|
import JDate from '@/components/jeecg/JDate.vue' |
|
|
|
|
import JSearchSelectTag from '@/components/dict/JSearchSelectTag' |
|
|
|
@ -217,7 +224,7 @@
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessSuppliesStrongerLists', |
|
|
|
|
mixins:[JeecgListMixin, mixinDevice], |
|
|
|
|
mixins:[JeecgListMixin, mixinDevice,activitiMixin], |
|
|
|
|
components: { |
|
|
|
|
JDate, |
|
|
|
|
JSearchSelectTag, |
|
|
|
@ -226,6 +233,13 @@
|
|
|
|
|
}, |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
lcModa: { |
|
|
|
|
title: '', |
|
|
|
|
disabled: false, |
|
|
|
|
visible: false, |
|
|
|
|
formComponent: null, |
|
|
|
|
isNew: false |
|
|
|
|
}, |
|
|
|
|
productLicenseDate:[], |
|
|
|
|
inboundLicenseDate:[], |
|
|
|
|
queryParam: { |
|
|
|
@ -258,7 +272,7 @@
|
|
|
|
|
title:'流程表单号', |
|
|
|
|
align:"center", |
|
|
|
|
scopedSlots: { customRender: 'processId' }, |
|
|
|
|
dataIndex: 'processId', |
|
|
|
|
dataIndex: 'warehousingBatch', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'供应商', |
|
|
|
@ -379,6 +393,7 @@
|
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
url: { |
|
|
|
|
listUrl: "/actBusiness/listData", |
|
|
|
|
list: "/suppliesstronger/processSuppliesStronger/lists", |
|
|
|
|
delete: "/suppliesstronger/processSuppliesStronger/delete", |
|
|
|
|
deleteBatch: "/suppliesstronger/processSuppliesStronger/deleteBatch", |
|
|
|
@ -415,6 +430,50 @@
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
jumpLink(text,record){ |
|
|
|
|
console.log("跳转了",text,record) |
|
|
|
|
let params = { |
|
|
|
|
tableId: record.processMaterialWarehousingId, |
|
|
|
|
logType:1 |
|
|
|
|
} |
|
|
|
|
this.loading = true; |
|
|
|
|
getAction(this.url.listUrl, params).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
// console.log(res.result.records); |
|
|
|
|
this.edit(res.result.records[0],true); |
|
|
|
|
} |
|
|
|
|
if(res.code===510){ |
|
|
|
|
this.$message.warning(res.message) |
|
|
|
|
} |
|
|
|
|
this.loading = false; |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
edit(r,isView) { |
|
|
|
|
// if (!r.routeName) { |
|
|
|
|
// this.$message.warning( |
|
|
|
|
// "该流程信息未配置表单,请联系开发人员!" |
|
|
|
|
// ); |
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
// console.log("isView>>>>>>>>>>>>",isView) |
|
|
|
|
console.log("r>>>>>>>>>>>>",r) |
|
|
|
|
isView = isView||false; |
|
|
|
|
this.lcModa.disabled = isView; |
|
|
|
|
this.lcModa.hieg = isView; |
|
|
|
|
if (isView) this.lcModa.title = '查看流程业务信息:'+r.title; |
|
|
|
|
this.lcModa.formComponent = this.getFormComponent("@/views/activiti/form/ProcessMaterialWarehousing").component; |
|
|
|
|
this.lcModa.processData = r; |
|
|
|
|
this.lcModa.pictureId=r.procDefId |
|
|
|
|
if(!r.procInstId){ |
|
|
|
|
r.procInstId=''; |
|
|
|
|
} |
|
|
|
|
this.lcModa.procInstId=r.procInstId; |
|
|
|
|
this.lcModa.isNew = false; |
|
|
|
|
this.lcModa.visible = true; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onDateChange: function (value, dateString) { |
|
|
|
|
this.productLicenseDate = value; |
|
|
|
|
this.queryParam.productDateBegin=dateString[0]; |
|
|
|
@ -444,7 +503,7 @@
|
|
|
|
|
}, |
|
|
|
|
getAction(this.url.list,this.queryParam).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
console.log("res.result----------",res.result) |
|
|
|
|
// console.log("res.result----------",res.result) |
|
|
|
|
this.dataSource=res.result.records; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|