|
@@ -163,11 +163,12 @@
|
|
|
//this.$refs.customScrollList.showPullUp = true
|
|
|
let res = await this.$u.api.marketPersonsSerial({
|
|
|
pageNum: paging.page,
|
|
|
- pageSize: paging.size
|
|
|
+ pageSize: paging.size,
|
|
|
+ serialType: this.serialType
|
|
|
})
|
|
|
if(res && res.code ===200) {
|
|
|
- if(res.data.performList){
|
|
|
- this.marketPersonsSerialList = [].concat(res.data.performList)
|
|
|
+ if(res.data.rows){
|
|
|
+ this.marketPersonsSerialList = [].concat(res.data.rows)
|
|
|
}else {
|
|
|
this.marketPersonsSerialList = []
|
|
|
}
|