feat(search): 添加搜索组件导出功能
- 在搜索组件中添加导出XLS按钮 - 集成xlsx库实现数据导出功能 - 添加货币格式化工具函数toMoney - 添加状态转换工具函数toApplyStatus和toPayType - 实现handleExport方法查询并导出数据为Excel文件 - 更新搜索表单参数配置添加分页限制 - 添加表格列配置设置最小宽度 - 修改状态标签显示文本将"用户取消"改为"已驳回" - 添加applyStatus为50的已取消状态标签显示
This commit is contained in:
@@ -27,8 +27,9 @@
|
||||
<a-tag v-if="record.applyStatus === 20" color="success"
|
||||
>审核通过</a-tag
|
||||
>
|
||||
<a-tag v-if="record.applyStatus === 30" color="error">用户取消</a-tag>
|
||||
<a-tag v-if="record.applyStatus === 30" color="error">已驳回</a-tag>
|
||||
<a-tag v-if="record.applyStatus === 40">已打款</a-tag>
|
||||
<a-tag v-if="record.applyStatus === 50" color="error">已取消</a-tag>
|
||||
</template>
|
||||
<template v-if="column.key === 'userInfo'">
|
||||
<a-space>
|
||||
|
||||
Reference in New Issue
Block a user