123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <template>
- <div class="">
- <toolbar @on-filter="filterData" @on-reset="filterData" />
- <div class="m-10 bg-w p-20 br-10">
- <!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"
- >新增</el-button
- > -->
- <base-table
- :columns="columns"
- :items="items"
- :pagination="pagination"
- :page-change="pageChange"
- />
- </div>
- </div>
- </template>
- <script>
- import toolbar from './toolbar';
- import mxFilterList from '@/mixins/filterList';
- import { getPage, delItem } from '@/api/system';
- export default {
- name: 'RoleManagement',
- components: { toolbar },
- mixins: [
- mxFilterList({
- fetchList: getPage, // 在下方data再声明一个 fetchList: iGetList 同等效果
- internalFilterObj: {
- isDel: false
- }
- })
- ],
- data() {
- return {
- columns: [
- {
- key: 'id',
- name: '#',
- minWidth: this.$col.b
- },
- {
- key: 'name',
- name: '角色名',
- width: '240'
- },
- {
- key: 'code',
- name: '角色值',
- minWidth: '120'
- },
- {
- key: 'remarks',
- name: '备注',
- minWidth: '180'
- }
- // {
- // key: 'action',
- // name: '操作',
- // width: '180',
- // render: (h, { row }) => {
- // const action = [];
- // action.push(
- // h(
- // 'el-button',
- // {
- // props: {
- // type: 'text'
- // },
- // on: {
- // click: () =>
- // this.$SceneItemModal({
- // id: row.id
- // })
- // }
- // },
- // '编辑'
- // )
- // );
- // action.push(
- // h(
- // 'BaseBtn',
- // {
- // props: {
- // popip: true,
- // txt: '删除',
- // type: 'text'
- // },
- // class: 'ml-10',
- // on: {
- // ok: () => this.handleDelItem(row)
- // }
- // },
- // '删除'
- // )
- // );
- // return h('div', action);
- // }
- // }
- ]
- };
- },
- created() {
- this.$g_on('system_reload', this.reload);
- },
- beforeDestroy() {
- this.$g_off('system_reload', this.reload);
- },
- methods: {
- // handleAdd() {
- // this.$SceneItemModal();
- // },
- async handleDelItem(item) {
- const { success, msg } = await delItem({
- id: item.id
- });
- if (success) {
- this.$success('删除成功!');
- this.$g_emit('system_reload');
- }
- }
- }
- };
- </script>
- <style type="scss" scoped></style>
|