Prechádzať zdrojové kódy

新增组件及页面

liuqiwen 4 rokov pred
rodič
commit
7c6fea87a6

+ 7 - 1
dgtis-ui/src/views/system/userInfoList/index.vue

@@ -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;
         }
       );
+
     },
 
     /** 导出按钮操作 */