|
|
@ -40,7 +40,7 @@
|
|
|
|
<pagination style="height: 20px"
|
|
|
|
<pagination style="height: 20px"
|
|
|
|
v-show="total>0"
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:total="total"
|
|
|
|
:page-sizes=[12,24,48]
|
|
|
|
:page-sizes=[24,48,96]
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
@pagination="getList"
|
|
|
|
@pagination="getList"
|
|
|
@ -58,8 +58,8 @@
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<addOrder
|
|
|
|
<addOrder
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
:orderQuery="idQuery"
|
|
|
|
:orderQuery="this.idQuery"
|
|
|
|
:sickerAdNum="sickerAdNum"
|
|
|
|
:sickerAdNum="this.sickerAdNum"
|
|
|
|
:viewType="2"
|
|
|
|
:viewType="2"
|
|
|
|
:errView="0"
|
|
|
|
:errView="0"
|
|
|
|
></addOrder>
|
|
|
|
></addOrder>
|
|
|
@ -83,7 +83,7 @@ export default {
|
|
|
|
orderId: null,
|
|
|
|
orderId: null,
|
|
|
|
code: null,
|
|
|
|
code: null,
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 12
|
|
|
|
limit: 24
|
|
|
|
},
|
|
|
|
},
|
|
|
|
total: 0,
|
|
|
|
total: 0,
|
|
|
|
list: [],
|
|
|
|
list: [],
|
|
|
@ -91,10 +91,10 @@ export default {
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
name: '',
|
|
|
|
name: '',
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 12
|
|
|
|
limit: 24
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
sickerAdNum:"",
|
|
|
|
sickerAdNum:null,
|
|
|
|
addOrderVisible: false,
|
|
|
|
addOrderVisible: false,
|
|
|
|
idQuery:{
|
|
|
|
idQuery:{
|
|
|
|
billNo: null,
|
|
|
|
billNo: null,
|
|
|
@ -143,6 +143,10 @@ export default {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
console.log(this.idQuery)
|
|
|
|
console.log(this.idQuery)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
closeDialog() {
|
|
|
|
|
|
|
|
this.addOrderVisible = false;
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
getSkSickerList(this.filterQuery)
|
|
|
|
getSkSickerList(this.filterQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
@ -166,7 +170,7 @@ export default {
|
|
|
|
this.filterQuery = {
|
|
|
|
this.filterQuery = {
|
|
|
|
name: '',
|
|
|
|
name: '',
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 12
|
|
|
|
limit: 24
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.getList()
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
},
|
|
|
|