|
|
|
@ -718,7 +718,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
orderPage(this.filterQuery).then(res => {
|
|
|
|
|
let query = JSON.parse(JSON.stringify(this.filterQuery));
|
|
|
|
|
query.workPlaceCode = null
|
|
|
|
|
query.busType =
|
|
|
|
|
orderPage(query).then(res => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.list = res.data.list || []
|
|
|
|
|
this.total = res.data.total || 0
|
|
|
|
@ -817,6 +820,7 @@ export default {
|
|
|
|
|
if (this.$route.query.workplaceId != null) {
|
|
|
|
|
this.isLinkDisabled = true
|
|
|
|
|
this.filterQuery.workPlaceCode = this.$route.query.workplaceId
|
|
|
|
|
this.filterQuery.busType = this.$route.query.busType
|
|
|
|
|
this.showType = 2
|
|
|
|
|
}
|
|
|
|
|
this.findWorkPlace(this, "");
|
|
|
|
|