1.屏蔽新增用户按钮,调整表单校验

master
x_z 3 years ago
parent aaa6c804a1
commit 02806afe41

@ -28,26 +28,28 @@
@click="onReset" @click="onReset"
></el-button> ></el-button>
<el-button type="primary" icon="search" @click="onSubmit" <el-button type="primary" icon="search" @click="onSubmit"
>查询</el-button >查询
</el-button
> >
<el-button type="primary" @click.native="handleForm(null, null)" <!--<el-button type="primary" @click.native="handleForm(null, null)"
>新增</el-button >新增</el-button
> >-->
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="list" style="width: 100%"> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="用户名" prop="userName" fixed> </el-table-column> <el-table-column label="用户名" prop="userName" fixed></el-table-column>
<el-table-column label="用户昵称" prop="employeeName" fixed> <el-table-column label="用户昵称" prop="employeeName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="状态" fixed=""> <el-table-column label="状态" fixed="">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="scope.row.userFlag | statusFilterType">{{ <el-tag :type="scope.row.userFlag | statusFilterType">{{
scope.row.userFlag | statusFilterName scope.row.userFlag | statusFilterName
}}</el-tag> }}
</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" prop="comments" fixed> </el-table-column> <el-table-column label="备注" prop="comments" fixed></el-table-column>
<el-table-column <el-table-column
label="登录时间" label="登录时间"
with="300" with="300"
@ -157,7 +159,8 @@
v-for="item in roles" v-for="item in roles"
:key="item.id" :key="item.id"
:label="item.id" :label="item.id"
>{{ item.name }}</el-checkbox >{{ item.name }}
</el-checkbox
> >
</el-checkbox-group> </el-checkbox-group>
</el-form-item> </el-form-item>
@ -169,7 +172,8 @@
size="small" size="small"
@click.native="formSubmit()" @click.native="formSubmit()"
:loading="formLoading" :loading="formLoading"
>提交</el-button >提交
</el-button
> >
</div> </div>
</el-dialog> </el-dialog>
@ -177,272 +181,266 @@
</template> </template>
<script> <script>
import { import {
authAdminList, authAdminList,
authAdminRoleList, authAdminSave,
authAdminSave, authAdminDelete,
authAdminDelete, roleCustomers
roleCustomers } from "../../../api/auth/authAdmin";
} from "../../../api/auth/authAdmin"; import store from "../../../store/index";
import store from "../../../store/index"; const formJson = {
const formJson = { id: "",
id: "", passWord: "",
passWord: "", userName: "",
userName: "", checkPassword: "",
checkPassword: "", employeeName: "",
employeeName: "", userFlag: 1,
userFlag: 1, roles: []
roles: [] };
}; export default {
export default { data() {
data() { let validatePass = (rule, value, callback) => {
let validatePass = (rule, value, callback) => { if (value === "") {
if (value === "") { callback(new Error("请输入密码"));
callback(new Error("请输入密码")); } else {
} else { callback();
callback(); }
} };
}; let validatePass2 = (rule, value, callback) => {
let validatePass2 = (rule, value, callback) => { if (value === "") {
if (value === "") { callback(new Error("请再次输入密码"));
callback(new Error("请再次输入密码")); } else if (value !== this.formData.passWord) {
} else if (value !== this.formData.passWord) { callback(new Error("两次输入密码不一致!"));
callback(new Error("两次输入密码不一致!")); } else {
} else { callback();
callback(); }
} };
}; return {
return { roles: [],
roles: [], query: {
query: { userName: "",
userName: "", userFlag: "",
userFlag: "", page: 1,
page: 1, limit: 20,
limit: 20, roleId: "",
roleId: "", customerId: store.getters.customerId,
customerId: store.getters.customerId,
},
list: [],
total: 0,
loading: true,
index: null,
formName: null,
formMap: {
add: "新增",
edit: "编辑"
},
formLoading: false,
formVisible: false,
formData: formJson,
formRules: {},
addRules: {
userName: [
{ required: true, message: "请输入姓名", trigger: "blur" }
],
passWord: [
{ required: true, message: "请输入密码", trigger: "blur" },
{ validator: validatePass, trigger: "blur" }
],
checkPassword: [
{
required: true,
message: "请再次输入密码",
trigger: "blur"
},
{ validator: validatePass2, trigger: "blur" }
],
userFlag: [
{ required: true, message: "请选择状态", trigger: "change" }
]
},
editRules: {
userName: [
{ required: true, message: "请输入姓名", trigger: "blur" }
],
userFlag: [
{ required: true, message: "请选择状态", trigger: "change" }
]
},
deleteLoading: false
};
},
methods: {
onReset() {
this.$router.push({
path: ""
});
this.query = {
userName: "",
userFlag: "",
page: 1,
limit: 20,
roleId: "",
customerId: store.getters.customerId,
};
this.getList();
}, },
onSubmit() { list: [],
this.$router.push({ total: 0,
path: "", loading: true,
query: this.query index: null,
}); formName: null,
this.getList(); formMap: {
add: "新增",
edit: "编辑"
}, },
handleCurrentChange(val) { formLoading: false,
this.query.page = val; formVisible: false,
this.getList(); formData: formJson,
formRules: {},
addRules: {
userName: [
{required: true, message: "请输入姓名", trigger: "blur"}
],
passWord: [
{required: true, message: "请输入密码", trigger: "blur"},
{validator: validatePass, trigger: "blur"}
],
checkPassword: [
{
required: true,
message: "请再次输入密码",
trigger: "blur"
},
{validator: validatePass2, trigger: "blur"}
],
userFlag: [
{required: true, message: "请选择状态", trigger: "change"}
]
}, },
getList() { editRules: {
this.loading = true; userName: [
authAdminList(this.query) {required: true, message: "请输入姓名", trigger: "blur"}
.then(response => { ],
this.loading = false; userFlag: [
this.list = response.data.list || []; {required: true, message: "请选择状态", trigger: "change"}
this.total = response.data.total || 0; ]
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
this.roles = [];
});
}, },
getRoleList() { deleteLoading: false
roleCustomers(this.query) };
.then(response => { },
this.roles = response.data.list || []; methods: {
}) onReset() {
.catch(() => { this.$router.push({
this.roles = []; path: ""
}); });
}, this.query = {
// userName: "",
resetForm() { userFlag: "",
if (this.$refs["dataForm"]) { page: 1,
// limit: 20,
this.$refs["dataForm"].clearValidate(); roleId: "",
// customerId: store.getters.customerId,
this.$refs["dataForm"].resetFields(); };
} this.getList();
}, },
// onSubmit() {
hideForm() { this.$router.push({
// path: "",
this.formVisible = !this.formVisible; query: this.query
// });
this.getList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getList();
},
getList() {
this.loading = true;
authAdminList(this.query)
.then(response => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
this.roles = [];
});
},
getRoleList() {
roleCustomers(this.query)
.then(response => {
this.roles = response.data.list || [];
})
.catch(() => {
this.roles = [];
});
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields(); this.$refs["dataForm"].resetFields();
return true; }
}, },
// //
handleForm(index, row) { hideForm() {
this.formVisible = true; //
this.formData = JSON.parse(JSON.stringify(formJson)); this.formVisible = !this.formVisible;
if (row !== null) { //
this.formData = Object.assign({}, row); this.$refs["dataForm"].resetFields();
} return true;
this.formName = "add"; },
this.formRules = this.addRules; //
if (index !== null) { handleForm(index, row) {
this.index = index; this.formVisible = true;
this.formName = "edit"; this.formData = JSON.parse(JSON.stringify(formJson));
this.formRules = this.editRules; if (row !== null) {
} this.formData = Object.assign({}, row);
}, }
formSubmit() { this.formName = "add";
console.log( this.formRules = this.addRules;
this.formData.userName + if (index !== null) {
"-----" + this.index = index;
this.formData.employeeName + this.formName = "edit";
this.formData.userFlag this.formRules = this.editRules;
); }
this.$refs["dataForm"].validate(valid => { },
if (valid) { formSubmit() {
this.formLoading = true; this.$refs["formData"].validate(valid => {
let data = Object.assign({}, this.formData); if (valid) {
authAdminSave(data, this.formName).then(response => { this.formLoading = true;
this.formLoading = false; let data = Object.assign({}, this.formData);
if (response.code !== 20000) { authAdminSave(data, this.formName).then(response => {
this.$message.error(response.message); this.formLoading = false;
return false; if (response.code !== 20000) {
} this.$message.error(response.message);
this.$message.success("操作成功"); return false;
this.formVisible = false; }
if (this.formName === "add") { this.$message.success("操作成功");
// this.formVisible = false;
if (response.data && response.data.id) { if (this.formName === "add") {
data.id = response.data.id; //
this.list.unshift(data); if (response.data && response.data.id) {
} data.id = response.data.id;
} else { this.list.unshift(data);
this.list.splice(this.index, 1, data);
} }
// } else {
this.resetForm(); this.list.splice(this.index, 1, data);
}); }
} //
}); this.resetForm();
}, });
//
handleDel(index, row) {
if (row.id) {
this.$confirm("确认删除该记录吗?", "提示", {
type: "warning"
})
.then(() => {
let para = { id: row.id };
this.deleteLoading = true;
authAdminDelete(para)
.then(response => {
this.deleteLoading = false;
if (response.code !== 20000) {
this.$message.error(response.message);
return false;
}
this.$message.success("操作成功");
//
this.list.splice(index, 1);
})
.catch(() => {
this.deleteLoading = false;
});
})
.catch(() => {
this.$message.info("取消删除");
});
} }
} });
}, },
filters: { //
statusFilterType(status) { handleDel(index, row) {
const statusMap = { if (row.id) {
0: "gray", this.$confirm("确认删除该记录吗?", "提示", {
1: "success", type: "warning"
2: "danger" })
}; .then(() => {
return statusMap[status]; let para = {id: row.id};
}, this.deleteLoading = true;
statusFilterName(status) { authAdminDelete(para)
const statusMap = { .then(response => {
0: "禁用", this.deleteLoading = false;
1: "正常", if (response.code !== 20000) {
2: "未验证" this.$message.error(response.message);
}; return false;
return statusMap[status]; }
this.$message.success("操作成功");
//
this.list.splice(index, 1);
})
.catch(() => {
this.deleteLoading = false;
});
})
.catch(() => {
this.$message.info("取消删除");
});
} }
}
},
filters: {
statusFilterType(status) {
const statusMap = {
0: "gray",
1: "success",
2: "danger"
};
return statusMap[status];
}, },
mounted() {}, statusFilterName(status) {
created() { const statusMap = {
// 0: "禁用",
let query = this.$route.query; 1: "正常",
this.query = Object.assign(this.query, query); 2: "未验证"
this.query.limit = parseInt(this.query.limit); };
// return statusMap[status];
this.getList();
//
this.getRoleList();
} }
}; },
mounted() {
},
created() {
//
let query = this.$route.query;
this.query = Object.assign(this.query, query);
this.query.limit = parseInt(this.query.limit);
//
this.getList();
//
this.getRoleList();
}
};
</script> </script>
<style type="text/scss" lang="scss"> <style type="text/scss" lang="scss">

Loading…
Cancel
Save