209 lines
6.9 KiB
Vue
209 lines
6.9 KiB
Vue
<template>
|
||
<div class="default-main ba-table-box">
|
||
<el-alert class="ba-table-alert" v-if="baTable.table.remark" :title="baTable.table.remark" type="info" show-icon />
|
||
|
||
<!-- 表格顶部菜单 -->
|
||
<!-- 自定义按钮请使用插槽,甚至公共搜索也可以使用具名插槽渲染,参见文档 -->
|
||
<TableHeader
|
||
:buttons="['refresh', 'add', 'edit', 'delete', 'comSearch', 'quickSearch', 'columnDisplay']"
|
||
:quick-search-placeholder="t('Quick search placeholder', { fields: t('mall.item.quick Search Fields') })"
|
||
></TableHeader>
|
||
|
||
<!-- 表格 -->
|
||
<!-- 表格列有多种自定义渲染方式,比如自定义组件、具名插槽等,参见文档 -->
|
||
<!-- 要使用 el-table 组件原有的属性,直接加在 Table 标签上即可 -->
|
||
<Table ref="tableRef"></Table>
|
||
|
||
<!-- 表单 -->
|
||
<PopupForm />
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { onMounted, provide, useTemplateRef } from 'vue'
|
||
import { useI18n } from 'vue-i18n'
|
||
import PopupForm from './popupForm.vue'
|
||
import { baTableApi } from '/@/api/common'
|
||
import { defaultOptButtons } from '/@/components/table'
|
||
import TableHeader from '/@/components/table/header/index.vue'
|
||
import Table from '/@/components/table/index.vue'
|
||
import baTableClass from '/@/utils/baTable'
|
||
|
||
defineOptions({
|
||
name: 'mall/item',
|
||
})
|
||
|
||
const { t } = useI18n()
|
||
const tableRef = useTemplateRef('tableRef')
|
||
const optButtons: OptButton[] = defaultOptButtons(['edit', 'delete'])
|
||
|
||
/**
|
||
* baTable 内包含了表格的所有数据且数据具备响应性,然后通过 provide 注入给了后代组件
|
||
*/
|
||
const baTable = new baTableClass(
|
||
new baTableApi('/admin/mall.Item/'),
|
||
{
|
||
pk: 'id',
|
||
column: [
|
||
{ type: 'selection', align: 'center', operator: false },
|
||
{ label: t('mall.item.id'), prop: 'id', align: 'center', width: 70, operator: 'RANGE', sortable: 'custom' },
|
||
{ label: t('mall.item.title'), prop: 'title', align: 'center', operatorPlaceholder: t('Fuzzy query'), sortable: false, operator: 'LIKE' },
|
||
{
|
||
label: t('mall.item.description'),
|
||
prop: 'description',
|
||
align: 'center',
|
||
minWidth: 80,
|
||
// showOverflowTooltip: true,
|
||
operatorPlaceholder: t('Fuzzy query'),
|
||
sortable: false,
|
||
operator: 'LIKE',
|
||
},
|
||
{
|
||
label: t('mall.item.score'),
|
||
prop: 'score',
|
||
align: 'center',
|
||
minWidth: 90,
|
||
sortable: false,
|
||
operator: 'RANGE',
|
||
},
|
||
{
|
||
label: t('mall.item.type'),
|
||
prop: 'type',
|
||
align: 'center',
|
||
minWidth: 140,
|
||
effect: 'dark',
|
||
custom: { 1: 'success', 2: 'primary', 3: 'info' },
|
||
operator: 'eq',
|
||
sortable: false,
|
||
render: 'tag',
|
||
replaceValue: { '1': t('mall.item.type 1'), '2': t('mall.item.type 2'), '3': t('mall.item.type 3') },
|
||
},
|
||
{
|
||
label: t('mall.item.amount'),
|
||
prop: 'amount',
|
||
align: 'center',
|
||
sortable: false,
|
||
operator: 'RANGE',
|
||
},
|
||
{
|
||
label: t('mall.item.multiplier'),
|
||
prop: 'multiplier',
|
||
align: 'center',
|
||
sortable: false,
|
||
operator: 'eq',
|
||
},
|
||
{
|
||
label: t('mall.item.category'),
|
||
prop: 'category',
|
||
align: 'center',
|
||
sortable: false,
|
||
operator: 'LIKE',
|
||
operatorPlaceholder: t('Fuzzy query'),
|
||
},
|
||
{
|
||
label: t('mall.item.category_title'),
|
||
prop: 'category_title',
|
||
align: 'center',
|
||
sortable: false,
|
||
operator: 'LIKE',
|
||
operatorPlaceholder: t('Fuzzy query'),
|
||
},
|
||
{
|
||
label: t('mall.item.status'),
|
||
prop: 'status',
|
||
align: 'center',
|
||
operator: 'eq',
|
||
sortable: false,
|
||
render: 'switch',
|
||
replaceValue: { '0': t('mall.item.status 0'), '1': t('mall.item.status 1') },
|
||
},
|
||
{
|
||
label: t('mall.item.remark'),
|
||
prop: 'remark',
|
||
align: 'center',
|
||
showOverflowTooltip: true,
|
||
operatorPlaceholder: t('Fuzzy query'),
|
||
sortable: false,
|
||
operator: 'LIKE',
|
||
},
|
||
{
|
||
label: t('mall.item.image'),
|
||
prop: 'image',
|
||
align: 'center',
|
||
render: 'image',
|
||
operator: false,
|
||
},
|
||
{
|
||
label: t('mall.item.stock'),
|
||
prop: 'stock',
|
||
align: 'center',
|
||
sortable: false,
|
||
operator: 'RANGE',
|
||
},
|
||
{
|
||
label: t('mall.item.admin__username'),
|
||
prop: 'admin.username',
|
||
align: 'center',
|
||
minWidth: 100,
|
||
operatorPlaceholder: t('Fuzzy query'),
|
||
render: 'tags',
|
||
operator: 'LIKE',
|
||
comSearchRender: 'string',
|
||
},
|
||
{ label: t('mall.item.sort'), prop: 'sort', align: 'center', sortable: false, operator: 'RANGE' },
|
||
{
|
||
label: t('mall.item.create_time'),
|
||
prop: 'create_time',
|
||
align: 'center',
|
||
render: 'datetime',
|
||
operator: 'RANGE',
|
||
comSearchRender: 'datetime',
|
||
sortable: 'custom',
|
||
width: 160,
|
||
timeFormat: 'yyyy-mm-dd hh:MM:ss',
|
||
},
|
||
{
|
||
label: t('mall.item.update_time'),
|
||
prop: 'update_time',
|
||
align: 'center',
|
||
render: 'datetime',
|
||
operator: 'RANGE',
|
||
comSearchRender: 'datetime',
|
||
sortable: 'custom',
|
||
width: 160,
|
||
timeFormat: 'yyyy-mm-dd hh:MM:ss',
|
||
},
|
||
{
|
||
label: t('Operate'),
|
||
align: 'center',
|
||
width: 80,
|
||
render: 'buttons',
|
||
buttons: optButtons,
|
||
operator: false,
|
||
fixed: 'right',
|
||
},
|
||
],
|
||
dblClickNotEditColumn: [undefined, 'status'],
|
||
},
|
||
{
|
||
defaultItems: {
|
||
stock: 0,
|
||
sort: 100,
|
||
},
|
||
}
|
||
)
|
||
|
||
provide('baTable', baTable)
|
||
|
||
onMounted(() => {
|
||
baTable.table.ref = tableRef.value
|
||
baTable.mount()
|
||
baTable.getData()?.then(() => {
|
||
baTable.initSort()
|
||
baTable.dragSort()
|
||
})
|
||
})
|
||
</script>
|
||
|
||
<style scoped lang="scss"></style>
|