| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <div class="ele-body">
- <DictDataSearch @search="reload" />
- <el-card shadow="never">
- <div style="margin: 5px 0; padding-left: 262px">
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit()"
- >
- 添加
- </el-button>
- <!-- <el-button
- size="small"
- type="warning"
- icon="el-icon-edit"
- class="ele-btn-icon"
- :disabled="!current"
- @click="openEdit(current)"
- >
- 修改
- </el-button> -->
- <el-button
- size="small"
- type="danger"
- icon="el-icon-delete"
- class="ele-btn-icon"
- :disabled="!current"
- @click="remove"
- >
- 删除
- </el-button>
- </div>
- <ele-split-layout
- width="244px"
- allow-collapse
- :right-style="{ overflow: 'hidden' }"
- >
- <!-- 表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 350px)"
- :need-page="false"
- :toolkit="[]"
- :current.sync="current"
- highlight-current-row
- class="dict-table"
- tool-class="ele-toolbar-actions"
- @done="done"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar> </template>
- </ele-pro-table>
- <template v-slot:content>
- <!-- 数据字典项列表 -->
- <dict-data ref="dictData" v-if="current" :dict-id="current.id" />
- </template>
- </ele-split-layout>
- </el-card>
- <!-- 编辑弹窗 -->
- <dict-edit :visible.sync="showEdit" @done="reload" />
- </div>
- </template>
- <script>
- import DictData from './components/dict-data.vue';
- import DictEdit from './components/dict-edit.vue';
- import DictDataSearch from './components/dict-data-search.vue';
- import { listDictionaries, removeDictionary } from '@/api/system/dictionary';
- export default {
- name: 'SystemDictionary',
- components: { DictData, DictEdit, DictDataSearch },
- data() {
- return {
- // 表格列配置
- columns: [
- {
- columnKey: 'index',
- type: 'index',
- width: 45,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'name',
- label: '字典名称',
- showOverflowTooltip: true
- }
- ],
- // 当前编辑数据
- current: null,
- // 是否显示编辑弹窗
- showEdit: false,
- // 编辑回显数据
- editData: null
- };
- },
- methods: {
- /* 表格数据源 */
- datasource() {
- // return;
- return listDictionaries();
- },
- /* 表格渲染完成回调 */
- done(res) {
- if (res.data?.length) {
- this.$refs.table.setCurrentRow(res.data[0]);
- }
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload();
- this.$refs.dictData.reload(where);
- },
- /* 显示编辑 */
- openEdit(row) {
- this.editData = row;
- this.showEdit = true;
- },
- /* 删除 */
- remove() {
- this.$confirm('确定要删除选中的字典吗?', '提示', {
- type: 'warning'
- })
- .then(() => {
- if (this.$refs.dictData.selection.length == 0) {
- this.$message({
- message: '当前未选择数据',
- type: 'error'
- });
- return;
- }
- let ids = this.$refs.dictData.selection.map((item) => item.id);
- const loading = this.$loading({ lock: true });
- removeDictionary(ids, true)
- .then((msg) => {
- loading.close();
- this.$message.success(msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- this.$message.error(e.message);
- });
- })
- .catch(() => {});
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .dict-table {
- :deep(.el-table__row) {
- cursor: pointer;
- }
- :deep(.el-table__row > td:last-child:after) {
- content: '\e6e0';
- font-family: element-icons !important;
- font-style: normal;
- font-variant: normal;
- text-transform: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- line-height: 1;
- position: absolute;
- right: 10px;
- top: 50%;
- margin-top: -7px;
- }
- :deep(.el-table__row > td:last-child .cell) {
- padding-right: 20px;
- }
- }
- </style>
|