table.vue 7.07 KB
Newer Older
水落(YangLei)'s avatar
水落(YangLei) committed
1
<template>
水落(YangLei)'s avatar
水落(YangLei) committed
2
    <div :style="`min-width: ${width}px`" class="tw-overflow-x-auto">
水落(YangLei)'s avatar
水落(YangLei) committed
3
        <my-card v-if="$scopedSlots.search" :class="{ 'tw-mb-2.5': !noMargin }">
水落(YangLei)'s avatar
水落(YangLei) committed
4
            <div class="tw-flex">
水落(YangLei)'s avatar
水落(YangLei) committed
5
                <slot name="search" :query="queryForm" />
水落(YangLei)'s avatar
水落(YangLei) committed
6
            </div>
水落(YangLei)'s avatar
水落(YangLei) committed
7 8 9

            <div class="tw-text-right tw-mt-2">
                <a-space>
水落(YangLei)'s avatar
水落(YangLei) committed
10 11 12 13 14 15 16 17
                    <a-popover v-if="$scopedSlots.moreSearch" trigger="click">
                        <template slot="content">
                            <div :class="$style.moreSearch">
                                <slot name="moreSearch" :query="queryForm" />
                            </div>
                        </template>
                        <a-button>更多查询</a-button>
                    </a-popover>
水落(YangLei)'s avatar
水落(YangLei) committed
18 19 20 21 22 23
                    <a-button @click="reset">重置</a-button>
                    <a-button type="primary" @click="getData">查询</a-button>
                </a-space>
            </div>
        </my-card>

水落(YangLei)'s avatar
水落(YangLei) committed
24
        <my-card :class="noPadding ? 'tw-p-0' : ''" :style="tableCardStyle">
水落(YangLei)'s avatar
水落(YangLei) committed
25 26 27
            <a-space class="tw-mb-2">
                <a-button type="primary" v-if="newBtn" @click="addBtnClick">
                    {{ newBtn.text || '新增' }}
28 29
                </a-button>
                <slot name="operation" />
水落(YangLei)'s avatar
水落(YangLei) committed
30
            </a-space>
31

水落(YangLei)'s avatar
水落(YangLei) committed
32 33 34 35
            <a-table
                :data-source="data"
                :loading="loading"
                v-bind="$attrs"
水落(YangLei)'s avatar
水落(YangLei) committed
36
                :scroll="scroll"
水落(YangLei)'s avatar
水落(YangLei) committed
37
                :rowKey="rowKey"
水落(YangLei)'s avatar
水落(YangLei) committed
38 39
                :pagination="pagination"
                @change="pageChange"
水落(YangLei)'s avatar
水落(YangLei) committed
40
                :row-selection="selected ? rowSelection : undefined"
水落(YangLei)'s avatar
水落(YangLei) committed
41 42
            >
                <slot />
水落(YangLei)'s avatar
水落(YangLei) committed
43 44 45 46
                <a-table-column
                    :title="newButtons.title"
                    v-if="this.newButtons"
                    v-bind="this.newButtons.options"
陈浩玮's avatar
陈浩玮 committed
47 48
                    fixed="right"
                    width="180"
水落(YangLei)'s avatar
水落(YangLei) committed
49
                >
50
                    <template #default="row">
水落(YangLei)'s avatar
水落(YangLei) committed
51
                        <my-ac-btn :row="row" :buttons="newButtons.data" />
52 53
                    </template>
                </a-table-column>
水落(YangLei)'s avatar
水落(YangLei) committed
54 55
            </a-table>
        </my-card>
56 57

        <a-drawer
58
            v-if="$scopedSlots.drawer"
59 60 61 62 63
            placement="right"
            :visible="visible"
            :drawerStyle="drawerStyle"
            :bodyStyle="bodyStyle"
            destroyOnClose
64
            :width="drawerWidth"
65 66
            @close="hidden"
            :maskClosable="false"
水落(YangLei)'s avatar
水落(YangLei) committed
67
            :title="title"
水落(YangLei)'s avatar
水落(YangLei) committed
68
            :afterVisibleChange="afterVisibleChange"
69
        >
70
            <slot name="drawer" :hidden="hidden" :refresh="getData" :type="type" :row="row" />
71
        </a-drawer>
水落(YangLei)'s avatar
水落(YangLei) committed
72 73 74 75 76 77
    </div>
</template>

<script>
import { request, METHOD } from '@/utils/requestUtil';

78 79
const assign = Object.assign;

水落(YangLei)'s avatar
水落(YangLei) committed
80 81 82 83 84
const initQuery = {
    pageSize: 10,
    pageNum: 1,
};

水落(YangLei)'s avatar
水落(YangLei) committed
85 86
const defaultTitle = '新增';

