|
@@ -21,6 +21,7 @@
|
|
|
<avue-crud ref="crud"
|
|
|
:page="page"
|
|
|
:data="tableData"
|
|
|
+ :permission="permissionList"
|
|
|
:table-loading="tableLoading"
|
|
|
:option="tableOption"
|
|
|
@on-load="getList"
|
|
@@ -31,42 +32,56 @@
|
|
|
<template slot-scope="scope"
|
|
|
slot="menu">
|
|
|
<el-button type="text"
|
|
|
- v-if="permissions.sys_dict_edit"
|
|
|
- icon="el-icon-check"
|
|
|
+ v-if="permissions.sys_dict_add"
|
|
|
+ icon="el-icon-menu"
|
|
|
size="mini"
|
|
|
plain
|
|
|
- @click="handleEdit(scope.row,scope.index)">编辑
|
|
|
- </el-button>
|
|
|
- <el-button type="text"
|
|
|
- v-if="permissions.sys_dict_del"
|
|
|
- icon="el-icon-delete"
|
|
|
- size="mini"
|
|
|
- plain
|
|
|
- @click="handleDel(scope.row,scope.index)">删除
|
|
|
+ @click="handleItem(scope.row,scope.index)">字典项
|
|
|
</el-button>
|
|
|
</template>
|
|
|
</avue-crud>
|
|
|
</basic-container>
|
|
|
+ <el-dialog title="字典项管理" :visible.sync="dialogFormVisible" width="90%"
|
|
|
+ :table-loading="tableLoading"
|
|
|
+ @close="dialogFormVisible=false">
|
|
|
+ <avue-crud ref="crudItem"
|
|
|
+ :data="tableDictItemData"
|
|
|
+ :permission="permissionList"
|
|
|
+ v-model="form"
|
|
|
+ @row-update="handleItemUpdate"
|
|
|
+ @row-save="handleItemSave"
|
|
|
+ @row-del="rowItemDel"
|
|
|
+ :before-open="handleBeforeOpen"
|
|
|
+ :option="tableDictItemOption"
|
|
|
+ :table-loading="tableLoading">
|
|
|
+ </avue-crud>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {addObj, delObj, fetchList, putObj} from '@/api/admin/dict'
|
|
|
- import {tableOption} from '@/const/crud/admin/dict'
|
|
|
+ import {addItemObj, addObj, delItemObj, delObj, fetchItemList, fetchList, putItemObj, putObj} from '@/api/admin/dict'
|
|
|
+ import {tableDictItemOption, tableOption} from '@/const/crud/admin/dict'
|
|
|
import {mapGetters} from 'vuex'
|
|
|
|
|
|
export default {
|
|
|
name: 'dict',
|
|
|
data() {
|
|
|
return {
|
|
|
+ form: {},
|
|
|
+ dictType: undefined,
|
|
|
+ dictId: undefined,
|
|
|
+ dialogFormVisible: false,
|
|
|
tableData: [],
|
|
|
+ tableDictItemData: [],
|
|
|
page: {
|
|
|
total: 0, // 总页数
|
|
|
currentPage: 1, // 当前页数
|
|
|
pageSize: 20 // 每页显示多少条
|
|
|
},
|
|
|
tableLoading: false,
|
|
|
- tableOption: tableOption
|
|
|
+ tableOption: tableOption,
|
|
|
+ tableDictItemOption: tableDictItemOption
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -74,7 +89,14 @@
|
|
|
mounted: function () {
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters(['permissions'])
|
|
|
+ ...mapGetters(['permissions']),
|
|
|
+ permissionList() {
|
|
|
+ return {
|
|
|
+ addBtn: this.vaildData(this.permissions.sys_dict_add, false),
|
|
|
+ delBtn: this.vaildData(this.permissions.sys_dict_del, false),
|
|
|
+ editBtn: this.vaildData(this.permissions.sys_dict_edit, false)
|
|
|
+ };
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
getList(page, params) {
|
|
@@ -88,23 +110,29 @@
|
|
|
this.tableLoading = false
|
|
|
})
|
|
|
},
|
|
|
- /**
|
|
|
- * @title 打开新增窗口
|
|
|
- * @detail 调用crud的handleadd方法即可
|
|
|
- *
|
|
|
- **/
|
|
|
- handleAdd: function () {
|
|
|
- this.$refs.crud.rowAdd()
|
|
|
- },
|
|
|
- handleEdit(row, index) {
|
|
|
- this.$refs.crud.rowEdit(row, index)
|
|
|
+
|
|
|
+ getDictItemList(dictId, type) {
|
|
|
+ this.dictType = type
|
|
|
+ this.dictId = dictId
|
|
|
+ this.dialogFormVisible = true
|
|
|
+ this.tableLoading = true
|
|
|
+ fetchItemList(Object.assign({
|
|
|
+ current: this.page.currentPage,
|
|
|
+ size: this.page.pageSize
|
|
|
+ }, {dictId: dictId})).then(response => {
|
|
|
+ this.tableDictItemData = response.data.data.records
|
|
|
+ this.page.total = response.data.data.total
|
|
|
+ this.tableLoading = false
|
|
|
+ })
|
|
|
},
|
|
|
- handleDel(row, index) {
|
|
|
- this.$refs.crud.rowDel(row, index)
|
|
|
+ handleBeforeOpen(done) {
|
|
|
+ this.form.type = this.dictType
|
|
|
+ this.form.dictId = this.dictId
|
|
|
+ done()
|
|
|
},
|
|
|
- rowDel: function (row, index) {
|
|
|
+ rowDel: function (row) {
|
|
|
var _this = this
|
|
|
- this.$confirm('是否确认删除标签名为"' + row.label + '",数据类型为"' + row.type + '"的数据项?', '警告', {
|
|
|
+ this.$confirm('是否确认删除数据类型为"' + row.type + '"的数据项?', '警告', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
@@ -157,9 +185,58 @@
|
|
|
done()
|
|
|
})
|
|
|
},
|
|
|
+ handleItemSave: function (row, done) {
|
|
|
+ addItemObj(row).then(data => {
|
|
|
+ this.tableDictItemData.push(Object.assign({}, row))
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '添加成功',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ this.getList(this.page)
|
|
|
+ done()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleItemUpdate: function (row, index, done) {
|
|
|
+ putItemObj(row).then(() => {
|
|
|
+ this.tableData.splice(index, 1, Object.assign({}, row))
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '修改成功',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ this.getDictItemList(row.dictId, row.type)
|
|
|
+ done()
|
|
|
+ })
|
|
|
+ },
|
|
|
searchChange(form) {
|
|
|
- this.getList(this.page, form)
|
|
|
- }
|
|
|
+ this.getList(this.page, this.filterForm(form))
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 加载 字典项
|
|
|
+ * @param row
|
|
|
+ */
|
|
|
+ handleItem: function (row) {
|
|
|
+ this.getDictItemList(row.id, row.type)
|
|
|
+ },
|
|
|
+ rowItemDel: function (row) {
|
|
|
+ var _this = this
|
|
|
+ this.$confirm('是否确认删除数据为"' + row.label + '"的数据项?', '警告', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(function () {
|
|
|
+ return delItemObj(row.id)
|
|
|
+ }).then(() => {
|
|
|
+ this.getDictItemList(row.dictId, row.type)
|
|
|
+ _this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '删除成功',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ }).catch(function () {
|
|
|
+ })
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|