|
|
@@ -98,7 +98,7 @@
|
|
|
customerList: [],
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
- pageNum: 1,
|
|
|
+ pageNum: 0,
|
|
|
pageSize: 10
|
|
|
},
|
|
|
};
|
|
|
@@ -119,10 +119,14 @@
|
|
|
that.$route.params
|
|
|
)
|
|
|
console.log(that.queryParams)
|
|
|
+ // let params = Object.assign({pageNum: that.queryParams.pageNum}, this.$route.query )
|
|
|
+ console.log(params)
|
|
|
+ // this.$router.push({params})
|
|
|
if(that.queryParams.education){
|
|
|
that.queryParams.education = that.queryParams.education.join("&");
|
|
|
}
|
|
|
- console.log(that.queryParams)
|
|
|
+
|
|
|
+ // console.log(this.$route.params)
|
|
|
listCustomer(that.queryParams).then(response => {
|
|
|
console.log(response);
|
|
|
this.customerList = response.data.list;
|