| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <matter-search @search="reload"> </matter-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- cache-key="systemRoleTable13"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('add')"
- >
- 新建
- </el-button>
- </template>
- <!-- 编码列 -->
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="goDetail(row)">
- {{ row.code }}
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-finished"
- @click="openEdit('clone', row)"
- >
- 克隆
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('edit', row)"
- >
- 修改
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此条数据吗?"
- @confirm="remove(row)"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </el-card>
- <!-- 新建或编辑弹窗 -->
- <matter-add
- ref="addMatterRulesRef"
- :pageType="pageType"
- :dialogTitle="dialogTitle"
- @done="reload"
- />
- </div>
- </template>
- <script>
- import MatterSearch from './components/matter-search.vue';
- import MatterAdd from './components/matter-add.vue';
- import { getList, getDetail, removeRule } from '@/api/ruleManagement/matter';
- import dictMixins from '@/mixins/dictMixins';
- export default {
- mixins: [dictMixins],
- components: {
- MatterSearch,
- MatterAdd
- },
- data() {
- return {
- // 表格列配置
- columns: [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '规则编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'code'
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (_row, _column, cellValue) => {
- return this.getDictValue('规则状态', _row.status);
- }
- },
- {
- prop: 'ruleType',
- label: '规则类型',
- align: 'center',
- showOverflowTooltip: true,
- slot: 'enable',
- minWidth: 110,
- formatter: (_row, _column, cellValue) => {
- return this.getDictValue('规则类型', _row.ruleType);
- }
- },
- {
- prop: 'name',
- label: '规则名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'cycle',
- label: '周期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (_row, _column, cellValue) => {
- return this.getDictValue('规则周期', _row.cycleType);
- }
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (_row, _column, cellValue) => {
- return this.$util.toDateString(cellValue);
- }
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 230,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true
- }
- ],
- // 加载状态
- loading: false,
- pageType: 'add',
- dialogTitle: ''
- };
- },
- computed: {},
- created() {
- this.requestDict('规则周期');
- this.requestDict('规则类型');
- this.requestDict('规则状态');
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return getList({ pageNum: page, size: limit, ...where });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- remove(row) {
- removeRule([row.id]).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- openEdit(type, row) {
- this.pageType = type;
- this.dialogTitle =
- type == 'add' ? '新建规则' : type == 'edit' ? '编辑规则' : '克隆规则';
- this.$refs.addMatterRulesRef.openDialog(row, type);
- },
- goDetail({ id }) {
- this.$router.push({
- path: '/rulesManagement/matterRules/details',
- query: { id }
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped></style>
|