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"
|
2019-05-16 23:44:00 +08:00
|
|
|
@current-change="currentChange"
|
|
|
|
@size-change="sizeChange"
|
2019-02-14 11:38:09 +08:00
|
|
|
@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>
|
|
|
|
</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: [
|
|
|
|
{
|
2019-05-16 23:44:00 +08:00
|
|
|
label: "字典编号",
|
|
|
|
prop: "code",
|
2019-02-22 10:17:28 +08:00
|
|
|
search: true,
|
2019-05-16 23:44:00 +08:00
|
|
|
span: 24,
|
2019-02-22 10:17:28 +08:00
|
|
|
rules: [{
|
|
|
|
required: true,
|
2019-05-16 23:44:00 +08:00
|
|
|
message: "请输入字典编号",
|
2019-02-22 10:17:28 +08:00
|
|
|
trigger: "blur"
|
|
|
|
}]
|
2019-02-21 22:34:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-05-16 23:44:00 +08:00
|
|
|
label: "字典名称",
|
|
|
|
prop: "dictValue",
|
2019-02-22 10:17:28 +08:00
|
|
|
search: true,
|
|
|
|
rules: [{
|
|
|
|
required: true,
|
2019-05-16 23:44:00 +08:00
|
|
|
message: "请输入字典名称",
|
2019-02-22 10:17:28 +08:00
|
|
|
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: [{
|
2019-02-23 21:55:41 +08:00
|
|
|
required: false,
|
2019-02-22 10:17:28 +08:00
|
|
|
message: "请选择上级字典",
|
2019-03-01 16:42:26 +08:00
|
|
|
trigger: "click"
|
2019-02-22 10:17:28 +08:00
|
|
|
}]
|
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-05-16 23:44:00 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "字典备注",
|
|
|
|
prop: "remark",
|
|
|
|
search: true,
|
|
|
|
span: 24,
|
|
|
|
hide: true,
|
|
|
|
},
|
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 {
|
2019-03-02 09:13:57 +08:00
|
|
|
addBtn: this.vaildData(this.permission.dict_add, false),
|
|
|
|
viewBtn: this.vaildData(this.permission.dict_view, false),
|
|
|
|
delBtn: this.vaildData(this.permission.dict_delete, false),
|
|
|
|
editBtn: this.vaildData(this.permission.dict_edit, false)
|
2019-02-21 22:34:21 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
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: {
|
2019-05-16 23:44:00 +08:00
|
|
|
rowSave(row, loading, done) {
|
2019-02-21 22:34:21 +08:00
|
|
|
add(row).then(() => {
|
|
|
|
loading();
|
2019-02-15 08:53:40 +08:00
|
|
|
this.onLoad(this.page);
|
|
|
|
this.$message({
|
|
|
|
type: "success",
|
|
|
|
message: "操作成功!"
|
|
|
|
});
|
2019-05-16 23:44:00 +08:00
|
|
|
}, error => {
|
|
|
|
done();
|
|
|
|
console.log(error);
|
2019-02-14 11:38:09 +08:00
|
|
|
});
|
2019-02-21 22:34:21 +08:00
|
|
|
},
|
2019-05-16 23:44:00 +08:00
|
|
|
rowUpdate(row, index, loading, done) {
|
2019-02-21 22:34:21 +08:00
|
|
|
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-05-16 23:44:00 +08:00
|
|
|
}, error => {
|
|
|
|
done();
|
|
|
|
console.log(error);
|
2019-02-14 11:38:09 +08:00
|
|
|
});
|
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();
|
|
|
|
},
|
2019-05-16 23:44:00 +08:00
|
|
|
currentChange(currentPage){
|
|
|
|
this.page.currentPage = currentPage;
|
|
|
|
},
|
|
|
|
sizeChange(pageSize){
|
|
|
|
this.page.pageSize = pageSize;
|
|
|
|
},
|
2019-02-21 22:34:21 +08:00
|
|
|
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>
|