1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div class="">
- <toolbar @onSearch="filterData" />
- <base-table
- class="m-10 bg-w p-20 br-10"
- :columns="columns"
- :items="items"
- :pagination="pagination"
- :page-change="pageChange"
- />
- </div>
- </template>
- <script>
- import toolbar from './toolbar';
- import mxFilterList from '@/mixins/filterList';
- export default {
- name: 'UploadImage',
- components: { toolbar },
- mixins: [
- mxFilterList({
- // fetchList: iGetList // 在下方data再声明一个 fetchList: iGetList 同等效果
- })
- ],
- data() {
- return {
- columns: [
- {
- key: 'photo',
- name: '用户名称',
- width: '160'
- },
- {
- key: 'region',
- name: '手机号',
- width: '180'
- },
- {
- key: 'region',
- name: '反馈内容',
- minWidth: '120'
- },
- {
- key: 'region',
- name: '反馈时间',
- width: '180'
- }
- ]
- };
- }
- };
- </script>
- <style type="scss" scoped></style>
|