|
|
|
@ -691,6 +691,7 @@ import {getCodeList} from "@/api/inout/code";
|
|
|
|
|
import {getUserBindWork} from '@/api/basic/collectPoint/userWorkplace'
|
|
|
|
|
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
|
import IoCreateOrder from '@/views/collect/IoCreateOrder.vue'
|
|
|
|
|
import { filterWorkOptimize } from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
props:{
|
|
|
|
@ -726,9 +727,10 @@ export default {
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'desc'},
|
|
|
|
|
options: {
|
|
|
|
|
getInvList: [],
|
|
|
|
|
getWorkPlaceList: [],
|
|
|
|
|
getDeptList: [],
|
|
|
|
|
getBusType: [],
|
|
|
|
|
getWorkPlaceList: [],
|
|
|
|
|
findWorkPlace: [],
|
|
|
|
|
},
|
|
|
|
|
//界面配置---------------------end
|
|
|
|
|
|
|
|
|
@ -753,7 +755,7 @@ export default {
|
|
|
|
|
startTime: null,
|
|
|
|
|
endTime: null,
|
|
|
|
|
keyWords: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
// invCode: this.$store.getters.locInvCode,
|
|
|
|
|
vueType: null,
|
|
|
|
|
},
|
|
|
|
|
fromOptions: [],
|
|
|
|
@ -982,7 +984,11 @@ export default {
|
|
|
|
|
//获取订单列表
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.filterQuery.workPlaceCode = this.workplaceId
|
|
|
|
|
if (this.$route.query.workplaceId != null) {
|
|
|
|
|
this.isLinkDisabled = true
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
this.filterQuery.workPlaceCode = this.workplaceId
|
|
|
|
|
}
|
|
|
|
|
getOrderList(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -1065,25 +1071,26 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getWorkPlaceList(_this){
|
|
|
|
|
getUserBindWork({
|
|
|
|
|
autoUserId: 1,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 200,
|
|
|
|
|
}).then((response) => {
|
|
|
|
|
let getWorkPlaceList = []
|
|
|
|
|
if(response.code == 20000 && response.data.list.length > 0){
|
|
|
|
|
response.data.list.forEach( item => {
|
|
|
|
|
let post = {
|
|
|
|
|
code: item.workplaceId,
|
|
|
|
|
label: item.workplaceName
|
|
|
|
|
}
|
|
|
|
|
getWorkPlaceList.push(post)
|
|
|
|
|
})
|
|
|
|
|
_this.options.getWorkPlaceList = getWorkPlaceList
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
findWorkPlace(_this,val){
|
|
|
|
|
let query = {
|
|
|
|
|
// chargeUser: _this.$store.getters.userId,
|
|
|
|
|
userIdFlag: true,
|
|
|
|
|
key: val,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
}
|
|
|
|
|
filterWorkOptimize(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
_this.loading = false;
|
|
|
|
|
_this.options.findWorkPlace = response.data || [];
|
|
|
|
|
if (_this.options.findWorkPlace.length == 1) {
|
|
|
|
|
_this.filterQuery.workPlaceCode = _this.options.findWorkPlace[0].code;
|
|
|
|
|
_this.getWorkBindBusTypes(_this, _this.filterQuery.workPlaceCode)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
_this.loading = false;
|
|
|
|
|
_this.options.getWorkPlaceList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -1237,7 +1244,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.getInvList(this);
|
|
|
|
|
this.getBusType(this);
|
|
|
|
|
this.getWorkPlaceList(this);
|
|
|
|
|
this.findWorkPlace(this,"");
|
|
|
|
|
|
|
|
|
|
this.splitType = this.$route.query.splitType;
|
|
|
|
|
if (this.splitType == "search") {
|
|
|
|
|