|
@@ -0,0 +1,166 @@
|
|
|
+<script setup lang="ts">
|
|
|
+import { ContentWrap } from '@/components/ContentWrap'
|
|
|
+import { Search } from '@/components/Search'
|
|
|
+import { useI18n } from '@/hooks/web/useI18n'
|
|
|
+import { ElButton, ElTag } from 'element-plus'
|
|
|
+import { Table } from '@/components/Table'
|
|
|
+import { getTableListApi, delTableListApi } from '@/api/table'
|
|
|
+import { useTable } from '@/hooks/web/useTable'
|
|
|
+import { TableData } from '@/api/table/types'
|
|
|
+import { h, reactive, ref } from 'vue'
|
|
|
+import { useRouter } from 'vue-router'
|
|
|
+import { useEmitt } from '@/hooks/web/useEmitt'
|
|
|
+
|
|
|
+defineOptions({
|
|
|
+ name: 'ExamplePage'
|
|
|
+})
|
|
|
+
|
|
|
+const { push } = useRouter()
|
|
|
+
|
|
|
+const { register, tableObject, methods } = useTable<
|
|
|
+ {
|
|
|
+ total: number
|
|
|
+ list: TableData[]
|
|
|
+ },
|
|
|
+ TableData
|
|
|
+>({
|
|
|
+ getListApi: getTableListApi,
|
|
|
+ delListApi: delTableListApi,
|
|
|
+ response: {
|
|
|
+ list: 'list',
|
|
|
+ total: 'total'
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const { getList, setSearchParmas } = methods
|
|
|
+
|
|
|
+getList()
|
|
|
+
|
|
|
+useEmitt({
|
|
|
+ name: 'getList',
|
|
|
+ callback: (type: string) => {
|
|
|
+ if (type === 'add') {
|
|
|
+ tableObject.currentPage = 1
|
|
|
+ }
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const { t } = useI18n()
|
|
|
+
|
|
|
+const searchData: FormSchema[] = [
|
|
|
+ {
|
|
|
+ label: t('exampleDemo.title'),
|
|
|
+ value: '',
|
|
|
+ component: 'Input',
|
|
|
+ field: 'title'
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+const columns = reactive<TableColumn[]>([
|
|
|
+ {
|
|
|
+ field: 'index',
|
|
|
+ label: t('tableDemo.index'),
|
|
|
+ type: 'index'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'title',
|
|
|
+ label: t('tableDemo.title')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'author',
|
|
|
+ label: t('tableDemo.author')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'display_time',
|
|
|
+ label: t('tableDemo.displayTime')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'importance',
|
|
|
+ label: t('tableDemo.importance'),
|
|
|
+ formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
|
+ return h(
|
|
|
+ ElTag,
|
|
|
+ {
|
|
|
+ type: cellValue === 1 ? 'success' : cellValue === 2 ? 'warning' : 'danger'
|
|
|
+ },
|
|
|
+ () =>
|
|
|
+ cellValue === 1
|
|
|
+ ? t('tableDemo.important')
|
|
|
+ : cellValue === 2
|
|
|
+ ? t('tableDemo.good')
|
|
|
+ : t('tableDemo.commonly')
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'pageviews',
|
|
|
+ label: t('tableDemo.pageviews')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'action',
|
|
|
+ width: '260px',
|
|
|
+ label: t('tableDemo.action')
|
|
|
+ }
|
|
|
+])
|
|
|
+
|
|
|
+const AddAction = () => {
|
|
|
+ push('/example/example-add')
|
|
|
+}
|
|
|
+
|
|
|
+const delLoading = ref(false)
|
|
|
+
|
|
|
+const delData = async (row: TableData | null, multiple: boolean) => {
|
|
|
+ tableObject.currentRow = row
|
|
|
+ const { delList, getSelections } = methods
|
|
|
+ const selections = await getSelections()
|
|
|
+ delLoading.value = true
|
|
|
+ await delList(
|
|
|
+ multiple ? selections.map((v) => v.id) : [tableObject.currentRow?.id as string],
|
|
|
+ multiple
|
|
|
+ ).finally(() => {
|
|
|
+ delLoading.value = false
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const action = (row: TableData, type: string) => {
|
|
|
+ push(`/example/example-${type}?id=${row.id}`)
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <ContentWrap>
|
|
|
+ <Search :schema="searchData" @search="setSearchParmas" @reset="setSearchParmas" />
|
|
|
+
|
|
|
+ <div class="mb-10px">
|
|
|
+ <ElButton type="primary" @click="AddAction">{{ t('exampleDemo.add') }}</ElButton>
|
|
|
+ <ElButton :loading="delLoading" type="danger" @click="delData(null, true)">
|
|
|
+ {{ t('exampleDemo.del') }}
|
|
|
+ </ElButton>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <Table
|
|
|
+ v-model:pageSize="tableObject.pageSize"
|
|
|
+ v-model:currentPage="tableObject.currentPage"
|
|
|
+ :columns="columns"
|
|
|
+ :data="tableObject.tableList"
|
|
|
+ :loading="tableObject.loading"
|
|
|
+ :pagination="{
|
|
|
+ total: tableObject.total
|
|
|
+ }"
|
|
|
+ @register="register"
|
|
|
+ >
|
|
|
+ <template #action="{ row }">
|
|
|
+ <ElButton type="primary" @click="action(row, 'edit')">
|
|
|
+ {{ t('exampleDemo.edit') }}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton type="success" @click="action(row, 'detail')">
|
|
|
+ {{ t('exampleDemo.detail') }}
|
|
|
+ </ElButton>
|
|
|
+ <ElButton type="danger" @click="delData(row, false)">
|
|
|
+ {{ t('exampleDemo.del') }}
|
|
|
+ </ElButton>
|
|
|
+ </template>
|
|
|
+ </Table>
|
|
|
+ </ContentWrap>
|
|
|
+</template>
|