- 添加 .env 及相关文件,配置环境变量 - 添加 .eslintignore 和 .eslintrc.js 文件,配置 ESLint 规则 - 添加 .gitignore 文件,配置 Git忽略项 - 添加 .prettierignore 文件,配置 Prettier 忽略项 - 添加隐私政策文档,详细说明用户数据的收集和使用
338 lines
7.4 KiB
Vue
338 lines
7.4 KiB
Vue
<template>
|
|
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
|
<template #extra>
|
|
<Extra/>
|
|
</template>
|
|
<a-card :bordered="false">
|
|
<!-- 表格 -->
|
|
<ele-pro-table
|
|
ref="tableRef"
|
|
row-key="orderId"
|
|
:columns="columns"
|
|
:datasource="datasource"
|
|
:parse-data="parseData"
|
|
:customRow="customRow"
|
|
tool-class="ele-toolbar-form"
|
|
:scroll="{ x: 1200 }"
|
|
class="sys-org-table"
|
|
:striped="true"
|
|
>
|
|
<template #toolbar>
|
|
<search
|
|
@search="reload"
|
|
:selection="selection"
|
|
:export-data="exportData"
|
|
@remove="removeBatch"
|
|
@done="handleExport"
|
|
/>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'organizationName'">
|
|
{{ record.organizationName || '-' }}
|
|
</template>
|
|
<template v-if="column.key === 'createTime'">
|
|
{{ record.createTime }}
|
|
</template>
|
|
<template v-if="column.key === 'rechargeType'">
|
|
<span v-if="record.rechargeType == 10">自定义</span>
|
|
<span v-if="record.rechargeType == 20">套餐</span>
|
|
</template>
|
|
<template v-if="column.key === 'action'">
|
|
<a-space>
|
|
<a-button @click="openInfo(record)">详情</a-button>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</ele-pro-table>
|
|
</a-card>
|
|
</a-page-header>
|
|
<!-- 订单详情 -->
|
|
<!-- <order-info v-model:visible="showInfo" :data="current" @done="reload" />-->
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {createVNode, ref} from 'vue';
|
|
import {message, Modal} from 'ant-design-vue';
|
|
import {ExclamationCircleOutlined} from '@ant-design/icons-vue';
|
|
import type {EleProTable} from 'ele-admin-pro';
|
|
import type {
|
|
DatasourceFunction,
|
|
ColumnItem
|
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
|
// import Search from './components/search.vue';
|
|
// import OrderInfo from './components/order-info.vue';
|
|
import {
|
|
pageRechargeOrder,
|
|
removeBatchRechargeOrder
|
|
} from '@/api/user/recharge/export';
|
|
import type {
|
|
RechargeOrder,
|
|
RechargeOrderParam
|
|
} from '@/api/user/recharge/export/model';
|
|
import {utils, writeFile} from 'xlsx';
|
|
import {getPageTitle} from "@/utils/common";
|
|
import Extra from "@/views/user/index/components/extra.vue";
|
|
|
|
defineProps<{
|
|
activeKey?: boolean;
|
|
data?: any;
|
|
}>();
|
|
|
|
// 表格实例
|
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
|
|
|
// 表格列配置
|
|
const columns = ref<ColumnItem[]>([
|
|
{
|
|
key: 'index',
|
|
width: 48,
|
|
title: '序号',
|
|
align: 'center',
|
|
fixed: 'left',
|
|
hideInTable: true,
|
|
customRender: ({index}) => index + (tableRef.value?.tableIndex ?? 0)
|
|
},
|
|
{
|
|
title: '用户ID',
|
|
dataIndex: 'userId',
|
|
showSorterTooltip: false
|
|
},
|
|
{
|
|
title: '部门名称',
|
|
dataIndex: 'organizationName',
|
|
key: 'organizationName',
|
|
hideInTable: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '姓名',
|
|
dataIndex: 'realName',
|
|
key: 'realName',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '手机号',
|
|
dataIndex: 'mobile',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '充值金额',
|
|
dataIndex: 'payPrice',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '赠送金额',
|
|
dataIndex: 'giftMoney',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '实际到账',
|
|
dataIndex: 'actualMoney',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '充值方式',
|
|
dataIndex: 'rechargeType',
|
|
key: 'rechargeType',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '操作员',
|
|
dataIndex: 'operator',
|
|
key: 'operator',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '备注',
|
|
dataIndex: 'comments',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '充值时间',
|
|
dataIndex: 'createTime',
|
|
align: 'center',
|
|
width: 180
|
|
}
|
|
]);
|
|
|
|
// 表格选中数据
|
|
const selection = ref<RechargeOrder[]>([]);
|
|
const exportData = ref<RechargeOrder[]>([]);
|
|
// 当前编辑数据
|
|
const current = ref<RechargeOrder | null>(null);
|
|
// 是否显示资产详情
|
|
const showInfo = ref(false);
|
|
// 是否显示编辑弹窗
|
|
// const showEdit = ref(false);
|
|
|
|
// 表格数据源
|
|
const datasource: DatasourceFunction = ({page, limit, where, orders}) => {
|
|
return pageRechargeOrder({
|
|
...where,
|
|
...orders,
|
|
page,
|
|
limit
|
|
});
|
|
};
|
|
|
|
// 表单数据
|
|
// const { form } = useFormData<RechargeOrder>({
|
|
// exportId: undefined
|
|
// });
|
|
|
|
/* 搜索 */
|
|
const reload = (where?: RechargeOrderParam) => {
|
|
selection.value = [];
|
|
tableRef?.value?.reload({where: where});
|
|
};
|
|
|
|
/* 打开编辑弹窗 */
|
|
const openInfo = (row?: RechargeOrder) => {
|
|
current.value = row ?? null;
|
|
showInfo.value = true;
|
|
};
|
|
|
|
/* 数据转为树形结构 */
|
|
const parseData = (data: any) => {
|
|
exportData.value = data?.list;
|
|
return data;
|
|
};
|
|
|
|
/* 批量删除 */
|
|
const removeBatch = () => {
|
|
console.log(selection.value);
|
|
if (!selection.value.length) {
|
|
message.error('请至少选择一条数据');
|
|
return;
|
|
}
|
|
Modal.confirm({
|
|
title: '提示',
|
|
content: '确定要删除选中的记录吗?',
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
maskClosable: true,
|
|
onOk: () => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeBatchRechargeOrder(selection.value.map((d) => d.orderId))
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
// 导出
|
|
const handleExport = () => {
|
|
const array: (string | number)[][] = [
|
|
[
|
|
'用户ID',
|
|
'真实姓名',
|
|
'手机号码',
|
|
'充值金额',
|
|
'赠送金额',
|
|
'实际到账',
|
|
'所属部门',
|
|
'充值时间',
|
|
'充值方式',
|
|
'操作员',
|
|
'备注'
|
|
]
|
|
];
|
|
console.log('>>>>>>>>.', exportData.value);
|
|
exportData.value?.forEach((d: RechargeOrder) => {
|
|
array.push([
|
|
`${d.userId}`,
|
|
`${d.realName}`,
|
|
`${d.phone}`,
|
|
`${d.payPrice}`,
|
|
`${d.giftMoney}`,
|
|
`${d.actualMoney}`,
|
|
`${d.organizationName}`,
|
|
`${d.createTime}`,
|
|
`${d.rechargeType == 10 ? '自定义' : '套餐'}`,
|
|
`${d.operator}`,
|
|
`${d.comments}`
|
|
]);
|
|
});
|
|
const sheetName = '充值记录导出';
|
|
const workbook = {
|
|
SheetNames: [sheetName],
|
|
Sheets: {}
|
|
};
|
|
const sheet = utils.aoa_to_sheet(array);
|
|
workbook.Sheets[sheetName] = sheet;
|
|
// 设置列宽
|
|
sheet['!cols'] = [
|
|
{wch: 10},
|
|
{wch: 10},
|
|
{wch: 10},
|
|
{wch: 10},
|
|
{wch: 20},
|
|
{wch: 40},
|
|
{wch: 10}
|
|
];
|
|
writeFile(workbook, '充值记录导出.xlsx');
|
|
};
|
|
|
|
/* 自定义行属性 */
|
|
const customRow = (record: RechargeOrder) => {
|
|
return {
|
|
// 行点击事件
|
|
onClick: () => {
|
|
// console.log(record);
|
|
},
|
|
// 行双击事件
|
|
onDblclick: () => {
|
|
// openEdit(record);
|
|
}
|
|
};
|
|
};
|
|
|
|
// const query = () => {
|
|
// pageRechargeOrder({}).then((data) => {
|
|
// if (data?.list) {
|
|
// exportData.value = data?.list;
|
|
// }
|
|
// });
|
|
// };
|
|
|
|
// query();
|
|
reload();
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'RechargeOrderIndex'
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
p {
|
|
line-height: 0.8;
|
|
}
|
|
|
|
.sys-org-table :deep(.ant-table-body) {
|
|
overflow: auto !important;
|
|
overflow: overlay !important;
|
|
}
|
|
|
|
.sys-org-table :deep(.ant-table-pagination.ant-pagination) {
|
|
padding: 0 4px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.price-edit {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.comments {
|
|
max-width: 200px;
|
|
}
|
|
</style>
|