水落(YangLei)'s avatar
水落(YangLei) committed
87 88 89
export default {
    props: {
        url: String,
90
        addBtn: [Object, Boolean],
水落(YangLei)'s avatar
水落(YangLei) committed
91
        buttons: [Array, Object],
92 93
        noPage: Boolean,
        formatData: Function,
水落(YangLei)'s avatar
水落(YangLei) committed
94
        rowKey: [String, Function],
陈浩玮's avatar
地点  
陈浩玮 committed
95
        selected: Object,
96 97 98 99 100
        drawerWidth: {
            type: Number,
            default: 600,
        },
        noPadding: Boolean,
水落(YangLei)'s avatar
水落(YangLei) committed
101
        scroll: Object,
水落(YangLei)'s avatar
水落(YangLei) committed
102
        width: { type: Number, default: 900 },
水落(YangLei)'s avatar
水落(YangLei) committed
103 104 105 106
        defaultQuery: {
            type: Object,
            default: () => ({}),
        },
水落(YangLei)'s avatar
水落(YangLei) committed
107
        noMargin: Boolean,
水落(YangLei)'s avatar
水落(YangLei) committed
108 109 110
    },

    data() {
水落(YangLei)'s avatar
水落(YangLei) committed
111
        const newBtn = this.addBtn ? (typeof this.addBtn === 'object' ? this.addBtn : {}) : this.addBtn;
水落(YangLei)'s avatar
水落(YangLei) committed
112 113 114 115 116
        return {
            initQuery: {
                ...initQuery,
            },
            data: [],
水落(YangLei)'s avatar
水落(YangLei) committed
117
            queryForm: { ...this.defaultQuery },
水落(YangLei)'s avatar
水落(YangLei) committed
118 119
            loading: false,
            total: 0,
120
            visible: false,
水落(YangLei)'s avatar
水落(YangLei) committed
121
            title: newBtn.title ?? defaultTitle,
122 123 124 125 126 127 128 129 130
            drawerStyle: {
                display: 'flex',
                flexDirection: 'column',
                overflowY: 'hidden',
            },
            bodyStyle: {
                flex: 1,
                overflow: 'hidden',
            },
水落(YangLei)'s avatar
水落(YangLei) committed
131
            type: null,
132
            row: null,
水落(YangLei)'s avatar
水落(YangLei) committed
133 134 135 136 137 138 139 140
        };
    },

    mounted() {
        this.getData();
    },

    computed: {
水落(YangLei)'s avatar
水落(YangLei) committed
141 142 143
        newBtn() {
            return this.addBtn ? (typeof this.addBtn === 'object' ? this.addBtn : {}) : this.addBtn;
        },
水落(YangLei)'s avatar
水落(YangLei) committed
144 145 146 147 148 149 150
        newButtons() {
            return this.buttons
                ? Array.isArray(this.buttons)
                    ? { data: this.buttons, title: '操作' }
                    : this.buttons
                : null;
        },
水落(YangLei)'s avatar
水落(YangLei) committed
151
        pagination() {
152 153 154 155 156 157 158 159
            return this.noPage
                ? false
                : {
                      current: this.initQuery.pageNum,
                      pageSize: this.initQuery.pageSize,
                      total: this.total,
                      showQuickJumper: true,
                  };
水落(YangLei)'s avatar
水落(YangLei) committed
160
        },
水落(YangLei)'s avatar
水落(YangLei) committed
161 162 163
        rowSelection() {
            return {
                onChange: (selectedRowKeys, selectedRows) => {
陈浩玮's avatar
地点  
陈浩玮 committed
164
                    this.$emit('update:selected', { keys: selectedRowKeys, rows: selectedRows });
水落(YangLei)'s avatar
水落(YangLei) committed
165 166 167
                },
            };
        },
水落(YangLei)'s avatar
水落(YangLei) committed
168 169 170 171 172 173 174
        tableCardStyle() {
            return this.noMargin
                ? {
                      paddingTop: 0,
                  }
                : {};
        },
水落(YangLei)'s avatar
水落(YangLei) committed
175 176 177 178 179 180
    },

    methods: {
        async getData() {
            this.loading = true;
            try {
181
                this.noPage ? await this.getDataNoPage() : await this.getDataWithPage();
水落(YangLei)'s avatar
水落(YangLei) committed
182 183 184 185 186 187 188 189 190 191 192 193 194
            } catch (error) {
                // todo
            }
            this.loading = false;
        },

        async getDataWithPage() {
            const res = await request(this.url, METHOD.GET, { ...this.initQuery, ...this.queryForm });
            this.total = res.total;
            if (this.formatData) this.data = this.formatData(res);
            else this.data = res.records;
        },

195 196 197 198 199 200
        async getDataNoPage() {
            const res = await request(this.url, METHOD.GET, this.queryForm);
            if (this.formatData) this.data = this.formatData(res);
            else this.data = res;
        },

水落(YangLei)'s avatar
水落(YangLei) committed
201 202 203 204
        pageChange(page) {
            this.initQuery.pageNum = page.current;
            this.getData();
        },
205 206 207

        hidden() {
            this.visible = false;
水落(YangLei)'s avatar
水落(YangLei) committed
208 209 210 211 212 213 214
        },
        afterVisibleChange(visible) {
            if (!visible) {
                this.title = this.addBtn?.title ?? defaultTitle;
                this.type = null;
                this.row = null;
            }
215
        },
水落(YangLei)'s avatar
水落(YangLei) committed
216

217
        show(params) {
218
            this.visible = true;
219
            assign(this, params);
220
        },
水落(YangLei)'s avatar
水落(YangLei) committed
221

222
        reset() {
水落(YangLei)'s avatar
水落(YangLei) committed
223
            this.queryForm = { ...this.defaultQuery };
224 225 226
            this.initQuery = { ...initQuery };
            this.getData();
        },
水落(YangLei)'s avatar
水落(YangLei) committed
227

228 229 230 231 232
        addBtnClick() {
            const { click } = typeof this.addBtn === 'object' ? this.addBtn : {};
            click && click();
            this.visible = true;
        },
水落(YangLei)'s avatar
水落(YangLei) committed
233 234 235
    },
};
</script>
水落(YangLei)'s avatar
水落(YangLei) committed
236 237 238 239 240 241 242 243 244 245 246 247 248

<style module lang="less">
.moreSearch {
    display: flex;
    flex-direction: column;
    width: 400px;
    padding: 15px 0 0 0;

    > div {
        @apply tw-mb-3;
    }
}
</style>