| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <el-card class="content-z">
- <!-- 操作按钮区域 -->
- <div class="table-operator" style="margin: 5px 0;float: right">
- <a-button v-permission="['pc:system:dict:add']" type="primary" icon="plus" @click="handleAdd">新增</a-button>
- <a-dropdown v-if="selectedRowKeys.length > 0">
- <a-menu slot="overlay">
- <a-menu-item key="1" v-permission="['pc:system:dict:remove']" @click="batchDel">
- <a-icon type="delete" />
- 删除
- </a-menu-item>
- </a-menu>
- <a-button style="margin-left: 8px">
- 批量操作
- <a-icon type="down" />
- </a-button>
- </a-dropdown>
- </div>
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-form-item>
- <a-input
- v-model="queryParam.dictName"
- style="width: 250px"
- placeholder="请输入字典名称"
- />
- </a-form-item>
- <a-form-item>
- <a-button type="primary" @click="searchQuery">查询</a-button>
- <a-button style="margin-left: 8px" @click="searchReset">重置</a-button>
- </a-form-item>
- </a-form>
- </div>
- <!-- table区域-begin -->
- <div>
- <div class="ant-alert ant-alert-info" style="margin: 16px 0;">
- <i class="anticon anticon-info-circle ant-alert-icon" /> 已选择 <a style="font-weight: 600">{{
- selectedRowKeys.length }}</a>项
- <a style="margin-left: 24px" @click="onClearSelected">清空</a>
- </div>
- <a-table
- ref="table"
- size="middle"
- bordered
- row-key="dictId"
- :columns="columns"
- :data-source="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :row-selection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- @change="handleTableChange"
- >
- <span slot="action" slot-scope="text, record">
- <a-button v-permission="['pc:system:dict:edit']" size="small" type="primary" @click="handleEdit(record)">
- 编辑
- </a-button>
- <a-divider type="vertical" />
- <a-button v-permission="['pc:system:dict:edit']" size="small" type="primary" @click="editDictItem(record)">
- 字典配置
- </a-button>
- <a-divider type="vertical" />
- <a-popconfirm
- v-permission="['pc:system:dict:remove']"
- title="确定删除吗?"
- @confirm="() => handleDelete(record.dictId)"
- >
- <a-button size="small" type="danger">
- 删除
- </a-button>
- </a-popconfirm>
- </span>
- </a-table>
- <check-and-edit-model ref="modalForm" @ok="modalFormOk" />
- <dict-item-list ref="dictItemList" />
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- </el-card>
- </template>
- <script>
- import { listMixin } from '@/mixin/listMixin'
- import columns from './indexColumns'
- import CheckAndEditModel from './CheckAndEditModel'
- import DictItemList from './DictItemList'
- export default {
- components: {
- CheckAndEditModel,
- DictItemList
- },
- mixins: [listMixin],
- data() {
- return {
- // 查询条件
- queryParam: {},
- // 表头
- columns: columns(this),
- url: {
- list: '/system/dict/type/list',
- delete: '/system/dict/type/',
- exportXlsUrl: '/exportXlsUrl',
- importExcelUrl: `${process.env.VUE_APP_BASE_API}/importExcelUrl`
- }
- }
- },
- created() {
- },
- methods: {
- editDictItem(record) {
- this.$refs.dictItemList.edit(record)
- }
- }
- }
- </script>
- <style scoped>
- @import '~@/assets/less/common.less'
- </style>
|