|
@@ -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
|
|
|
})
|