张佳燕 пре 1 година
родитељ
комит
4d2f263c98
3 измењених фајлова са 12 додато и 4 уклоњено
  1. 2 2
      .env.development
  2. 5 0
      public/config.js
  3. 5 2
      src/views/audit_authority/index.vue

+ 2 - 2
.env.development

@@ -1,5 +1,5 @@
 # just a flag
 ENV = 'development'
 
-# base api   http://192.168.11.17:9100/yx-fyzd
-VUE_APP_BASE_API = 'http://192.168.11.17:9100/yx-fyzd'
+# base api
+VUE_APP_BASE_API = ''

+ 5 - 0
public/config.js

@@ -0,0 +1,5 @@
+window.g = {
+  // ApiUrl: 'https://tx.hz-hanghui.com:8088/yx-fyzd', //塘栖
+  ApiUrl: 'http://192.168.11.17:9100/yx-fyzd', //塘栖本地
+
+}

+ 5 - 2
src/views/audit_authority/index.vue

@@ -192,14 +192,16 @@ export default {
         pageSize: 10,
       },
       total: 0,
-
       // 对话框标题
       dialogTitle: {
         add: "添加审核人",
         update: "编辑审核人",
       },
       dialogType: "add",
-      form: {},
+      form: {
+        adminId:null,
+        userWhitelistId:null,
+      },
       form_copy: {},
       rules: {
         adminId: [{ required: true, message: "请选择", trigger: "blur" }],
@@ -231,6 +233,7 @@ export default {
       });
     },
     getUserWhitelist(e){
+      this.form.userWhitelistId=null
       getUserWhitelist(e).then(res=>{
         this.user_list=res.data
       })