lilu 2 years ago
commit b78ead4858

@ -166,7 +166,7 @@ export default {
setVisible: false, setVisible: false,
setVisible1: false, setVisible1: false,
queryParam: { queryParam: {
WebMain: '', WebMain: '全部',
currentPage: 1, currentPage: 1,
pageSize: 10, pageSize: 10,
totalResult: 1 totalResult: 1
@ -324,11 +324,11 @@ export default {
this.loading = true this.loading = true
let Data = {} let Data = {}
if (this.queryParam.WebMain == '全部') { if (this.queryParam.WebMain == '全部') {
Data = { isMain: true, isSub: true } Data = {}
} else if (this.queryParam.WebMain == '主单') { } else if (this.queryParam.WebMain == '主单') {
Data = { isMain: true, isSub: false } Data = { isMain: true }
} else if (this.queryParam.WebMain == '分单') { } else if (this.queryParam.WebMain == '分单') {
Data = { isMain: false, isSub: true } Data = { isSub: true }
} }
BookingPrintTemplatePage({ ...this.queryParam, ...Data }).then(res => { BookingPrintTemplatePage({ ...this.queryParam, ...Data }).then(res => {
this.loadData = res.data.rows this.loadData = res.data.rows

Loading…
Cancel
Save