1/17 选入采集工位加入部门条件

20240912_adapter
wangwei 3 months ago
parent 39d5f9abeb
commit 97bf1809b5

@ -86,6 +86,7 @@
import { filterListByWorkplace, getWorkBindBusTypes } from '@/api/basic/workPlace/sysWorkplaceDocuments'
import { filterWorkOptimize } from '@/api/basic/workPlace/sysWorkplaceManage'
import { bindCollect } from '@/api/basic/collectPoint/cargowWorkplaceManage'
import { isBlank } from '@/utils/strUtil'
export default {
props: {
@ -100,7 +101,11 @@ export default {
collectWorks: {
type: Array,
required: true
}
},
deptCode: {
type: Object,
required: true
},
},
components: {},
data() {
@ -112,7 +117,9 @@ export default {
documentTypeCode: null,
workPlaceClass: 1,
page: 1,
limit: 10
limit: 10,
deptCode: null
},
DeptList: [],
list: [],
@ -177,6 +184,9 @@ export default {
this.rowList = row
},
getList() {
if (!isBlank(this.deptCode)){
this.query.deptCode = this.deptCode
}
filterListByWorkplace(this.query).then(res => {
if (res.code == 20000) {
this.list = res.data.list
@ -192,7 +202,8 @@ export default {
workPlaceClass: 1,
key: val,
page: 1,
limit: 10
limit: 10,
deptCode : this.deptCode
}
filterWorkOptimize(query)
.then((response) => {
@ -257,6 +268,7 @@ export default {
}
},
created() {
console.log("GYgY",this.deptCode)
this.getList()
this.findWorkPlace('')
this.getWorkBindBusTypes('')

@ -278,6 +278,7 @@
@close=""
>
<addCollectWorkplace
:deptCode="deptCode"
:workplaceId="workplaceId"
:collectWorks="collectWorks"
:closeDialog="closeDialog"
@ -736,7 +737,8 @@ export default {
// workplaceType: [
// { required: true, message: '', trigger: 'blur' }
// ]
}
},
deptCode: null,
}
},
@ -903,6 +905,7 @@ export default {
if (res.code != 20000) {
return this.$message.error('获取失败')
}
this.deptCode = this.rowData.deptCode
this.collectList1 = res.data.list || []
this.collectWorks = this.collectList1.map(item => item.collectAndTypeCodes)
this.chooseCollectDialogVisible = true

Loading…
Cancel
Save