Saber/src/views/system/dict.vue

238 lines
6.0 KiB
Vue
Raw Normal View History

2019-02-14 11:38:09 +08:00
<template>
<basic-container>
<avue-crud :option="option"
:data="data"
ref="crud"
v-model="form"
2019-02-15 16:24:50 +08:00
:permission="permissionList"
2019-02-14 11:38:09 +08:00
:before-open="beforeOpen"
@row-del="rowDel"
@row-update="rowUpdate"
@row-save="rowSave"
2019-02-15 14:33:39 +08:00
@search-change="searchChange"
@search-reset="searchReset"
2019-02-14 11:38:09 +08:00
@selection-change="selectionChange"
@on-load="onLoad">
<template slot="menuLeft">
<el-button type="danger"
size="small"
icon="el-icon-delete"
2019-02-15 16:24:50 +08:00
v-if="permission.dict_delete"
2019-02-14 11:38:09 +08:00
plain
2019-02-21 22:34:21 +08:00
@click="handleDelete">
</el-button>
2019-02-14 11:38:09 +08:00
</template>
<template slot-scope="{row}"
slot="roleId">
<el-tag>{{row.roleName}}</el-tag>
</template>
<template slot-scope="{row}"
slot="deptId">
<el-tag>{{row.deptName}}</el-tag>
</template>
</avue-crud>
</basic-container>
</template>
<script>
2019-02-21 22:34:21 +08:00
import {
getList,
remove,
update,
add,
getDict,
getDictTree
} from "@/api/system/dict";
import {mapGetters} from "vuex";
export default {
data() {
2019-02-15 16:24:50 +08:00
return {
2019-02-21 22:34:21 +08:00
form: {},
selectionList: [],
page: {
pageSize: 10,
currentPage: 1,
total: 0
},
option: {
2019-02-21 23:15:12 +08:00
tip: false,
2019-02-21 22:34:21 +08:00
tree: true,
border: true,
index: true,
selection: true,
viewBtn: true,
column: [
{
label: "字典名称",
prop: "dictValue",
2019-02-22 10:17:28 +08:00
search: true,
rules: [{
required: true,
message: "请输入字典名称",
trigger: "blur"
}]
2019-02-21 22:34:21 +08:00
},
{
label: "字典编号",
prop: "code",
2019-02-22 10:17:28 +08:00
search: true,
rules: [{
required: true,
message: "请输入字典编号",
trigger: "blur"
}]
2019-02-21 22:34:21 +08:00
},
{
label: "上级字典",
prop: "parentId",
type: "tree",
dicData: [],
hide: true,
props: {
label: "title"
2019-02-22 10:17:28 +08:00
},
rules: [{
required: true,
message: "请选择上级字典",
trigger: "blur"
}]
2019-02-21 22:34:21 +08:00
},
{
label: "字典键值",
2019-02-21 22:49:01 +08:00
prop: "dictKey",
2019-02-22 10:17:28 +08:00
type: "number",
rules: [{
required: true,
message: "请输入字典键值",
trigger: "blur"
}]
2019-02-21 22:34:21 +08:00
},
{
2019-02-22 10:17:28 +08:00
label: "字典排序",
2019-02-21 22:49:01 +08:00
prop: "sort",
2019-02-22 10:17:28 +08:00
type: "number",
rules: [{
required: true,
message: "请输入字典排序",
trigger: "blur"
}]
2019-02-21 22:34:21 +08:00
}
]
},
data: []
2019-02-15 16:24:50 +08:00
};
},
2019-02-21 22:34:21 +08:00
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.permission.dict_add,
viewBtn: this.permission.dict_view,
delBtn: this.permission.dict_delete,
editBtn: this.permission.dict_edit
};
},
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
2019-02-14 11:38:09 +08:00
});
2019-02-21 22:34:21 +08:00
return ids.join(",");
}
2019-02-14 11:38:09 +08:00
},
2019-02-21 22:34:21 +08:00
methods: {
rowSave(row, loading) {
add(row).then(() => {
loading();
2019-02-15 08:53:40 +08:00
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
2019-02-14 11:38:09 +08:00
});
2019-02-21 22:34:21 +08:00
},
rowUpdate(row, index, loading) {
update(row).then(() => {
loading();
2019-02-15 08:53:40 +08:00
this.onLoad(this.page);
2019-02-14 11:38:09 +08:00
this.$message({
type: "success",
message: "操作成功!"
});
});
2019-02-21 22:34:21 +08:00
},
rowDel(row) {
2019-02-22 21:52:18 +08:00
this.$confirm("确定将选择数据删除?", {
2019-02-21 22:34:21 +08:00
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
searchReset() {
this.onLoad(this.page);
},
searchChange(params) {
this.onLoad(this.page, params);
},
selectionChange(list) {
this.selectionList = list;
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
2019-02-22 21:52:18 +08:00
this.$confirm("确定将选择数据删除?", {
2019-02-21 22:34:21 +08:00
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.$refs.crud.toggleSelection();
});
},
beforeOpen(done, type) {
if (["edit", "view"].includes(type)) {
getDict(this.form.id).then(res => {
this.form = res.data.data;
});
}
done();
},
onLoad(page, params = {}) {
getList(page.currentPage, page.pageSize, params).then(res => {
2019-02-15 15:15:08 +08:00
const data = res.data.data;
2019-02-21 22:34:21 +08:00
this.data = data;
getDictTree().then(res => {
const data = res.data.data;
const index = this.$refs.crud.findColumnIndex("parentId");
this.option.column[index].dicData = data;
});
2019-02-15 15:15:08 +08:00
});
2019-02-21 22:34:21 +08:00
}
2019-02-14 11:38:09 +08:00
}
2019-02-21 22:34:21 +08:00
};
2019-02-14 11:38:09 +08:00
</script>
<style>
</style>