2022-07-18 19:06:37 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref } from 'vue'
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
import { useTable } from '@/hooks/web/useTable'
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
import type { RefundVO } from '@/api/pay/refund/types'
|
|
|
|
import { allSchemas } from './refund.data'
|
|
|
|
import * as RefundApi from '@/api/pay/refund'
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
// ========== 列表相关 ==========
|
2022-07-19 22:33:54 +08:00
|
|
|
const { register, tableObject, methods } = useTable<RefundVO>({
|
2022-07-18 19:06:37 +08:00
|
|
|
getListApi: RefundApi.getRefundPageApi,
|
|
|
|
delListApi: RefundApi.deleteRefundApi,
|
|
|
|
exportListApi: RefundApi.exportRefundApi
|
|
|
|
})
|
|
|
|
const { getList, setSearchParams, delList, exportList } = methods
|
|
|
|
|
|
|
|
// 导出操作
|
|
|
|
const handleExport = async () => {
|
|
|
|
await exportList('退款订单.xls')
|
|
|
|
}
|
|
|
|
|
|
|
|
// ========== CRUD 相关 ==========
|
|
|
|
const dialogVisible = ref(false) // 是否显示弹出层
|
|
|
|
const dialogTitle = ref('edit') // 弹出层标题
|
|
|
|
|
|
|
|
// 删除操作
|
|
|
|
const handleDelete = (row: RefundVO) => {
|
|
|
|
delList(row.id, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ========== 详情相关 ==========
|
|
|
|
const detailRef = ref() // 详情 Ref
|
|
|
|
|
|
|
|
// 详情操作
|
|
|
|
const handleDetail = async (row: RefundVO) => {
|
|
|
|
// 设置数据
|
|
|
|
detailRef.value = RefundApi.getRefundApi(row.id)
|
|
|
|
dialogTitle.value = t('action.detail')
|
|
|
|
dialogVisible.value = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// ========== 初始化 ==========
|
|
|
|
getList()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<!-- 搜索工作区 -->
|
|
|
|
<ContentWrap>
|
|
|
|
<Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
|
|
|
|
</ContentWrap>
|
|
|
|
<ContentWrap>
|
|
|
|
<!-- 操作工具栏 -->
|
|
|
|
<div class="mb-10px">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
|
|
|
v-hasPermi="['system:post:export']"
|
|
|
|
:loading="tableObject.exportLoading"
|
|
|
|
@click="handleExport"
|
|
|
|
>
|
|
|
|
<Icon icon="ep:download" class="mr-5px" /> {{ t('action.export') }}
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
<!-- 列表 -->
|
|
|
|
<Table
|
|
|
|
:columns="allSchemas.tableColumns"
|
|
|
|
:selection="false"
|
|
|
|
:data="tableObject.tableList"
|
|
|
|
:loading="tableObject.loading"
|
|
|
|
:pagination="{
|
|
|
|
total: tableObject.total
|
|
|
|
}"
|
|
|
|
v-model:pageSize="tableObject.pageSize"
|
|
|
|
v-model:currentPage="tableObject.currentPage"
|
|
|
|
@register="register"
|
|
|
|
>
|
|
|
|
<template #status="{ row }">
|
|
|
|
<DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" />
|
|
|
|
</template>
|
|
|
|
<template #createTime="{ row }">
|
|
|
|
<span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
|
|
|
|
</template>
|
|
|
|
<template #action="{ row }">
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
|
|
|
v-hasPermi="['system:post:update']"
|
|
|
|
@click="handleDetail(row)"
|
|
|
|
>
|
|
|
|
<Icon icon="ep:view" class="mr-5px" /> {{ t('action.detail') }}
|
|
|
|
</el-button>
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
|
|
|
v-hasPermi="['system:post:delete']"
|
|
|
|
@click="handleDelete(row)"
|
|
|
|
>
|
|
|
|
<Icon icon="ep:delete" class="mr-5px" /> {{ t('action.del') }}
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</Table>
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
<Dialog v-model="dialogVisible" :title="dialogTitle">
|
|
|
|
<!-- 对话框(详情) -->
|
|
|
|
<Descriptions :schema="allSchemas.detailSchema" :data="detailRef">
|
|
|
|
<template #status="{ row }">
|
|
|
|
<DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" />
|
|
|
|
</template>
|
|
|
|
<template #createTime="{ row }">
|
|
|
|
<span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
|
|
|
|
</template>
|
|
|
|
</Descriptions>
|
|
|
|
<!-- 操作按钮 -->
|
|
|
|
<template #footer>
|
|
|
|
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
|
|
|
|
</template>
|
|
|
|
</Dialog>
|
|
|
|
</template>
|