123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div class="default-main ">
- <el-alert class="ba-table-alert" v-if="baTable.table.remark" :title="baTable.table.remark" type="info"
- show-icon/>
- <el-row>
- <el-col :span="24">
- <!-- 表格顶部菜单 -->
- <TableHeader :buttons="['refresh', 'add', 'edit', 'delete', 'comSearch']"
- quick-search-placeholder="通过标题模糊搜索"
- @action="baTable.onTableHeaderAction"/>
- <!-- 表格 -->
- <!-- 要使用`el-table`组件原有的属性,直接加在Table标签上即可 -->
- <Table @action="baTable.onTableAction"/>
- </el-col>
- </el-row>
- <!-- 表单 -->
- <PopupForm ref="formRef"/>
- </div>
- </template>
- <script setup lang="ts">
- import {ref, onMounted, provide} from 'vue'
- import {orderExpress} from '/@/api/controllerUrls'
- import Table from '/@/components/table/index.vue'
- import TableHeader from '/@/components/table/header/index.vue'
- import {defaultOptButtons} from '/@/components/table'
- import PopupForm from './popupForm.vue'
- import {baTableApi} from '/@/api/common'
- import baTableClass from '/@/utils/baTable'
- const baTable = new baTableClass(
- new baTableApi(orderExpress),
- {
- dblClickNotEditColumn: [undefined, 'status'],
- column: [
- {type: 'selection', align: 'center', operator: false},
- {label: '所在区(县)', prop: 'expressName', align: 'left', operator: 'LIKE'},
- {label: '小区名称', prop: 'expressName', align: 'left', operator: 'LIKE'},
- {label: '楼号', prop: 'expressTypeName', align: 'center', operator: false},
- {label: '地图', prop: 'expressTypeName', align: 'center', operator: false},
- {label: '创建人', prop: 'creatorName', align: 'center', width: '120', operator: false},
- {label: '创建时间', prop: 'createTime', align: 'center', width: '160', operator: false},
- {
- label: '操作',
- align: 'center',
- width: '160',
- render: 'buttons',
- buttons: defaultOptButtons(),
- operator: false
- },
- ],
- },
- {
- defaultItems: {},
- },
- {
- // 获得编辑数据后
- requestEdit: () => {
- if (baTable.form.items && !baTable.form.items.icon) baTable.form.items.icon = 'el-icon-Minus'
- },
- }
- )
- provide('baTable', baTable)
- onMounted(() => {
- baTable.mount()
- baTable.getIndex()
- })
- </script>
- <style scoped lang="scss"></style>
|