|
|
@@ -84,7 +84,8 @@
|
|
|
|
|
|
<script>
|
|
|
import { listCustomer } from "@/api/customerInformation/customerInformation.js";
|
|
|
-export default {
|
|
|
+ import axios from 'axios'
|
|
|
+ export default {
|
|
|
name: "CustomerList",
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -117,6 +118,10 @@ export default {
|
|
|
that.queryParams,
|
|
|
that.$route.params
|
|
|
)
|
|
|
+ console.log(that.queryParams)
|
|
|
+ if(that.queryParams.education){
|
|
|
+ that.queryParams.education = that.queryParams.education.join("&");
|
|
|
+ }
|
|
|
console.log(that.queryParams)
|
|
|
listCustomer(that.queryParams).then(response => {
|
|
|
console.log(response);
|
|
|
@@ -125,6 +130,7 @@ export default {
|
|
|
this.loading = false;
|
|
|
}
|
|
|
);
|
|
|
+
|
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|