feat(shop): 新增分销商提现管理功能
- 在 shopDealerWithdraw 模型中增加用户真实姓名、昵称、手机号、头像字段- 增加微信账号和姓名字段用于微信提现- 添加支付凭证图片和备注字段以支持打款记录 - 修改 auditTime 类型为 any以适配多种时间格式 - 新增 shopDealerWithdraw 页面及组件实现提现申请的增删改查 - 实现提现申请的状态管理(待审核、审核通过、驳回、已打款)- 支持根据不同打款方式(微信、支付宝、银行卡)展示相应信息 - 添加提现记录的导入功能组件 - 实现提现申请的批量删除与状态更新操作 - 增加表格列显示用户信息、收款信息、创建时间等关键数据 - 提供编辑弹窗用于查看和修改提现申请详情 - 引入搜索组件优化提现记录筛选体验
This commit is contained in:
@@ -8,6 +8,14 @@ export interface ShopDealerWithdraw {
|
|||||||
id?: number;
|
id?: number;
|
||||||
// 分销商用户ID
|
// 分销商用户ID
|
||||||
userId?: number;
|
userId?: number;
|
||||||
|
// 真实姓名
|
||||||
|
realName?: string;
|
||||||
|
// 昵称
|
||||||
|
nickname?: string;
|
||||||
|
// 手机号码
|
||||||
|
phone?: string;
|
||||||
|
// 头像
|
||||||
|
avatar?: string;
|
||||||
// 提现金额
|
// 提现金额
|
||||||
money?: string;
|
money?: string;
|
||||||
// 打款方式 (10微信 20支付宝 30银行卡)
|
// 打款方式 (10微信 20支付宝 30银行卡)
|
||||||
@@ -16,6 +24,10 @@ export interface ShopDealerWithdraw {
|
|||||||
alipayName?: string;
|
alipayName?: string;
|
||||||
// 支付宝账号
|
// 支付宝账号
|
||||||
alipayAccount?: string;
|
alipayAccount?: string;
|
||||||
|
// 微信姓名
|
||||||
|
wechatAccount?: string;
|
||||||
|
// 微信账号
|
||||||
|
wechatName?: string;
|
||||||
// 开户行名称
|
// 开户行名称
|
||||||
bankName?: string;
|
bankName?: string;
|
||||||
// 银行开户名
|
// 银行开户名
|
||||||
@@ -25,11 +37,15 @@ export interface ShopDealerWithdraw {
|
|||||||
// 申请状态 (10待审核 20审核通过 30驳回 40已打款)
|
// 申请状态 (10待审核 20审核通过 30驳回 40已打款)
|
||||||
applyStatus?: number;
|
applyStatus?: number;
|
||||||
// 审核时间
|
// 审核时间
|
||||||
auditTime?: number;
|
auditTime?: any;
|
||||||
// 驳回原因
|
// 驳回原因
|
||||||
rejectReason?: string;
|
rejectReason?: string;
|
||||||
// 来源客户端(APP、H5、小程序等)
|
// 来源客户端(APP、H5、小程序等)
|
||||||
platform?: string;
|
platform?: string;
|
||||||
|
// 上传支付凭证
|
||||||
|
image?: string;
|
||||||
|
// 备注
|
||||||
|
comments?: string;
|
||||||
// 租户id
|
// 租户id
|
||||||
tenantId?: number;
|
tenantId?: number;
|
||||||
// 创建时间
|
// 创建时间
|
||||||
|
|||||||
@@ -186,6 +186,12 @@
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd')
|
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '修改时间',
|
||||||
|
dataIndex: 'updateTime',
|
||||||
|
key: 'updateTime',
|
||||||
|
align: 'center',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
|
|||||||
@@ -182,25 +182,3 @@ const openImport = () => {
|
|||||||
showImport.value = true;
|
showImport.value = true;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.search-container {
|
|
||||||
background: #fff;
|
|
||||||
padding: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
|
|
||||||
.search-form {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
|
|
||||||
:deep(.ant-form-item) {
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.action-buttons {
|
|
||||||
border-top: 1px solid #f0f0f0;
|
|
||||||
padding-top: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
83
src/views/sdy/shopDealerWithdraw/components/Import.vue
Normal file
83
src/views/sdy/shopDealerWithdraw/components/Import.vue
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
<!-- 经销商订单导入弹窗 -->
|
||||||
|
<template>
|
||||||
|
<ele-modal
|
||||||
|
:width="520"
|
||||||
|
:footer="null"
|
||||||
|
title="导入分销订单"
|
||||||
|
:visible="visible"
|
||||||
|
@update:visible="updateVisible"
|
||||||
|
>
|
||||||
|
<a-spin :spinning="loading">
|
||||||
|
<a-upload-dragger
|
||||||
|
accept=".xls,.xlsx"
|
||||||
|
:show-upload-list="false"
|
||||||
|
:customRequest="doUpload"
|
||||||
|
style="padding: 24px 0; margin-bottom: 16px"
|
||||||
|
>
|
||||||
|
<p class="ant-upload-drag-icon">
|
||||||
|
<cloud-upload-outlined/>
|
||||||
|
</p>
|
||||||
|
<p class="ant-upload-hint">将文件拖到此处,或点击上传</p>
|
||||||
|
</a-upload-dragger>
|
||||||
|
<div class="ant-upload-text text-gray-400">
|
||||||
|
<div>1、必须按<a href="https://oss.wsdns.cn/20251018/408b805ec3cd4084a4dc686e130af578.xlsx" target="_blank">导入模版</a>的格式上传</div>
|
||||||
|
<div>2、导入成功确认结算完成佣金的发放</div>
|
||||||
|
</div>
|
||||||
|
</a-spin>
|
||||||
|
</ele-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {ref} from 'vue';
|
||||||
|
import {message} from 'ant-design-vue/es';
|
||||||
|
import {CloudUploadOutlined} from '@ant-design/icons-vue';
|
||||||
|
import {importSdyDealerOrder} from "@/api/sdy/sdyDealerOrder";
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'done'): void;
|
||||||
|
(e: 'update:visible', visible: boolean): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
// 是否打开弹窗
|
||||||
|
visible: boolean;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 导入请求状态
|
||||||
|
const loading = ref(false);
|
||||||
|
|
||||||
|
/* 上传 */
|
||||||
|
const doUpload = ({file}) => {
|
||||||
|
if (
|
||||||
|
![
|
||||||
|
'application/vnd.ms-excel',
|
||||||
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
||||||
|
].includes(file.type)
|
||||||
|
) {
|
||||||
|
message.error('只能选择 excel 文件');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (file.size / 1024 / 1024 > 10) {
|
||||||
|
message.error('大小不能超过 10MB');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
loading.value = true;
|
||||||
|
importSdyDealerOrder(file)
|
||||||
|
.then((msg) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.success(msg);
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 更新 visible */
|
||||||
|
const updateVisible = (value: boolean) => {
|
||||||
|
emit('update:visible', value);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
106
src/views/sdy/shopDealerWithdraw/components/search.vue
Normal file
106
src/views/sdy/shopDealerWithdraw/components/search.vue
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex items-center gap-20">
|
||||||
|
<!-- 搜索表单 -->
|
||||||
|
<a-form
|
||||||
|
:model="where"
|
||||||
|
layout="inline"
|
||||||
|
class="search-form"
|
||||||
|
@finish="handleSearch"
|
||||||
|
>
|
||||||
|
<a-form-item>
|
||||||
|
<a-space>
|
||||||
|
<a-button
|
||||||
|
danger
|
||||||
|
class="ele-btn-icon"
|
||||||
|
v-if="selection.length > 0"
|
||||||
|
:disabled="selection?.length === 0"
|
||||||
|
@click="removeBatch"
|
||||||
|
>
|
||||||
|
<template #icon>
|
||||||
|
<DeleteOutlined/>
|
||||||
|
</template>
|
||||||
|
<span>批量删除</span>
|
||||||
|
</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item>
|
||||||
|
<a-space>
|
||||||
|
<a-input-search
|
||||||
|
allow-clear
|
||||||
|
placeholder="请输入用户ID"
|
||||||
|
style="width: 240px"
|
||||||
|
v-model:value="where.keywords"
|
||||||
|
@search="handleSearch"
|
||||||
|
/>
|
||||||
|
<a-button @click="resetSearch">
|
||||||
|
重置
|
||||||
|
</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 导入弹窗 -->
|
||||||
|
<Import v-model:visible="showImport" @done="emit('importDone')"/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {ref} from 'vue';
|
||||||
|
import {
|
||||||
|
DeleteOutlined
|
||||||
|
} from '@ant-design/icons-vue';
|
||||||
|
import Import from './Import.vue';
|
||||||
|
import useSearch from "@/utils/use-search";
|
||||||
|
import {ShopDealerWithdrawParam} from "@/api/shop/shopDealerWithdraw/model";
|
||||||
|
|
||||||
|
withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
// 选中的数据
|
||||||
|
selection?: any[];
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
selection: () => []
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'search', where?: ShopDealerWithdrawParam): void;
|
||||||
|
(e: 'batchSettle'): void;
|
||||||
|
(e: 'export'): void;
|
||||||
|
(e: 'importDone'): void;
|
||||||
|
(e: 'remove'): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 是否显示导入弹窗
|
||||||
|
const showImport = ref(false);
|
||||||
|
|
||||||
|
// 搜索表单
|
||||||
|
const {where, resetFields} = useSearch<ShopDealerWithdrawParam>({
|
||||||
|
keywords: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
// 搜索
|
||||||
|
const handleSearch = () => {
|
||||||
|
const searchParams = {...where};
|
||||||
|
// 清除空值
|
||||||
|
Object.keys(searchParams).forEach(key => {
|
||||||
|
if (searchParams[key] === '' || searchParams[key] === undefined) {
|
||||||
|
delete searchParams[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
emit('search', searchParams);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 重置搜索
|
||||||
|
const resetSearch = () => {
|
||||||
|
resetFields();
|
||||||
|
emit('search', {});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 批量删除
|
||||||
|
const removeBatch = () => {
|
||||||
|
emit('remove');
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,682 @@
|
|||||||
|
<!-- 编辑弹窗 -->
|
||||||
|
<template>
|
||||||
|
<ele-modal
|
||||||
|
:width="1000"
|
||||||
|
:visible="visible"
|
||||||
|
:maskClosable="false"
|
||||||
|
:maxable="maxable"
|
||||||
|
:title="isUpdate ? '编辑提现申请' : '新增提现申请'"
|
||||||
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
|
@update:visible="updateVisible"
|
||||||
|
@ok="save"
|
||||||
|
>
|
||||||
|
<a-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="form"
|
||||||
|
:rules="rules"
|
||||||
|
:label-col="{ span: 6 }"
|
||||||
|
:wrapper-col="{ span: 18 }"
|
||||||
|
>
|
||||||
|
<!-- 基本信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">基本信息</span>
|
||||||
|
</a-divider>
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="备注" name="comments">
|
||||||
|
<div class="text-red-500">{{ form.comments }}</div>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<!-- 收款信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">收款信息</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<!-- 微信收款信息 -->
|
||||||
|
<div v-if="form.payType === 10" class="payment-info wechat-info">
|
||||||
|
<a-alert
|
||||||
|
message="微信收款信息"
|
||||||
|
description="请确保微信账号信息准确,以免影响到账"
|
||||||
|
type="success"
|
||||||
|
show-icon
|
||||||
|
style="margin-bottom: 16px"
|
||||||
|
/>
|
||||||
|
<a-form-item label="微信号" name="wechatAccount">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入微信号"
|
||||||
|
v-model:value="form.wechatAccount"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="微信昵称" name="wechatName">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入微信昵称"
|
||||||
|
v-model:value="form.wechatName"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 支付宝收款信息 -->
|
||||||
|
<div v-if="form.payType === 20" class="payment-info alipay-info">
|
||||||
|
<a-alert
|
||||||
|
message="支付宝收款信息"
|
||||||
|
description="请确保支付宝账号信息准确,姓名需与实名认证一致"
|
||||||
|
type="info"
|
||||||
|
show-icon
|
||||||
|
style="margin-bottom: 16px"
|
||||||
|
/>
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="支付宝姓名" name="alipayName">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入支付宝实名姓名"
|
||||||
|
disabled
|
||||||
|
v-model:value="form.alipayName"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="支付宝账号" name="alipayAccount">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入支付宝账号"
|
||||||
|
disabled
|
||||||
|
v-model:value="form.alipayAccount"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 银行卡收款信息 -->
|
||||||
|
<div v-if="form.payType === 30" class="payment-info bank-info">
|
||||||
|
<a-alert
|
||||||
|
message="银行卡收款信息"
|
||||||
|
description="请确保银行卡信息准确,开户名需与身份证姓名一致"
|
||||||
|
type="warning"
|
||||||
|
show-icon
|
||||||
|
style="margin-bottom: 16px"
|
||||||
|
/>
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="开户行名称" name="bankName">
|
||||||
|
{{ form.bankName }}
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="银行开户名" name="bankAccount">
|
||||||
|
{{ form.bankAccount }}
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="银行卡号" name="bankCard">
|
||||||
|
{{ form.bankCard }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 审核信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">审核信息</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="申请状态" name="applyStatus">
|
||||||
|
<a-select v-model:value="form.applyStatus" :disabled="form.applyStatus == 40 || form.applyStatus == 30"
|
||||||
|
placeholder="请选择申请状态">
|
||||||
|
<a-select-option :value="10">
|
||||||
|
<div class="status-option">
|
||||||
|
<a-tag color="orange">待审核</a-tag>
|
||||||
|
<span>等待审核</span>
|
||||||
|
</div>
|
||||||
|
</a-select-option>
|
||||||
|
<a-select-option :value="20">
|
||||||
|
<div class="status-option">
|
||||||
|
<a-tag color="success">审核通过</a-tag>
|
||||||
|
<span>审核通过</span>
|
||||||
|
</div>
|
||||||
|
</a-select-option>
|
||||||
|
<a-select-option :value="30">
|
||||||
|
<div class="status-option">
|
||||||
|
<a-tag color="error">审核驳回</a-tag>
|
||||||
|
<span>审核驳回</span>
|
||||||
|
</div>
|
||||||
|
</a-select-option>
|
||||||
|
<a-select-option :value="40">
|
||||||
|
<div class="status-option">
|
||||||
|
<a-tag>已打款</a-tag>
|
||||||
|
<span>已完成打款</span>
|
||||||
|
</div>
|
||||||
|
</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="驳回原因" name="rejectReason" v-if="form.applyStatus === 30">
|
||||||
|
<a-textarea
|
||||||
|
v-model:value="form.rejectReason"
|
||||||
|
placeholder="请输入驳回原因"
|
||||||
|
:rows="3"
|
||||||
|
:maxlength="200"
|
||||||
|
show-count
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="上传支付凭证" name="image" v-if="form.applyStatus === 40">
|
||||||
|
<SelectFile
|
||||||
|
:placeholder="`请选择图片`"
|
||||||
|
:limit="2"
|
||||||
|
:data="files"
|
||||||
|
@done="chooseFile"
|
||||||
|
@del="onDeleteFile"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<!-- 提现预览 -->
|
||||||
|
<div class="withdraw-preview" v-if="form.money && form.payType">
|
||||||
|
<a-alert
|
||||||
|
:type="getPreviewAlertType()"
|
||||||
|
:message="getPreviewText()"
|
||||||
|
show-icon
|
||||||
|
style="margin-top: 16px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</a-form>
|
||||||
|
</ele-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {ref, reactive, watch} from 'vue';
|
||||||
|
import {Form, message} from 'ant-design-vue';
|
||||||
|
import {assignObject, uuid} from 'ele-admin-pro';
|
||||||
|
import {addShopDealerWithdraw, updateShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw';
|
||||||
|
import {ShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw/model';
|
||||||
|
import {FormInstance} from 'ant-design-vue/es/form';
|
||||||
|
import {ItemType} from 'ele-admin-pro/es/ele-image-upload/types';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import {FileRecord} from "@/api/system/file/model";
|
||||||
|
|
||||||
|
// 是否是修改
|
||||||
|
const isUpdate = ref(false);
|
||||||
|
const useForm = Form.useForm;
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
// 弹窗是否打开
|
||||||
|
visible: boolean;
|
||||||
|
// 修改回显的数据
|
||||||
|
data?: ShopDealerWithdraw | null;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'done'): void;
|
||||||
|
(e: 'update:visible', visible: boolean): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 提交状态
|
||||||
|
const loading = ref<boolean>(false);
|
||||||
|
const isSuccess = ref<boolean>(false);
|
||||||
|
// 是否显示最大化切换按钮
|
||||||
|
const maxable = ref(true);
|
||||||
|
const files = ref<ItemType[]>([]);
|
||||||
|
// 表格选中数据
|
||||||
|
const formRef = ref<FormInstance | null>(null);
|
||||||
|
|
||||||
|
// 表单数据
|
||||||
|
const form = reactive<ShopDealerWithdraw>({
|
||||||
|
id: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
realName: undefined,
|
||||||
|
nickname: undefined,
|
||||||
|
phone: undefined,
|
||||||
|
avatar: undefined,
|
||||||
|
money: undefined,
|
||||||
|
payType: undefined,
|
||||||
|
// 微信相关
|
||||||
|
wechatAccount: '',
|
||||||
|
wechatName: '',
|
||||||
|
// 支付宝相关
|
||||||
|
alipayName: '',
|
||||||
|
alipayAccount: '',
|
||||||
|
// 银行卡相关
|
||||||
|
bankName: '',
|
||||||
|
bankAccount: '',
|
||||||
|
bankCard: '',
|
||||||
|
// 审核相关
|
||||||
|
applyStatus: 10,
|
||||||
|
auditTime: undefined,
|
||||||
|
rejectReason: '',
|
||||||
|
platform: '',
|
||||||
|
comments: '',
|
||||||
|
tenantId: undefined,
|
||||||
|
createTime: undefined,
|
||||||
|
updateTime: undefined
|
||||||
|
});
|
||||||
|
|
||||||
|
/* 更新visible */
|
||||||
|
const updateVisible = (value: boolean) => {
|
||||||
|
emit('update:visible', value);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 表单验证规则
|
||||||
|
const rules = reactive({
|
||||||
|
userId: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入分销商用户ID',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
money: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入提现金额',
|
||||||
|
trigger: 'blur'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (value && value <= 0) {
|
||||||
|
return Promise.reject('提现金额必须大于0');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
payType: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择打款方式',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
platform: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择来源平台',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// 微信验证
|
||||||
|
wechatAccount: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 10 && !value) {
|
||||||
|
return Promise.reject('请输入微信号');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
wechatName: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 10 && !value) {
|
||||||
|
return Promise.reject('请输入微信昵称');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// 支付宝验证
|
||||||
|
alipayName: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 20 && !value) {
|
||||||
|
return Promise.reject('请输入支付宝姓名');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
alipayAccount: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 20 && !value) {
|
||||||
|
return Promise.reject('请输入支付宝账号');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// 银行卡验证
|
||||||
|
bankName: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 30 && !value) {
|
||||||
|
return Promise.reject('请输入开户行名称');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
bankAccount: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 30 && !value) {
|
||||||
|
return Promise.reject('请输入银行开户名');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
bankCard: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.payType === 30 && !value) {
|
||||||
|
return Promise.reject('请输入银行卡号');
|
||||||
|
}
|
||||||
|
if (form.payType === 30 && value && !/^\d{16,19}$/.test(value)) {
|
||||||
|
return Promise.reject('银行卡号格式不正确');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
applyStatus: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择申请状态',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
rejectReason: [
|
||||||
|
{
|
||||||
|
validator: (rule: any, value: any) => {
|
||||||
|
if (form.applyStatus === 30 && !value) {
|
||||||
|
return Promise.reject('驳回时必须填写驳回原因');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
image: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请上传打款凭证',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
/* 打款方式改变时的处理 */
|
||||||
|
const onPayTypeChange = (e: any) => {
|
||||||
|
const payType = e.target.value;
|
||||||
|
|
||||||
|
// 清空其他支付方式的信息
|
||||||
|
if (payType !== 10) {
|
||||||
|
form.alipayAccount = '';
|
||||||
|
form.alipayName = '';
|
||||||
|
}
|
||||||
|
if (payType !== 20) {
|
||||||
|
form.alipayName = '';
|
||||||
|
form.alipayAccount = '';
|
||||||
|
}
|
||||||
|
if (payType !== 30) {
|
||||||
|
form.bankName = '';
|
||||||
|
form.bankAccount = '';
|
||||||
|
form.bankCard = '';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const chooseFile = (data: FileRecord) => {
|
||||||
|
files.value.push({
|
||||||
|
uid: data.id,
|
||||||
|
url: data.url,
|
||||||
|
status: 'done'
|
||||||
|
});
|
||||||
|
form.image = JSON.stringify(files.value.map((d) => d.url));
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDeleteFile = (index: number) => {
|
||||||
|
files.value.splice(index, 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 获取预览提示类型 */
|
||||||
|
const getPreviewAlertType = () => {
|
||||||
|
if (!form.applyStatus) return 'info';
|
||||||
|
|
||||||
|
switch (form.applyStatus) {
|
||||||
|
case 10:
|
||||||
|
return 'processing';
|
||||||
|
case 20:
|
||||||
|
return 'success';
|
||||||
|
case 30:
|
||||||
|
return 'error';
|
||||||
|
case 40:
|
||||||
|
return 'success';
|
||||||
|
default:
|
||||||
|
return 'info';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 获取预览文本 */
|
||||||
|
const getPreviewText = () => {
|
||||||
|
if (!form.money || !form.payType) return '';
|
||||||
|
|
||||||
|
const amount = parseFloat(form.money.toString()).toFixed(2);
|
||||||
|
const payTypeMap = {
|
||||||
|
10: '微信',
|
||||||
|
20: '支付宝',
|
||||||
|
30: '银行卡'
|
||||||
|
};
|
||||||
|
const statusMap = {
|
||||||
|
10: '待审核',
|
||||||
|
20: '审核通过',
|
||||||
|
30: '审核驳回',
|
||||||
|
40: '已打款'
|
||||||
|
};
|
||||||
|
|
||||||
|
const payTypeName = payTypeMap[form.payType] || '未知方式';
|
||||||
|
const statusName = statusMap[form.applyStatus] || '未知状态';
|
||||||
|
|
||||||
|
return `提现金额:¥${amount},打款方式:${payTypeName},当前状态:${statusName}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const {resetFields} = useForm(form, rules);
|
||||||
|
|
||||||
|
/* 保存编辑 */
|
||||||
|
const save = () => {
|
||||||
|
if (!formRef.value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (isSuccess.value) {
|
||||||
|
console.log('isSuccess')
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (form.realName == '' || form.realName == null) {
|
||||||
|
message.error('该用户未完成实名认证!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
formRef.value
|
||||||
|
.validate()
|
||||||
|
.then(() => {
|
||||||
|
loading.value = true;
|
||||||
|
const formData = {
|
||||||
|
...form
|
||||||
|
};
|
||||||
|
|
||||||
|
// 处理时间字段转换
|
||||||
|
if (formData.auditTime && dayjs.isDayjs(formData.auditTime)) {
|
||||||
|
formData.auditTime = formData.auditTime.valueOf();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 根据支付方式清理不相关字段
|
||||||
|
if (formData.payType !== 10) {
|
||||||
|
delete formData.wechatAccount;
|
||||||
|
delete formData.wechatName;
|
||||||
|
}
|
||||||
|
if (formData.payType !== 20) {
|
||||||
|
delete formData.alipayName;
|
||||||
|
delete formData.alipayAccount;
|
||||||
|
}
|
||||||
|
if (formData.payType !== 30) {
|
||||||
|
delete formData.bankName;
|
||||||
|
delete formData.bankAccount;
|
||||||
|
delete formData.bankCard;
|
||||||
|
}
|
||||||
|
|
||||||
|
const saveOrUpdate = isUpdate.value ? updateShopDealerWithdraw : addShopDealerWithdraw;
|
||||||
|
saveOrUpdate(formData)
|
||||||
|
.then((msg) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.success(msg);
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.visible,
|
||||||
|
(visible) => {
|
||||||
|
if (visible) {
|
||||||
|
files.value = [];
|
||||||
|
if (props.data) {
|
||||||
|
assignObject(form, props.data);
|
||||||
|
// 处理时间字段
|
||||||
|
if (props.data.auditTime) {
|
||||||
|
form.auditTime = dayjs(props.data.auditTime);
|
||||||
|
}
|
||||||
|
if (props.data.image) {
|
||||||
|
const arr = JSON.parse(props.data.image);
|
||||||
|
arr.map((url: string) => {
|
||||||
|
files.value.push({
|
||||||
|
uid: uuid(),
|
||||||
|
url: url,
|
||||||
|
status: 'done'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
isSuccess.value = true;
|
||||||
|
}
|
||||||
|
isUpdate.value = true;
|
||||||
|
} else {
|
||||||
|
// 重置为默认值
|
||||||
|
Object.assign(form, {
|
||||||
|
id: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
money: undefined,
|
||||||
|
payType: undefined,
|
||||||
|
wechatAccount: '',
|
||||||
|
wechatName: '',
|
||||||
|
alipayName: '',
|
||||||
|
alipayAccount: '',
|
||||||
|
bankName: '',
|
||||||
|
bankAccount: '',
|
||||||
|
bankCard: '',
|
||||||
|
applyStatus: 10,
|
||||||
|
auditTime: undefined,
|
||||||
|
rejectReason: '',
|
||||||
|
platform: '',
|
||||||
|
image: '',
|
||||||
|
tenantId: undefined,
|
||||||
|
createTime: undefined,
|
||||||
|
updateTime: undefined
|
||||||
|
});
|
||||||
|
isUpdate.value = false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
resetFields();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{immediate: true}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.platform-option,
|
||||||
|
.status-option {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.ant-tag {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #666;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-info {
|
||||||
|
background: #fafafa;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: 6px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
|
||||||
|
&.wechat-info {
|
||||||
|
border-left: 3px solid #52c41a;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.alipay-info {
|
||||||
|
border-left: 3px solid #1890ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.bank-info {
|
||||||
|
border-left: 3px solid #faad14;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.withdraw-preview {
|
||||||
|
:deep(.ant-alert) {
|
||||||
|
.ant-alert-message {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-divider-horizontal.ant-divider-with-text-left) {
|
||||||
|
margin: 24px 0 16px 0;
|
||||||
|
|
||||||
|
.ant-divider-inner-text {
|
||||||
|
padding: 0 16px 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-form-item) {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-radio) {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
|
||||||
|
.ant-radio-inner {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-select-selection-item) {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-input-number) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-alert) {
|
||||||
|
.ant-alert-message {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
439
src/views/sdy/shopDealerWithdraw/index.vue
Normal file
439
src/views/sdy/shopDealerWithdraw/index.vue
Normal file
@@ -0,0 +1,439 @@
|
|||||||
|
<template>
|
||||||
|
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
||||||
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
||||||
|
<ele-pro-table
|
||||||
|
ref="tableRef"
|
||||||
|
row-key="shopDealerWithdrawId"
|
||||||
|
:columns="columns"
|
||||||
|
:datasource="datasource"
|
||||||
|
:customRow="customRow"
|
||||||
|
tool-class="ele-toolbar-form"
|
||||||
|
class="sys-org-table"
|
||||||
|
>
|
||||||
|
<template #toolbar>
|
||||||
|
<search
|
||||||
|
@search="reload"
|
||||||
|
:selection="selection"
|
||||||
|
@add="openEdit"
|
||||||
|
@remove="removeBatch"
|
||||||
|
@batchMove="openMove"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #bodyCell="{ column, record }">
|
||||||
|
<template v-if="column.key === 'applyStatus'">
|
||||||
|
<a-tag v-if="record.applyStatus === 10" color="orange">待审核</a-tag>
|
||||||
|
<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 === 40">已打款</a-tag>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'userInfo'">
|
||||||
|
<a-space>
|
||||||
|
<a-avatar :src="record.avatar" />
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span>{{ record.realName || '未实名认证' }}</span>
|
||||||
|
<span class="text-gray-400">{{ record.phone }}</span>
|
||||||
|
</div>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'paymentInfo'">
|
||||||
|
<template v-if="record.payType === 10">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">微信</a-tag>
|
||||||
|
<span>{{ record.wechatName }}</span>
|
||||||
|
<span>{{ record.wechatName }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.payType === 20">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">支付宝</a-tag>
|
||||||
|
<span>{{ record.alipayName }}</span>
|
||||||
|
<span>{{ record.alipayAccount }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.payType === 30">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">银行卡</a-tag>
|
||||||
|
<span>{{ record.bankName }}</span>
|
||||||
|
<span>{{ record.bankAccount }}</span>
|
||||||
|
<span>{{ record.bankCard }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'comments'">
|
||||||
|
<template v-if="record.applyStatus === 30">
|
||||||
|
<div class="text-red-500">驳回原因:{{ record.rejectReason }}</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.applyStatus === 40 && record.image">
|
||||||
|
<a-image v-for="(item,index) in JSON.parse(record.image)" :key="index" :src="item" :width="50"
|
||||||
|
:height="50"/>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'createTime'">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tooltip title="创建时间">{{ record.createTime }}</a-tooltip>
|
||||||
|
<a-tooltip title="审核/打款时间" class="text-green-500">{{ record.auditTime }}</a-tooltip>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'action'">
|
||||||
|
<template v-if="record.applyStatus !== 40">
|
||||||
|
<a @click="openEdit(record)" class="ele-text-primary">
|
||||||
|
<EditOutlined/>
|
||||||
|
编辑
|
||||||
|
</a>
|
||||||
|
<a-divider type="vertical"/>
|
||||||
|
<a-popconfirm
|
||||||
|
title="确定要删除此提现记录吗?"
|
||||||
|
@confirm="remove(record)"
|
||||||
|
placement="topRight"
|
||||||
|
>
|
||||||
|
<a class="ele-text-danger">
|
||||||
|
<DeleteOutlined/>
|
||||||
|
删除
|
||||||
|
</a>
|
||||||
|
</a-popconfirm>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</ele-pro-table>
|
||||||
|
</a-card>
|
||||||
|
|
||||||
|
<!-- 编辑弹窗 -->
|
||||||
|
<ShopDealerWithdrawEdit v-model:visible="showEdit" :data="current" @done="reload"/>
|
||||||
|
</a-page-header>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {createVNode, ref} from 'vue';
|
||||||
|
import {message, Modal} from 'ant-design-vue';
|
||||||
|
import {
|
||||||
|
ExclamationCircleOutlined,
|
||||||
|
CheckOutlined,
|
||||||
|
CloseOutlined,
|
||||||
|
DollarOutlined,
|
||||||
|
EditOutlined,
|
||||||
|
DeleteOutlined
|
||||||
|
} from '@ant-design/icons-vue';
|
||||||
|
import type {EleProTable} from 'ele-admin-pro';
|
||||||
|
import {toDateString} from 'ele-admin-pro';
|
||||||
|
import type {
|
||||||
|
DatasourceFunction,
|
||||||
|
ColumnItem
|
||||||
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
||||||
|
import Search from './components/search.vue';
|
||||||
|
import {getPageTitle} from '@/utils/common';
|
||||||
|
import ShopDealerWithdrawEdit from './components/shopDealerWithdrawEdit.vue';
|
||||||
|
import {
|
||||||
|
pageShopDealerWithdraw,
|
||||||
|
removeShopDealerWithdraw,
|
||||||
|
removeBatchShopDealerWithdraw,
|
||||||
|
updateShopDealerWithdraw
|
||||||
|
} from '@/api/shop/shopDealerWithdraw';
|
||||||
|
import type {ShopDealerWithdraw, ShopDealerWithdrawParam} from '@/api/shop/shopDealerWithdraw/model';
|
||||||
|
|
||||||
|
// 表格实例
|
||||||
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
||||||
|
|
||||||
|
// 表格选中数据
|
||||||
|
const selection = ref<ShopDealerWithdraw[]>([]);
|
||||||
|
// 当前编辑数据
|
||||||
|
const current = ref<ShopDealerWithdraw | null>(null);
|
||||||
|
// 是否显示编辑弹窗
|
||||||
|
const showEdit = ref(false);
|
||||||
|
// 是否显示批量移动弹窗
|
||||||
|
const showMove = ref(false);
|
||||||
|
// 加载状态
|
||||||
|
const loading = ref(true);
|
||||||
|
|
||||||
|
// 表格数据源
|
||||||
|
const datasource: DatasourceFunction = ({
|
||||||
|
page,
|
||||||
|
limit,
|
||||||
|
where,
|
||||||
|
orders,
|
||||||
|
filters
|
||||||
|
}) => {
|
||||||
|
if (filters) {
|
||||||
|
where.status = filters.status;
|
||||||
|
}
|
||||||
|
return pageShopDealerWithdraw({
|
||||||
|
...where,
|
||||||
|
...orders,
|
||||||
|
page,
|
||||||
|
limit
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 表格列配置
|
||||||
|
const columns = ref<ColumnItem[]>([
|
||||||
|
{
|
||||||
|
title: '用户ID',
|
||||||
|
dataIndex: 'userId',
|
||||||
|
key: 'userId',
|
||||||
|
align: 'center',
|
||||||
|
width: 90,
|
||||||
|
fixed: 'left'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '提现金额',
|
||||||
|
dataIndex: 'money',
|
||||||
|
key: 'money',
|
||||||
|
align: 'center',
|
||||||
|
width: 150,
|
||||||
|
customRender: ({text}) => {
|
||||||
|
const amount = parseFloat(text || '0').toFixed(2);
|
||||||
|
return {
|
||||||
|
type: 'span',
|
||||||
|
children: `¥${amount}`
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '用户信息',
|
||||||
|
dataIndex: 'userInfo',
|
||||||
|
key: 'userInfo'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '收款信息',
|
||||||
|
dataIndex: 'paymentInfo',
|
||||||
|
key: 'paymentInfo'
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// title: '审核时间',
|
||||||
|
// dataIndex: 'auditTime',
|
||||||
|
// key: 'auditTime',
|
||||||
|
// align: 'center',
|
||||||
|
// width: 120,
|
||||||
|
// customRender: ({ text }) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '驳回原因',
|
||||||
|
// dataIndex: 'rejectReason',
|
||||||
|
// key: 'rejectReason',
|
||||||
|
// align: 'left',
|
||||||
|
// ellipsis: true,
|
||||||
|
// customRender: ({ text }) => text || '-'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '来源平台',
|
||||||
|
// dataIndex: 'platform',
|
||||||
|
// key: 'platform',
|
||||||
|
// align: 'center',
|
||||||
|
// width: 100,
|
||||||
|
// customRender: ({ text }) => text || '-'
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
title: '备注',
|
||||||
|
dataIndex: 'comments',
|
||||||
|
key: 'comments',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '申请状态',
|
||||||
|
dataIndex: 'applyStatus',
|
||||||
|
key: 'applyStatus',
|
||||||
|
align: 'center',
|
||||||
|
width: 150
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// title: '驳回原因',
|
||||||
|
// dataIndex: 'rejectReason',
|
||||||
|
// key: 'rejectReason',
|
||||||
|
// align: 'center',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '来源客户端',
|
||||||
|
// dataIndex: 'platform',
|
||||||
|
// key: 'platform',
|
||||||
|
// align: 'center',
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
title: '创建时间',
|
||||||
|
dataIndex: 'createTime',
|
||||||
|
key: 'createTime',
|
||||||
|
align: 'center',
|
||||||
|
width: 180,
|
||||||
|
sorter: true,
|
||||||
|
ellipsis: true,
|
||||||
|
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// title: '操作',
|
||||||
|
// key: 'action',
|
||||||
|
// width: 180,
|
||||||
|
// fixed: 'right',
|
||||||
|
// align: 'center',
|
||||||
|
// hideInSetting: true
|
||||||
|
// }
|
||||||
|
]);
|
||||||
|
|
||||||
|
/* 搜索 */
|
||||||
|
const reload = (where?: ShopDealerWithdrawParam) => {
|
||||||
|
selection.value = [];
|
||||||
|
tableRef?.value?.reload({where: where});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 审核通过 */
|
||||||
|
const approveWithdraw = (row: ShopDealerWithdraw) => {
|
||||||
|
Modal.confirm({
|
||||||
|
title: '审核通过确认',
|
||||||
|
content: `已核对信息进行核对,正确无误!`,
|
||||||
|
icon: createVNode(CheckOutlined),
|
||||||
|
okText: '确认通过',
|
||||||
|
okType: 'primary',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
|
const hide = message.loading('正在处理审核...', 0);
|
||||||
|
// 这里需要调用审核通过的API
|
||||||
|
setTimeout(() => {
|
||||||
|
hide();
|
||||||
|
updateShopDealerWithdraw({
|
||||||
|
id: row.id,
|
||||||
|
applyStatus: 20
|
||||||
|
});
|
||||||
|
message.success('审核通过成功');
|
||||||
|
reload();
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 审核驳回 */
|
||||||
|
const rejectWithdraw = (row: ShopDealerWithdraw) => {
|
||||||
|
let rejectReason = '';
|
||||||
|
Modal.confirm({
|
||||||
|
title: '审核驳回',
|
||||||
|
content: createVNode('div', null, [
|
||||||
|
createVNode('p', null, `用户ID: ${row.userId}`),
|
||||||
|
createVNode('p', null, `提现金额: ¥${parseFloat(row.money || '0').toFixed(2)}`),
|
||||||
|
createVNode('p', {style: 'margin-top: 12px;'}, '请输入驳回原因:'),
|
||||||
|
createVNode('textarea', {
|
||||||
|
placeholder: '请输入驳回原因...',
|
||||||
|
style: 'width: 100%; height: 80px; margin-top: 8px; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px;',
|
||||||
|
onInput: (e: any) => {
|
||||||
|
rejectReason = e.target.value;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
icon: createVNode(CloseOutlined),
|
||||||
|
okText: '确认驳回',
|
||||||
|
okType: 'danger',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
|
if (!rejectReason.trim()) {
|
||||||
|
message.error('请输入驳回原因');
|
||||||
|
return Promise.reject();
|
||||||
|
}
|
||||||
|
const hide = message.loading('正在处理审核...', 0);
|
||||||
|
setTimeout(() => {
|
||||||
|
hide();
|
||||||
|
message.success('审核驳回成功');
|
||||||
|
reload();
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 确认打款 */
|
||||||
|
const confirmPayment = (row: ShopDealerWithdraw) => {
|
||||||
|
Modal.confirm({
|
||||||
|
title: '确认打款',
|
||||||
|
content: `确定已向用户${row.bankAccount}完成打款?此操作不可撤销`,
|
||||||
|
icon: createVNode(DollarOutlined),
|
||||||
|
okText: '确认打款',
|
||||||
|
okType: 'primary',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
|
const hide = message.loading('正在确认打款...', 0);
|
||||||
|
setTimeout(() => {
|
||||||
|
updateShopDealerWithdraw({
|
||||||
|
id: row.id,
|
||||||
|
applyStatus: 40
|
||||||
|
})
|
||||||
|
hide();
|
||||||
|
message.success('打款确认成功');
|
||||||
|
reload();
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 打开编辑弹窗 */
|
||||||
|
const openEdit = (row?: ShopDealerWithdraw) => {
|
||||||
|
current.value = row ?? null;
|
||||||
|
showEdit.value = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 打开批量移动弹窗 */
|
||||||
|
const openMove = () => {
|
||||||
|
showMove.value = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 删除单个 */
|
||||||
|
const remove = (row: ShopDealerWithdraw) => {
|
||||||
|
const hide = message.loading('请求中..', 0);
|
||||||
|
removeShopDealerWithdraw(row.id)
|
||||||
|
.then((msg) => {
|
||||||
|
hide();
|
||||||
|
message.success(msg);
|
||||||
|
reload();
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
hide();
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 批量删除 */
|
||||||
|
const removeBatch = () => {
|
||||||
|
if (!selection.value.length) {
|
||||||
|
message.error('请至少选择一条数据');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Modal.confirm({
|
||||||
|
title: '提示',
|
||||||
|
content: '确定要删除选中的记录吗?',
|
||||||
|
icon: createVNode(ExclamationCircleOutlined),
|
||||||
|
maskClosable: true,
|
||||||
|
onOk: () => {
|
||||||
|
const hide = message.loading('请求中..', 0);
|
||||||
|
removeBatchShopDealerWithdraw(selection.value.map((d) => d.id))
|
||||||
|
.then((msg) => {
|
||||||
|
hide();
|
||||||
|
message.success(msg);
|
||||||
|
reload();
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
hide();
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 查询 */
|
||||||
|
const query = () => {
|
||||||
|
loading.value = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 自定义行属性 */
|
||||||
|
const customRow = (record: ShopDealerWithdraw) => {
|
||||||
|
return {
|
||||||
|
// 行点击事件
|
||||||
|
onClick: () => {
|
||||||
|
// console.log(record);
|
||||||
|
},
|
||||||
|
// 行双击事件
|
||||||
|
onDblclick: () => {
|
||||||
|
openEdit(record);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
query();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
export default {
|
||||||
|
name: 'ShopDealerWithdraw'
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped></style>
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
<!-- 机构选择下拉框 -->
|
|
||||||
<template>
|
|
||||||
<a-tree-select
|
|
||||||
allow-clear
|
|
||||||
tree-default-expand-all
|
|
||||||
:placeholder="placeholder"
|
|
||||||
:value="value || undefined"
|
|
||||||
:tree-data="data"
|
|
||||||
:dropdown-style="{ maxHeight: '360px', overflow: 'auto' }"
|
|
||||||
@update:value="updateValue"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import type { Organization } from '@/api/system/organization/model';
|
|
||||||
|
|
||||||
const emit = defineEmits<{
|
|
||||||
(e: 'update:value', value?: number): void;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
withDefaults(
|
|
||||||
defineProps<{
|
|
||||||
// 选中的数据(v-modal)
|
|
||||||
value?: number;
|
|
||||||
// 提示信息
|
|
||||||
placeholder?: string;
|
|
||||||
// 机构数据
|
|
||||||
data: Organization[];
|
|
||||||
}>(),
|
|
||||||
{
|
|
||||||
placeholder: '请选择角色'
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
/* 更新选中数据 */
|
|
||||||
const updateValue = (value?: number) => {
|
|
||||||
emit('update:value', value);
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<!-- 搜索表单 -->
|
|
||||||
<template>
|
|
||||||
<a-space :size="10" style="flex-wrap: wrap">
|
|
||||||
<a-button type="primary" class="ele-btn-icon" @click="add">
|
|
||||||
<template #icon>
|
|
||||||
<PlusOutlined />
|
|
||||||
</template>
|
|
||||||
<span>添加</span>
|
|
||||||
</a-button>
|
|
||||||
</a-space>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { PlusOutlined } from '@ant-design/icons-vue';
|
|
||||||
import type { GradeParam } from '@/api/user/grade/model';
|
|
||||||
import { watch } from 'vue';
|
|
||||||
|
|
||||||
const props = withDefaults(
|
|
||||||
defineProps<{
|
|
||||||
// 选中的角色
|
|
||||||
selection?: [];
|
|
||||||
}>(),
|
|
||||||
{}
|
|
||||||
);
|
|
||||||
|
|
||||||
const emit = defineEmits<{
|
|
||||||
(e: 'search', where?: GradeParam): void;
|
|
||||||
(e: 'add'): void;
|
|
||||||
(e: 'remove'): void;
|
|
||||||
(e: 'batchMove'): void;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
// 新增
|
|
||||||
const add = () => {
|
|
||||||
emit('add');
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.selection,
|
|
||||||
() => {}
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
<!-- 状态测试组件 -->
|
|
||||||
<template>
|
|
||||||
<div style="padding: 20px;">
|
|
||||||
<h3>状态测试</h3>
|
|
||||||
<div style="margin-bottom: 16px;">
|
|
||||||
<label>当前状态值: {{ currentStatus }}</label>
|
|
||||||
</div>
|
|
||||||
<div style="margin-bottom: 16px;">
|
|
||||||
<a-switch
|
|
||||||
checked-children="正常"
|
|
||||||
un-checked-children="冻结"
|
|
||||||
:checked="currentStatus === 0"
|
|
||||||
@change="handleStatusChange"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div style="margin-bottom: 16px;">
|
|
||||||
<a-button type="primary" @click="testSave">测试保存</a-button>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h4>调试信息:</h4>
|
|
||||||
<pre>{{ debugInfo }}</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { ref, reactive } from 'vue';
|
|
||||||
import { message } from 'ant-design-vue';
|
|
||||||
|
|
||||||
const currentStatus = ref(0); // 0=正常, 1=冻结
|
|
||||||
const debugInfo = reactive({
|
|
||||||
originalStatus: 0,
|
|
||||||
currentStatus: 0,
|
|
||||||
switchChecked: true,
|
|
||||||
lastChange: null
|
|
||||||
});
|
|
||||||
|
|
||||||
const handleStatusChange = (checked: boolean) => {
|
|
||||||
const newStatus = checked ? 0 : 1;
|
|
||||||
console.log('状态变化:', { checked, newStatus, oldStatus: currentStatus.value });
|
|
||||||
|
|
||||||
currentStatus.value = newStatus;
|
|
||||||
debugInfo.currentStatus = newStatus;
|
|
||||||
debugInfo.switchChecked = checked;
|
|
||||||
debugInfo.lastChange = new Date().toLocaleTimeString();
|
|
||||||
|
|
||||||
message.info(`状态已变更为: ${checked ? '正常' : '冻结'} (${newStatus})`);
|
|
||||||
};
|
|
||||||
|
|
||||||
const testSave = () => {
|
|
||||||
const testData = {
|
|
||||||
userId: 123,
|
|
||||||
status: currentStatus.value,
|
|
||||||
realName: '测试用户'
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log('测试保存数据:', testData);
|
|
||||||
message.success(`保存成功!状态: ${currentStatus.value === 0 ? '正常' : '冻结'}`);
|
|
||||||
};
|
|
||||||
|
|
||||||
// 初始化调试信息
|
|
||||||
debugInfo.originalStatus = currentStatus.value;
|
|
||||||
debugInfo.currentStatus = currentStatus.value;
|
|
||||||
debugInfo.switchChecked = currentStatus.value === 0;
|
|
||||||
</script>
|
|
||||||
@@ -1,312 +0,0 @@
|
|||||||
<!-- 管理员编辑弹窗 -->
|
|
||||||
<template>
|
|
||||||
<ele-modal
|
|
||||||
:width="500"
|
|
||||||
:visible="visible"
|
|
||||||
:confirm-loading="loading"
|
|
||||||
:title="isUpdate ? '编辑客户' : '添加客户'"
|
|
||||||
:body-style="{ paddingBottom: '8px' }"
|
|
||||||
@update:visible="updateVisible"
|
|
||||||
@ok="save"
|
|
||||||
>
|
|
||||||
<a-form
|
|
||||||
ref="formRef"
|
|
||||||
:model="form"
|
|
||||||
:rules="rules"
|
|
||||||
:label-col="styleResponsive ? { md: 5, sm: 4, xs: 24 } : { flex: '90px' }"
|
|
||||||
:wrapper-col="
|
|
||||||
styleResponsive ? { md: 17, sm: 20, xs: 24 } : { flex: '1' }
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<a-form-item label="姓名" name="realName">
|
|
||||||
<a-input
|
|
||||||
allow-clear
|
|
||||||
:maxlength="20"
|
|
||||||
placeholder="请输入真实姓名"
|
|
||||||
v-model:value="form.realName"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
<a-form-item label="手机号" name="phone">
|
|
||||||
<a-input
|
|
||||||
allow-clear
|
|
||||||
:maxlength="11"
|
|
||||||
:disabled="isUpdate"
|
|
||||||
placeholder="请输入手机号"
|
|
||||||
v-model:value="form.phone"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
<a-form-item label="邮箱" name="email">
|
|
||||||
<a-input
|
|
||||||
allow-clear
|
|
||||||
:maxlength="100"
|
|
||||||
placeholder="请输入邮箱"
|
|
||||||
v-model:value="form.email"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
<a-form-item label="所属机构" name="type">
|
|
||||||
<org-select
|
|
||||||
:data="organizationList"
|
|
||||||
placeholder="请选择所属机构"
|
|
||||||
v-model:value="form.organizationId"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
<a-form-item label="入市状态">
|
|
||||||
<a-switch
|
|
||||||
checked-children="是"
|
|
||||||
un-checked-children="否"
|
|
||||||
:checked="form.status === 1"
|
|
||||||
@change="handleStatusChange"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
</a-form>
|
|
||||||
</ele-modal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { ref, reactive, watch } from 'vue';
|
|
||||||
import { message } from 'ant-design-vue/es';
|
|
||||||
import type { FormInstance, Rule } from 'ant-design-vue/es/form';
|
|
||||||
import { emailReg } from 'ele-admin-pro/es';
|
|
||||||
import { storeToRefs } from 'pinia';
|
|
||||||
import { useThemeStore } from '@/store/modules/theme';
|
|
||||||
import useFormData from '@/utils/use-form-data';
|
|
||||||
import { addUser, updateUser, checkExistence, updateUserStatus } from '@/api/system/user';
|
|
||||||
import type { User } from '@/api/system/user/model';
|
|
||||||
import OrgSelect from './org-select.vue';
|
|
||||||
import { Organization } from '@/api/system/organization/model';
|
|
||||||
import {TEMPLATE_ID} from "@/config/setting";
|
|
||||||
|
|
||||||
// 是否开启响应式布局
|
|
||||||
const themeStore = useThemeStore();
|
|
||||||
const { styleResponsive } = storeToRefs(themeStore);
|
|
||||||
// 获取字典数据
|
|
||||||
// const userTypeData = getDictionaryOptions('userType');
|
|
||||||
const emit = defineEmits<{
|
|
||||||
(e: 'done'): void;
|
|
||||||
(e: 'update:visible', visible: boolean): void;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
const props = defineProps<{
|
|
||||||
// 弹窗是否打开
|
|
||||||
visible: boolean;
|
|
||||||
// 修改回显的数据
|
|
||||||
data?: User | null;
|
|
||||||
// 全部机构
|
|
||||||
organizationList: Organization[];
|
|
||||||
}>();
|
|
||||||
|
|
||||||
//
|
|
||||||
const formRef = ref<FormInstance | null>(null);
|
|
||||||
|
|
||||||
// 是否是修改
|
|
||||||
const isUpdate = ref(false);
|
|
||||||
|
|
||||||
// 提交状态
|
|
||||||
const loading = ref(false);
|
|
||||||
|
|
||||||
// 原始状态,用于比较是否发生变化
|
|
||||||
const originalStatus = ref<number>();
|
|
||||||
|
|
||||||
// 表单数据
|
|
||||||
const { form, resetFields, assignFields } = useFormData<User>({
|
|
||||||
type: undefined,
|
|
||||||
userId: undefined,
|
|
||||||
username: '',
|
|
||||||
nickname: '',
|
|
||||||
realName: '',
|
|
||||||
companyName: '',
|
|
||||||
sex: undefined,
|
|
||||||
sexName: undefined,
|
|
||||||
roles: [],
|
|
||||||
email: '',
|
|
||||||
phone: '',
|
|
||||||
mobile: '',
|
|
||||||
password: '',
|
|
||||||
introduction: '',
|
|
||||||
organizationId: undefined,
|
|
||||||
birthday: '',
|
|
||||||
idCard: '',
|
|
||||||
comments: '',
|
|
||||||
gradeName: '',
|
|
||||||
isAdmin: true,
|
|
||||||
gradeId: undefined,
|
|
||||||
templateId: TEMPLATE_ID,
|
|
||||||
status: 0 // 默认为正常状态
|
|
||||||
});
|
|
||||||
|
|
||||||
// 表单验证规则
|
|
||||||
const rules = reactive<Record<string, Rule[]>>({
|
|
||||||
username: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
type: 'string',
|
|
||||||
validator: (_rule: Rule, value: string) => {
|
|
||||||
return new Promise<void>((resolve, reject) => {
|
|
||||||
if (!value) {
|
|
||||||
return reject('请输入管理员账号');
|
|
||||||
}
|
|
||||||
checkExistence('username', value, props.data?.userId)
|
|
||||||
.then(() => {
|
|
||||||
reject('账号已经存在');
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
nickname: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请输入昵称',
|
|
||||||
type: 'string',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
realName: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请输入真实姓名',
|
|
||||||
type: 'string',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
// sex: [
|
|
||||||
// {
|
|
||||||
// required: true,
|
|
||||||
// message: '请选择性别',
|
|
||||||
// type: 'string',
|
|
||||||
// trigger: 'blur'
|
|
||||||
// }
|
|
||||||
// ],
|
|
||||||
roles: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请选择角色',
|
|
||||||
type: 'array',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
email: [
|
|
||||||
{
|
|
||||||
pattern: emailReg,
|
|
||||||
message: '邮箱格式不正确',
|
|
||||||
type: 'string',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
password: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
type: 'string',
|
|
||||||
validator: async (_rule: Rule, value: string) => {
|
|
||||||
if (isUpdate.value || /^[\S]{5,18}$/.test(value)) {
|
|
||||||
return Promise.resolve();
|
|
||||||
}
|
|
||||||
return Promise.reject('密码必须为5-18位非空白字符');
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
// phone: [
|
|
||||||
// {
|
|
||||||
// required: true,
|
|
||||||
// pattern: phoneReg,
|
|
||||||
// message: '手机号格式不正确',
|
|
||||||
// type: 'string',
|
|
||||||
// trigger: 'blur'
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
});
|
|
||||||
|
|
||||||
/* 处理状态变化 */
|
|
||||||
const handleStatusChange = (checked: boolean) => {
|
|
||||||
// checked为true表示正常状态(0),false表示冻结状态(1)
|
|
||||||
const newStatus = checked ? 1 : 0;
|
|
||||||
console.log('状态变化:', { checked, newStatus, oldStatus: form.status }); // 调试日志
|
|
||||||
form.status = newStatus;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 保存编辑 */
|
|
||||||
const save = () => {
|
|
||||||
if (!formRef.value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
formRef.value
|
|
||||||
.validate()
|
|
||||||
.then(() => {
|
|
||||||
loading.value = true;
|
|
||||||
const saveOrUpdate = isUpdate.value ? updateUser : addUser;
|
|
||||||
form.username = form.phone;
|
|
||||||
form.nickname = form.realName;
|
|
||||||
|
|
||||||
// 确保数据类型正确
|
|
||||||
const formData = {
|
|
||||||
...form,
|
|
||||||
isAdmin: form.isAdmin ? 1 : 0, // 转换为数字类型
|
|
||||||
status: Number(form.status) // 确保 status 是数字类型
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log('保存用户数据:', formData); // 调试日志
|
|
||||||
|
|
||||||
saveOrUpdate(formData)
|
|
||||||
.then(async (msg) => {
|
|
||||||
// 如果是更新用户且状态发生变化,需要单独更新状态
|
|
||||||
if (isUpdate.value && originalStatus.value !== formData.status) {
|
|
||||||
console.log('更新用户状态:', { userId: formData.userId, status: formData.status });
|
|
||||||
try {
|
|
||||||
await updateUserStatus(formData.userId, formData.status);
|
|
||||||
console.log('状态更新成功');
|
|
||||||
} catch (statusError) {
|
|
||||||
console.error('状态更新失败:', statusError);
|
|
||||||
message.warning('用户信息保存成功,但状态更新失败');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
loading.value = false;
|
|
||||||
message.success(msg);
|
|
||||||
updateVisible(false);
|
|
||||||
emit('done');
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
loading.value = false;
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 更新visible */
|
|
||||||
const updateVisible = (value: boolean) => {
|
|
||||||
emit('update:visible', value);
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.visible,
|
|
||||||
(visible) => {
|
|
||||||
if (visible) {
|
|
||||||
if (props.data) {
|
|
||||||
const userStatus = props.data.status !== undefined ? Number(props.data.status) : 0;
|
|
||||||
const userData = {
|
|
||||||
...props.data,
|
|
||||||
password: '',
|
|
||||||
// 确保 status 是数字类型,默认为 0(正常状态)
|
|
||||||
status: userStatus
|
|
||||||
};
|
|
||||||
console.log('编辑用户数据回显:', userData); // 调试日志
|
|
||||||
originalStatus.value = userStatus; // 记录原始状态
|
|
||||||
assignFields(userData);
|
|
||||||
isUpdate.value = true;
|
|
||||||
} else {
|
|
||||||
originalStatus.value = 0; // 新增用户默认状态
|
|
||||||
isUpdate.value = false;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
resetFields();
|
|
||||||
formRef.value?.clearValidate();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
<!-- 用户导入弹窗 -->
|
|
||||||
<template>
|
|
||||||
<ele-modal
|
|
||||||
:width="520"
|
|
||||||
:footer="null"
|
|
||||||
title="用户批量导入"
|
|
||||||
:visible="visible"
|
|
||||||
@update:visible="updateVisible"
|
|
||||||
>
|
|
||||||
<a-spin :spinning="loading">
|
|
||||||
<a-upload-dragger
|
|
||||||
accept=".xls,.xlsx"
|
|
||||||
:show-upload-list="false"
|
|
||||||
:customRequest="doUpload"
|
|
||||||
style="padding: 24px 0; margin-bottom: 16px"
|
|
||||||
>
|
|
||||||
<p class="ant-upload-drag-icon">
|
|
||||||
<cloud-upload-outlined />
|
|
||||||
</p>
|
|
||||||
<p class="ant-upload-hint">将文件拖到此处,或点击上传</p>
|
|
||||||
</a-upload-dragger>
|
|
||||||
</a-spin>
|
|
||||||
<div class="ele-text-center">
|
|
||||||
<span>只能上传xls、xlsx文件,</span>
|
|
||||||
<a
|
|
||||||
href="https://server.websoft.top/api/system/user/import/template"
|
|
||||||
download="用户导入模板.xlsx"
|
|
||||||
>
|
|
||||||
下载导入模板
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</ele-modal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { message } from 'ant-design-vue/es';
|
|
||||||
import { CloudUploadOutlined } from '@ant-design/icons-vue';
|
|
||||||
import { importUsers } from '@/api/system/user';
|
|
||||||
|
|
||||||
const emit = defineEmits<{
|
|
||||||
(e: 'done'): void;
|
|
||||||
(e: 'update:visible', visible: boolean): void;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
defineProps<{
|
|
||||||
// 是否打开弹窗
|
|
||||||
visible: boolean;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
// 导入请求状态
|
|
||||||
const loading = ref(false);
|
|
||||||
|
|
||||||
/* 上传 */
|
|
||||||
const doUpload = ({ file }) => {
|
|
||||||
if (
|
|
||||||
![
|
|
||||||
'application/vnd.ms-excel',
|
|
||||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
||||||
].includes(file.type)
|
|
||||||
) {
|
|
||||||
message.error('只能选择 excel 文件');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (file.size / 1024 / 1024 > 10) {
|
|
||||||
message.error('大小不能超过 10MB');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
loading.value = true;
|
|
||||||
importUsers(file)
|
|
||||||
.then((msg) => {
|
|
||||||
loading.value = false;
|
|
||||||
message.success(msg);
|
|
||||||
updateVisible(false);
|
|
||||||
emit('done');
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
loading.value = false;
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 更新 visible */
|
|
||||||
const updateVisible = (value: boolean) => {
|
|
||||||
emit('update:visible', value);
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,603 +0,0 @@
|
|||||||
<template>
|
|
||||||
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
|
||||||
<a-card :bordered="false">
|
|
||||||
<!-- 表格 -->
|
|
||||||
<ele-pro-table
|
|
||||||
ref="tableRef"
|
|
||||||
row-key="userId"
|
|
||||||
:columns="columns"
|
|
||||||
:datasource="datasource"
|
|
||||||
class="sys-org-table"
|
|
||||||
:scroll="{ x: 1300 }"
|
|
||||||
:where="defaultWhere"
|
|
||||||
:customRow="customRow"
|
|
||||||
cache-key="proSystemUserTable"
|
|
||||||
>
|
|
||||||
<template #toolbar>
|
|
||||||
<a-space>
|
|
||||||
<a-button type="primary" class="ele-btn-icon" @click="openEdit()">
|
|
||||||
<template #icon>
|
|
||||||
<plus-outlined/>
|
|
||||||
</template>
|
|
||||||
<span>添加</span>
|
|
||||||
</a-button>
|
|
||||||
<a-button class="ele-btn-icon" @click="openImport()">
|
|
||||||
<template #icon>
|
|
||||||
<cloud-upload-outlined/>
|
|
||||||
</template>
|
|
||||||
<span>导入</span>
|
|
||||||
</a-button>
|
|
||||||
<a-button class="ele-btn-icon" @click="exportData()" :loading="exportLoading">
|
|
||||||
<template #icon>
|
|
||||||
<download-outlined/>
|
|
||||||
</template>
|
|
||||||
<span>导出</span>
|
|
||||||
</a-button>
|
|
||||||
<a-input-search
|
|
||||||
allow-clear
|
|
||||||
v-model:value="searchText"
|
|
||||||
placeholder="请输入关键词"
|
|
||||||
@search="reload"
|
|
||||||
@pressEnter="reload"
|
|
||||||
/>
|
|
||||||
</a-space>
|
|
||||||
</template>
|
|
||||||
<template #bodyCell="{ column, record }">
|
|
||||||
<template v-if="column.key === 'avatar'">
|
|
||||||
<a-avatar
|
|
||||||
:size="30"
|
|
||||||
:src="`${record.avatar}`"
|
|
||||||
style="margin-right: 4px"
|
|
||||||
>
|
|
||||||
<template #icon>
|
|
||||||
<UserOutlined/>
|
|
||||||
</template>
|
|
||||||
</a-avatar>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'nickname'">
|
|
||||||
<span>{{ record.nickname }}</span>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'mobile'">
|
|
||||||
<span v-if="hasRole('superAdmin')">{{ record.phone }}</span>
|
|
||||||
<span v-else>{{ record.mobile }}</span>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'roles'">
|
|
||||||
<a-tag v-for="item in record.roles" :key="item.roleId" color="blue">
|
|
||||||
{{ item.roleName }}
|
|
||||||
</a-tag>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'platform'">
|
|
||||||
<WechatOutlined v-if="record.platform === 'MP-WEIXIN'"/>
|
|
||||||
<Html5Outlined v-if="record.platform === 'H5'"/>
|
|
||||||
<ChromeOutlined v-if="record.platform === 'WEB'"/>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'balance'">
|
|
||||||
<span class="ele-text-success">
|
|
||||||
¥{{ formatNumber(record.balance) }}
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'expendMoney'">
|
|
||||||
<span class="ele-text-warning">
|
|
||||||
¥{{ formatNumber(record.expendMoney) }}
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'isAdmin'">
|
|
||||||
<a-switch
|
|
||||||
:checked="record.isAdmin == 1"
|
|
||||||
@change="updateIsAdmin(record)"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<template v-if="column.key === 'action'">
|
|
||||||
<div>
|
|
||||||
<a @click="openEdit(record)">修改</a>
|
|
||||||
<a-divider type="vertical"/>
|
|
||||||
<a-popconfirm
|
|
||||||
placement="topRight"
|
|
||||||
title="确定要删除此用户吗?"
|
|
||||||
@confirm="remove(record)"
|
|
||||||
>
|
|
||||||
<a class="ele-text-danger">删除</a>
|
|
||||||
</a-popconfirm>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</template>
|
|
||||||
</ele-pro-table>
|
|
||||||
</a-card>
|
|
||||||
<!-- 编辑弹窗 -->
|
|
||||||
<user-edit
|
|
||||||
v-model:visible="showEdit"
|
|
||||||
:data="current"
|
|
||||||
:organization-list="data"
|
|
||||||
@done="reload"
|
|
||||||
/>
|
|
||||||
<!-- 导入弹窗 -->
|
|
||||||
<user-import v-model:visible="showImport" @done="reload"/>
|
|
||||||
|
|
||||||
</a-page-header>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import {createVNode, ref, reactive, watch} from 'vue';
|
|
||||||
import {message, Modal} from 'ant-design-vue/es';
|
|
||||||
import {
|
|
||||||
PlusOutlined,
|
|
||||||
UserOutlined,
|
|
||||||
Html5Outlined,
|
|
||||||
ChromeOutlined,
|
|
||||||
WechatOutlined,
|
|
||||||
CloudUploadOutlined,
|
|
||||||
DownloadOutlined,
|
|
||||||
ExclamationCircleOutlined
|
|
||||||
} from '@ant-design/icons-vue';
|
|
||||||
import type {EleProTable} from 'ele-admin-pro/es';
|
|
||||||
import type {
|
|
||||||
DatasourceFunction,
|
|
||||||
ColumnItem
|
|
||||||
} from 'ele-admin-pro/es/ele-pro-table/types';
|
|
||||||
import {messageLoading, formatNumber} from 'ele-admin-pro/es';
|
|
||||||
import UserEdit from './components/user-edit.vue';
|
|
||||||
import UserImport from './components/user-import.vue';
|
|
||||||
import {toDateString} from 'ele-admin-pro';
|
|
||||||
import { utils, writeFile } from 'xlsx';
|
|
||||||
import dayjs from 'dayjs';
|
|
||||||
import {
|
|
||||||
pageUsers,
|
|
||||||
removeUser,
|
|
||||||
removeUsers,
|
|
||||||
updateUserPassword,
|
|
||||||
updateUser,
|
|
||||||
listUsers
|
|
||||||
} from '@/api/system/user';
|
|
||||||
import type {User, UserParam} from '@/api/system/user/model';
|
|
||||||
import {toTreeData, uuid} from 'ele-admin-pro';
|
|
||||||
import {listRoles} from '@/api/system/role';
|
|
||||||
import {listOrganizations} from '@/api/system/organization';
|
|
||||||
import {Organization} from '@/api/system/organization/model';
|
|
||||||
import {hasRole} from '@/utils/permission';
|
|
||||||
import {getPageTitle} from "@/utils/common";
|
|
||||||
import router from "@/router";
|
|
||||||
|
|
||||||
// 加载状态
|
|
||||||
const loading = ref(true);
|
|
||||||
// 树形数据
|
|
||||||
const data = ref<Organization[]>([]);
|
|
||||||
// 树展开的key
|
|
||||||
const expandedRowKeys = ref<number[]>([]);
|
|
||||||
// 树选中的key
|
|
||||||
const selectedRowKeys = ref<number[]>([]);
|
|
||||||
// 表格选中数据
|
|
||||||
const selection = ref<User[]>([]);
|
|
||||||
// 当前编辑数据
|
|
||||||
const current = ref<User | null>(null);
|
|
||||||
// 是否显示编辑弹窗
|
|
||||||
const showEdit = ref(false);
|
|
||||||
// 是否显示用户详情
|
|
||||||
const showInfo = ref(false);
|
|
||||||
// 是否显示用户导入弹窗
|
|
||||||
const showImport = ref(false);
|
|
||||||
// 导出加载状态
|
|
||||||
const exportLoading = ref(false);
|
|
||||||
const userType = ref<number>();
|
|
||||||
const searchText = ref('');
|
|
||||||
|
|
||||||
// 加载角色
|
|
||||||
const roles = ref<any[]>([]);
|
|
||||||
// 加载机构
|
|
||||||
listOrganizations()
|
|
||||||
.then((list) => {
|
|
||||||
loading.value = false;
|
|
||||||
const eks: number[] = [];
|
|
||||||
list.forEach((d) => {
|
|
||||||
d.key = d.organizationId;
|
|
||||||
d.value = d.organizationId;
|
|
||||||
d.title = d.organizationName;
|
|
||||||
if (typeof d.key === 'number') {
|
|
||||||
eks.push(d.key);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
expandedRowKeys.value = eks;
|
|
||||||
data.value = toTreeData({
|
|
||||||
data: list,
|
|
||||||
idField: 'organizationId',
|
|
||||||
parentIdField: 'parentId'
|
|
||||||
});
|
|
||||||
if (list.length) {
|
|
||||||
if (typeof list[0].key === 'number') {
|
|
||||||
selectedRowKeys.value = [list[0].key];
|
|
||||||
}
|
|
||||||
// current.value = list[0];
|
|
||||||
} else {
|
|
||||||
selectedRowKeys.value = [];
|
|
||||||
// current.value = null;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
loading.value = false;
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
|
|
||||||
// 表格实例
|
|
||||||
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
|
||||||
// 表格列配置
|
|
||||||
const columns = ref<ColumnItem[]>([
|
|
||||||
{
|
|
||||||
title: 'ID',
|
|
||||||
dataIndex: 'userId',
|
|
||||||
width: 90,
|
|
||||||
showSorterTooltip: false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '用户名',
|
|
||||||
dataIndex: 'username',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '真实姓名',
|
|
||||||
dataIndex: 'realName',
|
|
||||||
align: 'center',
|
|
||||||
showSorterTooltip: false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '电量',
|
|
||||||
dataIndex: 'points',
|
|
||||||
align: 'center',
|
|
||||||
width: 100
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '所属部门',
|
|
||||||
dataIndex: 'organizationName',
|
|
||||||
key: 'organizationName',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '角色',
|
|
||||||
dataIndex: 'roles',
|
|
||||||
key: 'roles',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '渠道负责人',
|
|
||||||
dataIndex: 'comments',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
dataIndex: 'status',
|
|
||||||
align: 'center',
|
|
||||||
sorter: true,
|
|
||||||
customRender: ({text}) => {
|
|
||||||
return text === 1
|
|
||||||
? createVNode(
|
|
||||||
'span',
|
|
||||||
{
|
|
||||||
class: 'ele-text-success'
|
|
||||||
},
|
|
||||||
'已入市'
|
|
||||||
)
|
|
||||||
: createVNode(
|
|
||||||
'span',
|
|
||||||
{
|
|
||||||
class: 'text-gray-300'
|
|
||||||
},
|
|
||||||
'未入市'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
dataIndex: 'createTime',
|
|
||||||
sorter: true,
|
|
||||||
align: 'center',
|
|
||||||
showSorterTooltip: false,
|
|
||||||
ellipsis: true,
|
|
||||||
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '操作',
|
|
||||||
key: 'action',
|
|
||||||
width: 180,
|
|
||||||
fixed: 'right',
|
|
||||||
align: 'center'
|
|
||||||
}
|
|
||||||
]);
|
|
||||||
|
|
||||||
// 默认搜索条件
|
|
||||||
const defaultWhere = reactive({
|
|
||||||
username: '',
|
|
||||||
nickname: ''
|
|
||||||
});
|
|
||||||
|
|
||||||
// 表格数据源
|
|
||||||
const datasource: DatasourceFunction = ({
|
|
||||||
page,
|
|
||||||
limit,
|
|
||||||
where,
|
|
||||||
orders,
|
|
||||||
filters
|
|
||||||
}) => {
|
|
||||||
where = {};
|
|
||||||
where.roleId = filters.roles;
|
|
||||||
where.keywords = searchText.value;
|
|
||||||
where.isAdmin = 0;
|
|
||||||
return pageUsers({page, limit, ...where, ...orders});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 搜索 */
|
|
||||||
const reload = (where?: UserParam) => {
|
|
||||||
selection.value = [];
|
|
||||||
tableRef?.value?.reload({where});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 打开编辑弹窗 */
|
|
||||||
const openEdit = (row?: User) => {
|
|
||||||
current.value = row ?? null;
|
|
||||||
showEdit.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 打开用户详情弹窗 */
|
|
||||||
const openInfo = (row?: User) => {
|
|
||||||
current.value = row ?? null;
|
|
||||||
showInfo.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 打开编辑弹窗 */
|
|
||||||
const openImport = () => {
|
|
||||||
showImport.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 导出数据 */
|
|
||||||
const exportData = async () => {
|
|
||||||
exportLoading.value = true;
|
|
||||||
|
|
||||||
try {
|
|
||||||
// 定义表头
|
|
||||||
const array: (string | number)[][] = [
|
|
||||||
[
|
|
||||||
'用户ID',
|
|
||||||
'账号',
|
|
||||||
'昵称',
|
|
||||||
'真实姓名',
|
|
||||||
'手机号',
|
|
||||||
'邮箱',
|
|
||||||
'性别',
|
|
||||||
'所属部门',
|
|
||||||
'角色',
|
|
||||||
'状态',
|
|
||||||
'注册时间'
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
// 构建查询参数,使用当前搜索条件
|
|
||||||
const params = {
|
|
||||||
keywords: searchText.value,
|
|
||||||
isAdmin: 0
|
|
||||||
};
|
|
||||||
|
|
||||||
// 获取用户列表数据
|
|
||||||
const list = await listUsers(params);
|
|
||||||
|
|
||||||
if (!list || list.length === 0) {
|
|
||||||
message.warning('没有数据可以导出');
|
|
||||||
exportLoading.value = false;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 将数据转换为Excel行
|
|
||||||
list.forEach((user: User) => {
|
|
||||||
array.push([
|
|
||||||
`${user.userId || ''}`,
|
|
||||||
`${user.username || ''}`,
|
|
||||||
`${user.nickname || ''}`,
|
|
||||||
`${user.realName || ''}`,
|
|
||||||
`${user.phone || ''}`,
|
|
||||||
`${user.email || ''}`,
|
|
||||||
`${user.sexName || ''}`,
|
|
||||||
`${user.organizationName || ''}`,
|
|
||||||
`${user.roles?.map(r => r.roleName).join(',') || ''}`,
|
|
||||||
`${user.status === 0 ? '正常' : '冻结'}`,
|
|
||||||
`${user.createTime || ''}`
|
|
||||||
]);
|
|
||||||
});
|
|
||||||
|
|
||||||
// 生成Excel文件
|
|
||||||
const sheetName = `导出用户列表${dayjs(new Date()).format('YYYYMMDD')}`;
|
|
||||||
const workbook = {
|
|
||||||
SheetNames: [sheetName],
|
|
||||||
Sheets: {}
|
|
||||||
};
|
|
||||||
const sheet = utils.aoa_to_sheet(array);
|
|
||||||
workbook.Sheets[sheetName] = sheet;
|
|
||||||
|
|
||||||
// 设置列宽
|
|
||||||
sheet['!cols'] = [
|
|
||||||
{ wch: 10 }, // 用户ID
|
|
||||||
{ wch: 15 }, // 账号
|
|
||||||
{ wch: 12 }, // 昵称
|
|
||||||
{ wch: 12 }, // 真实姓名
|
|
||||||
{ wch: 15 }, // 手机号
|
|
||||||
{ wch: 20 }, // 邮箱
|
|
||||||
{ wch: 8 }, // 性别
|
|
||||||
{ wch: 15 }, // 所属部门
|
|
||||||
{ wch: 20 }, // 角色
|
|
||||||
{ wch: 8 }, // 状态
|
|
||||||
{ wch: 20 } // 注册时间
|
|
||||||
];
|
|
||||||
|
|
||||||
message.loading('正在生成Excel文件...', 0);
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
writeFile(workbook, `${sheetName}.xlsx`);
|
|
||||||
exportLoading.value = false;
|
|
||||||
message.destroy();
|
|
||||||
message.success(`成功导出 ${list.length} 条记录`);
|
|
||||||
}, 1000);
|
|
||||||
|
|
||||||
} catch (error: any) {
|
|
||||||
exportLoading.value = false;
|
|
||||||
message.error(error.message || '导出失败');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleTabs = (e) => {
|
|
||||||
userType.value = Number(e.target.value);
|
|
||||||
reload();
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 删除单个 */
|
|
||||||
const remove = (row: User) => {
|
|
||||||
const hide = messageLoading('请求中..', 0);
|
|
||||||
removeUser(row.userId)
|
|
||||||
.then((msg) => {
|
|
||||||
hide();
|
|
||||||
message.success(msg);
|
|
||||||
reload();
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
hide();
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 批量删除 */
|
|
||||||
const removeBatch = () => {
|
|
||||||
if (!selection.value.length) {
|
|
||||||
message.error('请至少选择一条数据');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Modal.confirm({
|
|
||||||
title: '提示',
|
|
||||||
content: '确定要删除选中的用户吗?',
|
|
||||||
icon: createVNode(ExclamationCircleOutlined),
|
|
||||||
maskClosable: true,
|
|
||||||
onOk: () => {
|
|
||||||
const hide = messageLoading('请求中..', 0);
|
|
||||||
removeUsers(selection.value.map((d) => d.userId))
|
|
||||||
.then((msg) => {
|
|
||||||
hide();
|
|
||||||
message.success(msg);
|
|
||||||
reload();
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
hide();
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 重置用户密码 */
|
|
||||||
const resetPsw = (row: User) => {
|
|
||||||
Modal.confirm({
|
|
||||||
title: '提示',
|
|
||||||
content: '确定要重置此用户的密码吗?',
|
|
||||||
icon: createVNode(ExclamationCircleOutlined),
|
|
||||||
maskClosable: true,
|
|
||||||
onOk: () => {
|
|
||||||
const hide = message.loading('请求中..', 0);
|
|
||||||
const password = uuid(8);
|
|
||||||
updateUserPassword(row.userId, password)
|
|
||||||
.then((msg) => {
|
|
||||||
hide();
|
|
||||||
message.success(msg + ',新密码:' + password);
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
hide();
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 修改用户状态 */
|
|
||||||
const updateIsAdmin = (row: User) => {
|
|
||||||
row.isAdmin = !row.isAdmin;
|
|
||||||
updateUser(row)
|
|
||||||
.then((msg) => {
|
|
||||||
message.success(msg);
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
message.error(e.message);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 自定义行属性 */
|
|
||||||
const customRow = (record: User) => {
|
|
||||||
return {
|
|
||||||
// 行点击事件
|
|
||||||
onClick: () => {
|
|
||||||
// console.log(record);
|
|
||||||
},
|
|
||||||
// 行双击事件
|
|
||||||
onDblclick: () => {
|
|
||||||
openEdit(record);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const query = async () => {
|
|
||||||
const info = await listRoles({})
|
|
||||||
if (info) {
|
|
||||||
roles.value = info
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => router.currentRoute.value.query,
|
|
||||||
() => {
|
|
||||||
query();
|
|
||||||
},
|
|
||||||
{immediate: true}
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
export default {
|
|
||||||
name: 'SystemAdmin'
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.sys-org-table {
|
|
||||||
:deep(.ant-table) {
|
|
||||||
.ant-table-thead > tr > th {
|
|
||||||
background: #fafafa;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #262626;
|
|
||||||
border-bottom: 2px solid #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ant-table-tbody > tr > td {
|
|
||||||
padding: 12px 8px;
|
|
||||||
border-bottom: 1px solid #f5f5f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ant-table-tbody > tr:hover > td {
|
|
||||||
background: #f8f9ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ant-tag {
|
|
||||||
margin: 0;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: 12px;
|
|
||||||
padding: 2px 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-primary {
|
|
||||||
color: #1890ff;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #40a9ff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-danger {
|
|
||||||
color: #ff4d4f;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #ff7875;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -8,36 +8,24 @@
|
|||||||
class="search-form"
|
class="search-form"
|
||||||
@finish="handleSearch"
|
@finish="handleSearch"
|
||||||
>
|
>
|
||||||
<a-form-item label="申请人姓名">
|
<a-form-item label="客户名称">
|
||||||
<a-input
|
<a-input
|
||||||
v-model:value="searchForm.realName"
|
v-model:value="searchForm.dealerName"
|
||||||
placeholder="请输入申请人姓名"
|
placeholder="请输入客户名称"
|
||||||
allow-clear
|
allow-clear
|
||||||
style="width: 160px"
|
style="width: 160px"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="手机号码">
|
<a-form-item label="联系电话">
|
||||||
<a-input
|
<a-input
|
||||||
v-model:value="searchForm.mobile"
|
v-model:value="searchForm.mobile"
|
||||||
placeholder="请输入手机号码"
|
placeholder="客户联系电话"
|
||||||
allow-clear
|
allow-clear
|
||||||
style="width: 160px"
|
style="width: 160px"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="申请方式">
|
|
||||||
<a-select
|
|
||||||
v-model:value="searchForm.applyType"
|
|
||||||
placeholder="全部方式"
|
|
||||||
allow-clear
|
|
||||||
style="width: 120px"
|
|
||||||
>
|
|
||||||
<a-select-option :value="10">需要审核</a-select-option>
|
|
||||||
<a-select-option :value="20">免审核</a-select-option>
|
|
||||||
</a-select>
|
|
||||||
</a-form-item>
|
|
||||||
|
|
||||||
<a-form-item label="审核状态">
|
<a-form-item label="审核状态">
|
||||||
<a-select
|
<a-select
|
||||||
v-model:value="searchForm.applyStatus"
|
v-model:value="searchForm.applyStatus"
|
||||||
@@ -45,13 +33,13 @@
|
|||||||
allow-clear
|
allow-clear
|
||||||
style="width: 120px"
|
style="width: 120px"
|
||||||
>
|
>
|
||||||
<a-select-option :value="10">待审核</a-select-option>
|
<a-select-option :value="10">跟进中</a-select-option>
|
||||||
<a-select-option :value="20">审核通过</a-select-option>
|
<a-select-option :value="20">已签约</a-select-option>
|
||||||
<a-select-option :value="30">审核驳回</a-select-option>
|
<a-select-option :value="30">已取消</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="申请时间">
|
<a-form-item label="添加时间">
|
||||||
<a-range-picker
|
<a-range-picker
|
||||||
v-model:value="searchForm.dateRange"
|
v-model:value="searchForm.dateRange"
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
@@ -72,50 +60,13 @@
|
|||||||
</a-space>
|
</a-space>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
|
|
||||||
<!-- 操作按钮 -->
|
|
||||||
<div class="action-buttons">
|
|
||||||
<a-space>
|
|
||||||
<!-- <a-button type="primary" @click="add" class="ele-btn-icon">-->
|
|
||||||
<!-- <template #icon>-->
|
|
||||||
<!-- <PlusOutlined />-->
|
|
||||||
<!-- </template>-->
|
|
||||||
<!-- 新增申请-->
|
|
||||||
<!-- </a-button>-->
|
|
||||||
<a-button
|
|
||||||
type="primary"
|
|
||||||
ghost
|
|
||||||
:disabled="!selection?.length"
|
|
||||||
@click="batchApprove"
|
|
||||||
class="ele-btn-icon"
|
|
||||||
>
|
|
||||||
<template #icon>
|
|
||||||
<CheckOutlined />
|
|
||||||
</template>
|
|
||||||
批量通过
|
|
||||||
</a-button>
|
|
||||||
<a-button
|
|
||||||
:disabled="!selection?.length"
|
|
||||||
@click="exportData"
|
|
||||||
class="ele-btn-icon"
|
|
||||||
>
|
|
||||||
<template #icon>
|
|
||||||
<ExportOutlined />
|
|
||||||
</template>
|
|
||||||
导出数据
|
|
||||||
</a-button>
|
|
||||||
</a-space>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { reactive } from 'vue';
|
import { reactive } from 'vue';
|
||||||
import {
|
import {
|
||||||
PlusOutlined,
|
SearchOutlined
|
||||||
SearchOutlined,
|
|
||||||
CheckOutlined,
|
|
||||||
ExportOutlined
|
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import type { ShopDealerApplyParam } from '@/api/shop/shopDealerApply/model';
|
import type { ShopDealerApplyParam } from '@/api/shop/shopDealerApply/model';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
@@ -166,6 +117,9 @@
|
|||||||
searchParams.startTime = dayjs(searchForm.dateRange[0]).format('YYYY-MM-DD');
|
searchParams.startTime = dayjs(searchForm.dateRange[0]).format('YYYY-MM-DD');
|
||||||
searchParams.endTime = dayjs(searchForm.dateRange[1]).format('YYYY-MM-DD');
|
searchParams.endTime = dayjs(searchForm.dateRange[1]).format('YYYY-MM-DD');
|
||||||
}
|
}
|
||||||
|
if(searchForm.dealerName){
|
||||||
|
searchParams.dealerName = searchForm.dealerName;
|
||||||
|
}
|
||||||
|
|
||||||
emit('search', searchParams);
|
emit('search', searchParams);
|
||||||
};
|
};
|
||||||
@@ -180,20 +134,6 @@
|
|||||||
emit('search', {});
|
emit('search', {});
|
||||||
};
|
};
|
||||||
|
|
||||||
// 新增
|
|
||||||
const add = () => {
|
|
||||||
emit('add');
|
|
||||||
};
|
|
||||||
|
|
||||||
// 批量通过
|
|
||||||
const batchApprove = () => {
|
|
||||||
emit('batchApprove');
|
|
||||||
};
|
|
||||||
|
|
||||||
// 导出数据
|
|
||||||
const exportData = () => {
|
|
||||||
emit('export');
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
:visible="visible"
|
:visible="visible"
|
||||||
:maskClosable="false"
|
:maskClosable="false"
|
||||||
:maxable="maxable"
|
:maxable="maxable"
|
||||||
:title="isUpdate ? '编辑分销商申请' : '新增分销商申请'"
|
:title="isUpdate ? '编辑客户' : '新增客户'"
|
||||||
:body-style="{ paddingBottom: '28px' }"
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
@update:visible="updateVisible"
|
@update:visible="updateVisible"
|
||||||
@ok="save"
|
@ok="save"
|
||||||
@@ -17,17 +17,65 @@
|
|||||||
:label-col="{ span: 6 }"
|
:label-col="{ span: 6 }"
|
||||||
:wrapper-col="{ span: 18 }"
|
:wrapper-col="{ span: 18 }"
|
||||||
>
|
>
|
||||||
<!-- 申请人信息 -->
|
|
||||||
|
<!-- 客户信息 -->
|
||||||
<a-divider orientation="left">
|
<a-divider orientation="left">
|
||||||
<span style="color: #1890ff; font-weight: 600;">申请人信息</span>
|
<span style="color: #1890ff; font-weight: 600;">客户信息</span>
|
||||||
</a-divider>
|
</a-divider>
|
||||||
|
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="用户ID" name="userId">
|
<a-form-item label="客户名称" name="dealerName">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入客户名称"
|
||||||
|
v-model:value="form.dealerName"
|
||||||
|
:disabled="form.applyStatus == 20"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="联系人" name="realName">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入联系人"
|
||||||
|
v-model:value="form.realName"
|
||||||
|
:disabled="form.applyStatus == 20"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="手机号码" name="mobile">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入手机号码"
|
||||||
|
:disabled="form.applyStatus == 20"
|
||||||
|
v-model:value="form.mobile"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="收益基数" name="rate">
|
||||||
|
<a-input-number
|
||||||
|
placeholder="0.007"
|
||||||
|
:min="0"
|
||||||
|
:max="1"
|
||||||
|
step="0.01"
|
||||||
|
:disabled="!hasRole('superAdmin')"
|
||||||
|
v-model:value="form.rate"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<!-- 报备人信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">报备人信息</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="报备人ID" name="userId">
|
||||||
<a-input-number
|
<a-input-number
|
||||||
:min="1"
|
:min="1"
|
||||||
placeholder="请输入用户ID"
|
placeholder="请输入报备人ID"
|
||||||
:disabled="isUpdate"
|
:disabled="isUpdate"
|
||||||
v-model:value="form.userId"
|
v-model:value="form.userId"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
@@ -35,23 +83,13 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="真实姓名" name="realName">
|
<a-form-item label="报备人" name="nickName">
|
||||||
<a-input
|
<a-input-number
|
||||||
placeholder="请输入真实姓名"
|
:min="1"
|
||||||
v-model:value="form.realName"
|
placeholder="请输入报备人名称"
|
||||||
:disabled="isUpdate"
|
:disabled="isUpdate"
|
||||||
/>
|
v-model:value="form.nickName"
|
||||||
</a-form-item>
|
style="width: 100%"
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
|
|
||||||
<a-row :gutter="16">
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="手机号码" name="mobile">
|
|
||||||
<a-input
|
|
||||||
placeholder="请输入手机号码"
|
|
||||||
:disabled="isUpdate"
|
|
||||||
v-model:value="form.mobile"
|
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -66,11 +104,22 @@
|
|||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="推荐人名称" name="refereeName">
|
||||||
|
<a-input-number
|
||||||
|
:min="1"
|
||||||
|
placeholder="请输入推荐人名称"
|
||||||
|
:disabled="isUpdate"
|
||||||
|
v-model:value="form.refereeName"
|
||||||
|
style="width: 100%"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
<!-- 审核信息 -->
|
<!-- 审核信息 -->
|
||||||
<a-divider orientation="left">
|
<a-divider orientation="left">
|
||||||
<span style="color: #1890ff; font-weight: 600;">审核信息</span>
|
<span style="color: #1890ff; font-weight: 600;">审核状态</span>
|
||||||
</a-divider>
|
</a-divider>
|
||||||
|
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
@@ -78,39 +127,25 @@
|
|||||||
<a-form-item label="审核状态" name="applyStatus">
|
<a-form-item label="审核状态" name="applyStatus">
|
||||||
<a-select v-model:value="form.applyStatus" placeholder="请选择审核状态" @change="handleStatusChange">
|
<a-select v-model:value="form.applyStatus" placeholder="请选择审核状态" @change="handleStatusChange">
|
||||||
<a-select-option :value="10">
|
<a-select-option :value="10">
|
||||||
<a-tag color="processing">待审核</a-tag>
|
<a-tag color="orange">跟进中</a-tag>
|
||||||
<span style="margin-left: 8px;">等待审核</span>
|
<span style="margin-left: 8px;">正在跟进中</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :value="20">
|
<a-select-option :value="20">
|
||||||
<a-tag color="success">审核通过</a-tag>
|
<a-tag color="success">已签约</a-tag>
|
||||||
<span style="margin-left: 8px;">申请通过</span>
|
<span style="margin-left: 8px;">客户已签约</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :value="30">
|
<a-select-option :value="30">
|
||||||
<a-tag color="error">审核驳回</a-tag>
|
<a-tag color="error">已取消</a-tag>
|
||||||
<span style="margin-left: 8px;">申请驳回</span>
|
<span style="margin-left: 8px;">客户已取消</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<!-- <a-col :span="12">-->
|
<a-col :span="12" v-if="form.applyStatus === 30">
|
||||||
<!-- <a-form-item label="审核时间" name="auditTime" v-if="form.applyStatus === 20 || form.applyStatus === 30">-->
|
<a-form-item label="取消原因" name="rejectReason">
|
||||||
<!-- <a-date-picker-->
|
|
||||||
<!-- v-model:value="form.auditTime"-->
|
|
||||||
<!-- show-time-->
|
|
||||||
<!-- format="YYYY-MM-DD HH:mm:ss"-->
|
|
||||||
<!-- placeholder="请选择审核时间"-->
|
|
||||||
<!-- style="width: 100%"-->
|
|
||||||
<!-- />-->
|
|
||||||
<!-- </a-form-item>-->
|
|
||||||
<!-- </a-col>-->
|
|
||||||
</a-row>
|
|
||||||
|
|
||||||
<a-row :gutter="16" v-if="form.applyStatus === 30">
|
|
||||||
<a-col :span="24">
|
|
||||||
<a-form-item label="驳回原因" name="rejectReason">
|
|
||||||
<a-textarea
|
<a-textarea
|
||||||
v-model:value="form.rejectReason"
|
v-model:value="form.rejectReason"
|
||||||
placeholder="请输入驳回原因"
|
placeholder="请输入取消原因"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
:rows="3"
|
:rows="3"
|
||||||
:maxlength="200"
|
:maxlength="200"
|
||||||
@@ -119,6 +154,57 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
|
<!-- 跟进情况 -->
|
||||||
|
<a-divider orientation="left" v-if="form.applyStatus == 10">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">跟进情况</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<!-- 历史跟进记录 -->
|
||||||
|
<div v-if="form.applyStatus == 10 && historyRecords.length > 0">
|
||||||
|
<a-divider orientation="left" style="font-size: 14px; color: #666;">
|
||||||
|
历史跟进记录
|
||||||
|
</a-divider>
|
||||||
|
<div v-for="(record, index) in historyRecords" :key="record.id" style="margin-bottom: 16px; padding: 12px; background-color: #f5f5f5; border-radius: 4px;">
|
||||||
|
<div class="flex justify-between" style="font-weight: 500; margin-bottom: 8px;">
|
||||||
|
<div>跟进 #{{ historyRecords.length - index }} <span class="text-gray-400 px-4">{{ record.createTime }}</span></div>
|
||||||
|
<a-tag color="#f50" class="cursor-pointer" @click="remove(record)">删除</a-tag>
|
||||||
|
</div>
|
||||||
|
<div style="white-space: pre-wrap;">
|
||||||
|
{{ record.content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 新增跟进记录 -->
|
||||||
|
<div v-if="form.applyStatus == 10">
|
||||||
|
<a-divider orientation="left" style="font-size: 14px; color: #666;">
|
||||||
|
新增跟进记录
|
||||||
|
</a-divider>
|
||||||
|
<a-form-item :wrapper-col="{ span: 24 }">
|
||||||
|
<div class="flex flex-col gap-2">
|
||||||
|
<a-textarea
|
||||||
|
v-model:value="newFollowUpContent"
|
||||||
|
placeholder="请输入本次跟进内容"
|
||||||
|
:rows="4"
|
||||||
|
:maxlength="500"
|
||||||
|
style="width: 80%"
|
||||||
|
show-count
|
||||||
|
/>
|
||||||
|
<div class="btn">
|
||||||
|
<a-button
|
||||||
|
type="primary"
|
||||||
|
@click="saveFollowUpRecord"
|
||||||
|
:loading="followUpLoading"
|
||||||
|
:disabled="!newFollowUpContent.trim()"
|
||||||
|
>
|
||||||
|
保存跟进记录
|
||||||
|
</a-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-form-item>
|
||||||
|
</div>
|
||||||
|
|
||||||
</a-form>
|
</a-form>
|
||||||
</ele-modal>
|
</ele-modal>
|
||||||
</template>
|
</template>
|
||||||
@@ -127,21 +213,18 @@
|
|||||||
import { ref, reactive, watch } from 'vue';
|
import { ref, reactive, watch } from 'vue';
|
||||||
import { Form, message } from 'ant-design-vue';
|
import { Form, message } from 'ant-design-vue';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import { assignObject, uuid } from 'ele-admin-pro';
|
import { assignObject } from 'ele-admin-pro';
|
||||||
import { addShopDealerApply, updateShopDealerApply } from '@/api/shop/shopDealerApply';
|
import { addShopDealerApply, updateShopDealerApply } from '@/api/shop/shopDealerApply';
|
||||||
|
import {listShopDealerRecord, addShopDealerRecord, removeShopDealerRecord} from '@/api/shop/shopDealerRecord';
|
||||||
import { ShopDealerApply } from '@/api/shop/shopDealerApply/model';
|
import { ShopDealerApply } from '@/api/shop/shopDealerApply/model';
|
||||||
import { useThemeStore } from '@/store/modules/theme';
|
import { ShopDealerRecord } from '@/api/shop/shopDealerRecord/model';
|
||||||
import { storeToRefs } from 'pinia';
|
import { FormInstance, RuleObject } from 'ant-design-vue/es/form';
|
||||||
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
import { messageLoading } from 'ele-admin-pro';
|
||||||
import { FormInstance } from 'ant-design-vue/es/form';
|
import {hasRole} from "@/utils/permission";
|
||||||
import { FileRecord } from '@/api/system/file/model';
|
|
||||||
|
|
||||||
// 是否是修改
|
// 是否是修改
|
||||||
const isUpdate = ref(false);
|
const isUpdate = ref(false);
|
||||||
const useForm = Form.useForm;
|
const useForm = Form.useForm;
|
||||||
// 是否开启响应式布局
|
|
||||||
const themeStore = useThemeStore();
|
|
||||||
const { styleResponsive } = storeToRefs(themeStore);
|
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
// 弹窗是否打开
|
// 弹窗是否打开
|
||||||
@@ -157,19 +240,30 @@
|
|||||||
|
|
||||||
// 提交状态
|
// 提交状态
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
// 跟进记录保存状态
|
||||||
|
const followUpLoading = ref(false);
|
||||||
// 是否显示最大化切换按钮
|
// 是否显示最大化切换按钮
|
||||||
const maxable = ref(true);
|
const maxable = ref(true);
|
||||||
// 表格选中数据
|
// 表格选中数据
|
||||||
const formRef = ref<FormInstance | null>(null);
|
const formRef = ref<FormInstance | null>(null);
|
||||||
const images = ref<ItemType[]>([]);
|
|
||||||
|
// 历史跟进记录
|
||||||
|
const historyRecords = ref<ShopDealerRecord[]>([]);
|
||||||
|
|
||||||
|
// 新的跟进内容
|
||||||
|
const newFollowUpContent = ref('');
|
||||||
|
|
||||||
// 表单数据
|
// 表单数据
|
||||||
const form = reactive<ShopDealerApply>({
|
const form = reactive<ShopDealerApply>({
|
||||||
applyId: undefined,
|
applyId: undefined,
|
||||||
userId: undefined,
|
userId: undefined,
|
||||||
|
nickName: undefined,
|
||||||
realName: '',
|
realName: '',
|
||||||
mobile: '',
|
mobile: '',
|
||||||
|
dealerName: '',
|
||||||
|
rate: 0.007,
|
||||||
refereeId: undefined,
|
refereeId: undefined,
|
||||||
|
refereeName: undefined,
|
||||||
applyType: 10,
|
applyType: 10,
|
||||||
applyTime: undefined,
|
applyTime: undefined,
|
||||||
applyStatus: 10,
|
applyStatus: 10,
|
||||||
@@ -192,64 +286,136 @@
|
|||||||
required: true,
|
required: true,
|
||||||
message: '请输入用户ID',
|
message: '请输入用户ID',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
} as RuleObject
|
||||||
],
|
],
|
||||||
realName: [
|
realName: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入真实姓名',
|
message: '请输入客户名称',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
},
|
} as RuleObject,
|
||||||
{
|
{
|
||||||
min: 2,
|
min: 2,
|
||||||
max: 20,
|
max: 20,
|
||||||
message: '姓名长度应在2-20个字符之间',
|
message: '姓名长度应在2-20个字符之间',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
} as RuleObject
|
||||||
|
],
|
||||||
|
rate: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入收益基数',
|
||||||
|
trigger: 'blur'
|
||||||
|
} as RuleObject
|
||||||
],
|
],
|
||||||
mobile: [
|
mobile: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入手机号码',
|
message: '请输入手机号码',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
},
|
} as RuleObject,
|
||||||
{
|
{
|
||||||
pattern: /^1[3-9]\d{9}$/,
|
pattern: /^1[3-9]\d{9}$/,
|
||||||
message: '请输入正确的手机号码',
|
message: '请输入正确的手机号码',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
} as RuleObject
|
||||||
],
|
],
|
||||||
applyType: [
|
applyType: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请选择申请方式',
|
message: '请选择申请方式',
|
||||||
trigger: 'change'
|
trigger: 'change'
|
||||||
}
|
} as RuleObject
|
||||||
],
|
],
|
||||||
applyStatus: [
|
applyStatus: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请选择审核状态',
|
message: '请选择审核状态',
|
||||||
trigger: 'change'
|
trigger: 'change'
|
||||||
}
|
} as RuleObject
|
||||||
],
|
],
|
||||||
rejectReason: [
|
rejectReason: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '驳回时必须填写驳回原因',
|
message: '驳回时必须填写驳回原因',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
} as RuleObject
|
||||||
],
|
],
|
||||||
auditTime: [
|
auditTime: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '审核时请选择审核时间',
|
message: '审核时请选择审核时间',
|
||||||
trigger: 'change'
|
trigger: 'change'
|
||||||
}
|
} as RuleObject
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* 获取历史跟进记录 */
|
||||||
|
const fetchHistoryRecords = async (dealerId: number) => {
|
||||||
|
try {
|
||||||
|
// 先通过list接口获取所有记录,然后过滤
|
||||||
|
const allRecords = await listShopDealerRecord({});
|
||||||
|
const records = allRecords.filter(record => record.dealerId === dealerId);
|
||||||
|
|
||||||
|
// 按创建时间倒序排列(最新的在前面)
|
||||||
|
historyRecords.value = records.sort((a, b) => {
|
||||||
|
if (a.createTime && b.createTime) {
|
||||||
|
return new Date(b.createTime).getTime() - new Date(a.createTime).getTime();
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error('获取历史跟进记录失败:', error);
|
||||||
|
message.error('获取历史跟进记录失败');
|
||||||
|
historyRecords.value = [];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 保存新的跟进记录 */
|
||||||
|
const saveFollowUpRecord = async () => {
|
||||||
|
// 检查是否有客户ID
|
||||||
|
if (!form.applyId) {
|
||||||
|
message.warning('请先保存客户信息');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查是否有跟进内容
|
||||||
|
if (!newFollowUpContent.value.trim()) {
|
||||||
|
message.warning('请输入跟进内容');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
followUpLoading.value = true;
|
||||||
|
const recordData: any = {
|
||||||
|
content: newFollowUpContent.value.trim(),
|
||||||
|
dealerId: form.applyId,
|
||||||
|
userId: form.userId,
|
||||||
|
status: 1, // 默认设置为已完成
|
||||||
|
sortNumber: 100
|
||||||
|
};
|
||||||
|
|
||||||
|
// 新增逻辑
|
||||||
|
await addShopDealerRecord(recordData);
|
||||||
|
message.success('跟进记录保存成功');
|
||||||
|
// 保存最后跟进内容到主表
|
||||||
|
await updateShopDealerApply({
|
||||||
|
...form,
|
||||||
|
comments: newFollowUpContent.value.trim()
|
||||||
|
})
|
||||||
|
|
||||||
|
// 清空输入框
|
||||||
|
newFollowUpContent.value = '';
|
||||||
|
|
||||||
|
// 重新加载历史记录
|
||||||
|
await fetchHistoryRecords(form.applyId);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('保存跟进记录失败:', error);
|
||||||
|
message.error('保存跟进记录失败');
|
||||||
|
} finally {
|
||||||
|
followUpLoading.value = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const { resetFields } = useForm(form, rules);
|
const { resetFields } = useForm(form, rules);
|
||||||
|
|
||||||
@@ -257,7 +423,7 @@
|
|||||||
const handleStatusChange = (value: number) => {
|
const handleStatusChange = (value: number) => {
|
||||||
// 当状态改为审核通过或驳回时,自动设置审核时间为当前时间
|
// 当状态改为审核通过或驳回时,自动设置审核时间为当前时间
|
||||||
if ((value === 20 || value === 30) && !form.auditTime) {
|
if ((value === 20 || value === 30) && !form.auditTime) {
|
||||||
form.auditTime = dayjs();
|
form.auditTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
|
||||||
}
|
}
|
||||||
// 当状态改为待审核时,清空审核时间和驳回原因
|
// 当状态改为待审核时,清空审核时间和驳回原因
|
||||||
if (value === 10) {
|
if (value === 10) {
|
||||||
@@ -266,6 +432,24 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* 删除单个 */
|
||||||
|
const remove = (row: ShopDealerRecord) => {
|
||||||
|
const hide = messageLoading('请求中..', 0);
|
||||||
|
removeShopDealerRecord(row.id)
|
||||||
|
.then((msg) => {
|
||||||
|
hide();
|
||||||
|
message.success(msg);
|
||||||
|
// 重新加载历史记录
|
||||||
|
if(props.data?.applyId){
|
||||||
|
fetchHistoryRecords(props.data?.applyId);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
hide();
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
/* 保存编辑 */
|
/* 保存编辑 */
|
||||||
const save = () => {
|
const save = () => {
|
||||||
if (!formRef.value) {
|
if (!formRef.value) {
|
||||||
@@ -287,7 +471,7 @@
|
|||||||
|
|
||||||
formRef.value
|
formRef.value
|
||||||
.validate(validateFields)
|
.validate(validateFields)
|
||||||
.then(() => {
|
.then(async () => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const formData = {
|
const formData = {
|
||||||
...form
|
...form
|
||||||
@@ -321,35 +505,35 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const saveOrUpdate = isUpdate.value ? updateShopDealerApply : addShopDealerApply;
|
const saveOrUpdate = isUpdate.value ? updateShopDealerApply : addShopDealerApply;
|
||||||
saveOrUpdate(formData)
|
try {
|
||||||
.then((msg) => {
|
const msg = await saveOrUpdate(formData);
|
||||||
loading.value = false;
|
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
|
|
||||||
updateVisible(false);
|
updateVisible(false);
|
||||||
emit('done');
|
emit('done');
|
||||||
})
|
} catch (e: any) {
|
||||||
.catch((e) => {
|
|
||||||
loading.value = false;
|
|
||||||
message.error(e.message);
|
message.error(e.message);
|
||||||
});
|
} finally {
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {
|
||||||
|
loading.value = false;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.visible,
|
() => props.visible,
|
||||||
(visible) => {
|
async (visible) => {
|
||||||
if (visible) {
|
if (visible) {
|
||||||
if (props.data) {
|
if (props.data) {
|
||||||
assignObject(form, props.data);
|
assignObject(form, props.data);
|
||||||
// 处理时间字段 - 确保转换为dayjs对象
|
|
||||||
if (props.data.applyTime) {
|
|
||||||
form.applyTime = dayjs(props.data.applyTime);
|
|
||||||
}
|
|
||||||
if (props.data.auditTime) {
|
|
||||||
form.auditTime = dayjs(props.data.auditTime);
|
|
||||||
}
|
|
||||||
isUpdate.value = true;
|
isUpdate.value = true;
|
||||||
|
|
||||||
|
// 如果是修改且状态为跟进中,获取历史跟进记录
|
||||||
|
if (props.data.applyId && props.data.applyStatus === 10) {
|
||||||
|
await fetchHistoryRecords(props.data.applyId);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// 重置为默认值
|
// 重置为默认值
|
||||||
Object.assign(form, {
|
Object.assign(form, {
|
||||||
@@ -359,7 +543,7 @@
|
|||||||
mobile: '',
|
mobile: '',
|
||||||
refereeId: undefined,
|
refereeId: undefined,
|
||||||
applyType: 10,
|
applyType: 10,
|
||||||
applyTime: dayjs(),
|
applyTime: dayjs().format('YYYY-MM-DD HH:mm:ss'),
|
||||||
applyStatus: 10,
|
applyStatus: 10,
|
||||||
auditTime: undefined,
|
auditTime: undefined,
|
||||||
rejectReason: '',
|
rejectReason: '',
|
||||||
@@ -368,6 +552,10 @@
|
|||||||
updateTime: undefined
|
updateTime: undefined
|
||||||
});
|
});
|
||||||
isUpdate.value = false;
|
isUpdate.value = false;
|
||||||
|
|
||||||
|
// 重置历史记录和新内容
|
||||||
|
historyRecords.value = [];
|
||||||
|
newFollowUpContent.value = '';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
resetFields();
|
resetFields();
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
:customRow="customRow"
|
:customRow="customRow"
|
||||||
tool-class="ele-toolbar-form"
|
tool-class="ele-toolbar-form"
|
||||||
class="sys-org-table"
|
class="sys-org-table"
|
||||||
v-model:selection="selection"
|
|
||||||
>
|
>
|
||||||
<template #toolbar>
|
<template #toolbar>
|
||||||
<search
|
<search
|
||||||
@@ -22,9 +21,32 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'applyStatus'">
|
<template v-if="column.key === 'applyStatus'">
|
||||||
<a-tag v-if="record.applyStatus === 10" color="orange">待审核</a-tag>
|
<a-tag v-if="record.applyStatus === 10" color="orange">跟进中</a-tag>
|
||||||
<a-tag v-if="record.applyStatus === 20" color="green">已通过</a-tag>
|
<a-tag v-if="record.applyStatus === 20" color="green">已签约</a-tag>
|
||||||
<a-tag v-if="record.applyStatus === 30" color="red">已驳回</a-tag>
|
<a-tag v-if="record.applyStatus === 30" color="red">已取消</a-tag>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'customer'">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span class="font-medium">{{ record.dealerName }}</span>
|
||||||
|
<span class="text-gray-400">联系人:{{ record.realName }}</span>
|
||||||
|
<span class="text-gray-400">联系电话:{{ record.mobile }}</span>
|
||||||
|
<span class="text-gray-400">户号:{{ record.dealerCode }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'applicantInfo'">
|
||||||
|
<div class="text-gray-600">{{ record.nickName }}</div>
|
||||||
|
<div class="text-gray-400">{{ record.phone }}</div>
|
||||||
|
<div class="text-gray-400">{{ record.rate }}</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'comments'">
|
||||||
|
<div class="text-gray-400">{{ record.comments }}</div>
|
||||||
|
<div class="text-gray-400" v-if="record.comments">{{ record.updateTime }}</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'createTime'">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span>{{ record.createTime }}</span>
|
||||||
|
<span>保护期:7天</span>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a @click="openEdit(record)" class="ele-text-primary">
|
<a @click="openEdit(record)" class="ele-text-primary">
|
||||||
@@ -35,7 +57,7 @@
|
|||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
<a @click="approveApply(record)" class="ele-text-success">
|
<a @click="approveApply(record)" class="ele-text-success">
|
||||||
<CheckOutlined/>
|
<CheckOutlined/>
|
||||||
通过
|
已签约
|
||||||
</a>
|
</a>
|
||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
<a @click="rejectApply(record)" class="ele-text-warning">
|
<a @click="rejectApply(record)" class="ele-text-warning">
|
||||||
@@ -115,6 +137,7 @@ const datasource: DatasourceFunction = ({
|
|||||||
if (filters) {
|
if (filters) {
|
||||||
where.status = filters.status;
|
where.status = filters.status;
|
||||||
}
|
}
|
||||||
|
where.type = 4;
|
||||||
return pageShopDealerApply({
|
return pageShopDealerApply({
|
||||||
...where,
|
...where,
|
||||||
...orders,
|
...orders,
|
||||||
@@ -130,48 +153,43 @@ const columns = ref<ColumnItem[]>([
|
|||||||
dataIndex: 'userId',
|
dataIndex: 'userId',
|
||||||
key: 'userId',
|
key: 'userId',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 80,
|
width: 90,
|
||||||
fixed: 'left'
|
fixed: 'left'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '申请人信息',
|
title: '客户名称',
|
||||||
|
dataIndex: 'customer',
|
||||||
|
key: 'customer'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '最后跟进情况',
|
||||||
|
dataIndex: 'comments',
|
||||||
|
key: 'comments',
|
||||||
|
align: 'left'
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// title: '收益基数',
|
||||||
|
// dataIndex: 'rate',
|
||||||
|
// key: 'rate',
|
||||||
|
// align: 'left'
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
title: '报备人信息',
|
||||||
|
dataIndex: 'applicantInfo',
|
||||||
key: 'applicantInfo',
|
key: 'applicantInfo',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
fixed: 'left',
|
fixed: 'left',
|
||||||
customRender: ({record}) => {
|
customRender: ({record}) => {
|
||||||
return `${record.realName || '-'} (${record.mobile || '-'})`;
|
return `${record.nickName || '-'} (${record.phone || '-'})`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '申请方式',
|
title: '状态',
|
||||||
dataIndex: 'applyType',
|
|
||||||
key: 'applyType',
|
|
||||||
align: 'center',
|
|
||||||
width: 120,
|
|
||||||
customRender: ({text}) => {
|
|
||||||
const typeMap = {
|
|
||||||
10: {text: '需审核', color: 'orange'},
|
|
||||||
20: {text: '免审核', color: 'green'}
|
|
||||||
};
|
|
||||||
const type = typeMap[text] || {text: '未知', color: 'default'};
|
|
||||||
return {type: 'tag', props: {color: type.color}, children: type.text};
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '审核状态',
|
|
||||||
dataIndex: 'applyStatus',
|
dataIndex: 'applyStatus',
|
||||||
key: 'applyStatus',
|
key: 'applyStatus',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 120
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '推荐人',
|
|
||||||
dataIndex: 'refereeId',
|
|
||||||
key: 'refereeId',
|
|
||||||
align: 'center',
|
|
||||||
width: 100,
|
|
||||||
customRender: ({text}) => text ? `ID: ${text}` : '无'
|
|
||||||
},
|
|
||||||
// {
|
// {
|
||||||
// title: '申请时间',
|
// title: '申请时间',
|
||||||
// dataIndex: 'applyTime',
|
// dataIndex: 'applyTime',
|
||||||
@@ -188,29 +206,21 @@ const columns = ref<ColumnItem[]>([
|
|||||||
// customRender: ({ text }) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
// customRender: ({ text }) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
title: '驳回原因',
|
title: '添加时间',
|
||||||
dataIndex: 'rejectReason',
|
|
||||||
key: 'rejectReason',
|
|
||||||
align: 'left',
|
|
||||||
ellipsis: true,
|
|
||||||
customRender: ({text}) => text || '-'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
key: 'createTime',
|
key: 'createTime',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
sorter: true,
|
sorter: true,
|
||||||
ellipsis: true
|
ellipsis: true
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '操作',
|
|
||||||
key: 'action',
|
|
||||||
fixed: 'right',
|
|
||||||
align: 'center',
|
|
||||||
width: 380,
|
|
||||||
hideInSetting: true
|
|
||||||
}
|
}
|
||||||
|
// {
|
||||||
|
// title: '操作',
|
||||||
|
// key: 'action',
|
||||||
|
// fixed: 'right',
|
||||||
|
// align: 'center',
|
||||||
|
// width: 380,
|
||||||
|
// hideInSetting: true
|
||||||
|
// }
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/* 搜索 */
|
/* 搜索 */
|
||||||
@@ -428,67 +438,3 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.sys-org-table {
|
|
||||||
:deep(.ant-table-thead > tr > th) {
|
|
||||||
background-color: #fafafa;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.ant-table-tbody > tr:hover > td) {
|
|
||||||
background-color: #f8f9fa;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.detail-item {
|
|
||||||
p {
|
|
||||||
margin: 4px 0;
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
|
|
||||||
strong {
|
|
||||||
color: #1890ff;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-primary {
|
|
||||||
color: #1890ff;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #40a9ff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-info {
|
|
||||||
color: #13c2c2;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #36cfc9;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-success {
|
|
||||||
color: #52c41a;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #73d13d;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-warning {
|
|
||||||
color: #faad14;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #ffc53d;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ele-text-danger {
|
|
||||||
color: #ff4d4f;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #ff7875;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
</p>
|
</p>
|
||||||
<p class="ant-upload-hint">将文件拖到此处,或点击上传</p>
|
<p class="ant-upload-hint">将文件拖到此处,或点击上传</p>
|
||||||
</a-upload-dragger>
|
</a-upload-dragger>
|
||||||
|
<div class="ant-upload-text text-gray-400">
|
||||||
|
<div>1、必须按<a href="https://oss.wsdns.cn/20251018/408b805ec3cd4084a4dc686e130af578.xlsx" target="_blank">导入模版</a>的格式上传</div>
|
||||||
|
<div>2、导入成功确认结算完成佣金的发放</div>
|
||||||
|
</div>
|
||||||
</a-spin>
|
</a-spin>
|
||||||
</ele-modal>
|
</ele-modal>
|
||||||
</template>
|
</template>
|
||||||
@@ -27,7 +31,7 @@
|
|||||||
import {ref} from 'vue';
|
import {ref} from 'vue';
|
||||||
import {message} from 'ant-design-vue/es';
|
import {message} from 'ant-design-vue/es';
|
||||||
import {CloudUploadOutlined} from '@ant-design/icons-vue';
|
import {CloudUploadOutlined} from '@ant-design/icons-vue';
|
||||||
import { importShopDealerOrder } from '@/api/shop/shopDealerOrder';
|
import {importSdyDealerOrder} from "@/api/sdy/sdyDealerOrder";
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: 'done'): void;
|
(e: 'done'): void;
|
||||||
@@ -58,7 +62,7 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
importShopDealerOrder(file)
|
importSdyDealerOrder(file)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
|
|||||||
@@ -1,114 +1,118 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="search-container">
|
<div class="flex items-center gap-20">
|
||||||
<!-- 搜索表单 -->
|
<!-- 搜索表单 -->
|
||||||
<a-form
|
<a-form
|
||||||
:model="searchForm"
|
:model="where"
|
||||||
layout="inline"
|
layout="inline"
|
||||||
class="search-form"
|
class="search-form"
|
||||||
@finish="handleSearch"
|
@finish="handleSearch"
|
||||||
>
|
>
|
||||||
<a-form-item label="订单编号">
|
<a-form-item>
|
||||||
<a-input
|
<a-space>
|
||||||
v-model:value="searchForm.orderId"
|
<a-button
|
||||||
placeholder="请输入订单编号"
|
danger
|
||||||
allow-clear
|
class="ele-btn-icon"
|
||||||
style="width: 160px"
|
v-if="selection.length > 0"
|
||||||
/>
|
:disabled="selection?.length === 0"
|
||||||
</a-form-item>
|
@click="removeBatch"
|
||||||
|
|
||||||
<a-form-item label="商品名称">
|
|
||||||
<a-input
|
|
||||||
v-model:value="searchForm.productName"
|
|
||||||
placeholder="请输入商品名称"
|
|
||||||
allow-clear
|
|
||||||
style="width: 160px"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
|
|
||||||
<a-form-item label="订单状态">
|
|
||||||
<a-select
|
|
||||||
v-model:value="searchForm.isInvalid"
|
|
||||||
placeholder="全部"
|
|
||||||
allow-clear
|
|
||||||
style="width: 120px"
|
|
||||||
>
|
>
|
||||||
<a-select-option :value="0">有效</a-select-option>
|
<template #icon>
|
||||||
<a-select-option :value="1">失效</a-select-option>
|
<DeleteOutlined/>
|
||||||
</a-select>
|
</template>
|
||||||
|
<span>批量删除</span>
|
||||||
|
</a-button>
|
||||||
|
</a-space>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="结算状态">
|
<!-- <a-form-item label="订单状态">-->
|
||||||
<a-select
|
<!-- <a-select-->
|
||||||
v-model:value="searchForm.isSettled"
|
<!-- v-model:value="where.isInvalid"-->
|
||||||
placeholder="全部"
|
<!-- placeholder="全部"-->
|
||||||
allow-clear
|
<!-- allow-clear-->
|
||||||
style="width: 120px"
|
<!-- style="width: 120px"-->
|
||||||
>
|
<!-- >-->
|
||||||
<a-select-option :value="0">未结算</a-select-option>
|
<!-- <a-select-option :value="0">有效</a-select-option>-->
|
||||||
<a-select-option :value="1">已结算</a-select-option>
|
<!-- <a-select-option :value="1">失效</a-select-option>-->
|
||||||
</a-select>
|
<!-- </a-select>-->
|
||||||
</a-form-item>
|
<!-- </a-form-item>-->
|
||||||
|
|
||||||
|
<!-- <a-form-item label="结算状态">-->
|
||||||
|
<!-- <a-select-->
|
||||||
|
<!-- v-model:value="where.isSettled"-->
|
||||||
|
<!-- placeholder="全部"-->
|
||||||
|
<!-- allow-clear-->
|
||||||
|
<!-- style="width: 120px"-->
|
||||||
|
<!-- >-->
|
||||||
|
<!-- <a-select-option :value="0">未结算</a-select-option>-->
|
||||||
|
<!-- <a-select-option :value="1">已结算</a-select-option>-->
|
||||||
|
<!-- </a-select>-->
|
||||||
|
<!-- </a-form-item>-->
|
||||||
|
|
||||||
<a-form-item>
|
<a-form-item>
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-button type="primary" html-type="submit" class="ele-btn-icon">
|
<a-input-search
|
||||||
<template #icon>
|
allow-clear
|
||||||
<SearchOutlined />
|
placeholder="请输入关键词"
|
||||||
</template>
|
style="width: 240px"
|
||||||
搜索
|
v-model:value="where.keywords"
|
||||||
</a-button>
|
@search="handleSearch"
|
||||||
|
/>
|
||||||
|
<!-- <a-button type="primary" html-type="submit" class="ele-btn-icon">-->
|
||||||
|
<!-- <template #icon>-->
|
||||||
|
<!-- <SearchOutlined/>-->
|
||||||
|
<!-- </template>-->
|
||||||
|
<!-- 搜索-->
|
||||||
|
<!-- </a-button>-->
|
||||||
<a-button @click="resetSearch">
|
<a-button @click="resetSearch">
|
||||||
重置
|
重置
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-space>
|
</a-space>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
|
<a-divider type="vertical"/>
|
||||||
<!-- 操作按钮 -->
|
|
||||||
<div class="action-buttons">
|
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-button
|
<!-- <a-button @click="exportData" class="ele-btn-icon">-->
|
||||||
type="primary"
|
<!-- <template #icon>-->
|
||||||
@click="batchSettle"
|
<!-- <ExportOutlined />-->
|
||||||
class="ele-btn-icon"
|
<!-- </template>-->
|
||||||
>
|
<!-- 导出数据-->
|
||||||
<template #icon>
|
<!-- </a-button>-->
|
||||||
<DollarOutlined />
|
|
||||||
</template>
|
|
||||||
批量结算
|
|
||||||
</a-button>
|
|
||||||
<a-button @click="exportData" class="ele-btn-icon">
|
|
||||||
<template #icon>
|
|
||||||
<ExportOutlined />
|
|
||||||
</template>
|
|
||||||
导出数据
|
|
||||||
</a-button>
|
|
||||||
<a-button @click="openImport" class="ele-btn-icon">
|
<a-button @click="openImport" class="ele-btn-icon">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<UploadOutlined/>
|
<UploadOutlined/>
|
||||||
</template>
|
</template>
|
||||||
导入数据
|
导入数据
|
||||||
</a-button>
|
</a-button>
|
||||||
|
<a-button
|
||||||
|
type="primary"
|
||||||
|
danger
|
||||||
|
@click="batchSettle"
|
||||||
|
:disabled="selection?.length === 0"
|
||||||
|
>
|
||||||
|
<template #icon>
|
||||||
|
<DollarOutlined/>
|
||||||
|
</template>
|
||||||
|
批量结算
|
||||||
|
</a-button>
|
||||||
</a-space>
|
</a-space>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 导入弹窗 -->
|
<!-- 导入弹窗 -->
|
||||||
<Import v-model:visible="showImport" @done="emit('importDone')"/>
|
<Import v-model:visible="showImport" @done="emit('importDone')"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { reactive, ref } from 'vue';
|
import {ref} from 'vue';
|
||||||
import {
|
import {
|
||||||
SearchOutlined,
|
|
||||||
DollarOutlined,
|
DollarOutlined,
|
||||||
ExportOutlined,
|
UploadOutlined,
|
||||||
UploadOutlined
|
DeleteOutlined
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import type {ShopDealerOrderParam} from '@/api/shop/shopDealerOrder/model';
|
import type {ShopDealerOrderParam} from '@/api/shop/shopDealerOrder/model';
|
||||||
import Import from './Import.vue';
|
import Import from './Import.vue';
|
||||||
|
import useSearch from "@/utils/use-search";
|
||||||
|
|
||||||
const props = withDefaults(
|
withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
// 选中的数据
|
// 选中的数据
|
||||||
selection?: any[];
|
selection?: any[];
|
||||||
@@ -123,14 +127,14 @@
|
|||||||
(e: 'batchSettle'): void;
|
(e: 'batchSettle'): void;
|
||||||
(e: 'export'): void;
|
(e: 'export'): void;
|
||||||
(e: 'importDone'): void;
|
(e: 'importDone'): void;
|
||||||
|
(e: 'remove'): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
// 是否显示导入弹窗
|
// 是否显示导入弹窗
|
||||||
const showImport = ref(false);
|
const showImport = ref(false);
|
||||||
|
|
||||||
// 搜索表单
|
// 搜索表单
|
||||||
const searchForm = reactive<ShopDealerOrderParam>({
|
const {where, resetFields} = useSearch<ShopDealerOrderParam>({
|
||||||
orderId: undefined,
|
|
||||||
orderNo: '',
|
orderNo: '',
|
||||||
productName: '',
|
productName: '',
|
||||||
isInvalid: undefined,
|
isInvalid: undefined,
|
||||||
@@ -139,7 +143,7 @@
|
|||||||
|
|
||||||
// 搜索
|
// 搜索
|
||||||
const handleSearch = () => {
|
const handleSearch = () => {
|
||||||
const searchParams = { ...searchForm };
|
const searchParams = {...where};
|
||||||
// 清除空值
|
// 清除空值
|
||||||
Object.keys(searchParams).forEach(key => {
|
Object.keys(searchParams).forEach(key => {
|
||||||
if (searchParams[key] === '' || searchParams[key] === undefined) {
|
if (searchParams[key] === '' || searchParams[key] === undefined) {
|
||||||
@@ -151,12 +155,18 @@
|
|||||||
|
|
||||||
// 重置搜索
|
// 重置搜索
|
||||||
const resetSearch = () => {
|
const resetSearch = () => {
|
||||||
Object.keys(searchForm).forEach(key => {
|
// Object.keys(searchForm).forEach(key => {
|
||||||
searchForm[key] = key === 'orderId' ? undefined : '';
|
// searchForm[key] = key === 'orderId' ? undefined : '';
|
||||||
});
|
// });
|
||||||
|
resetFields();
|
||||||
emit('search', {});
|
emit('search', {});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 批量删除
|
||||||
|
const removeBatch = () => {
|
||||||
|
emit('remove');
|
||||||
|
};
|
||||||
|
|
||||||
// 批量结算
|
// 批量结算
|
||||||
const batchSettle = () => {
|
const batchSettle = () => {
|
||||||
emit('batchSettle');
|
emit('batchSettle');
|
||||||
@@ -172,25 +182,3 @@
|
|||||||
showImport.value = true;
|
showImport.value = true;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.search-container {
|
|
||||||
background: #fff;
|
|
||||||
padding: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
|
|
||||||
.search-form {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
|
|
||||||
:deep(.ant-form-item) {
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.action-buttons {
|
|
||||||
border-top: 1px solid #f0f0f0;
|
|
||||||
padding-top: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -5,9 +5,10 @@
|
|||||||
:visible="visible"
|
:visible="visible"
|
||||||
:maskClosable="false"
|
:maskClosable="false"
|
||||||
:maxable="maxable"
|
:maxable="maxable"
|
||||||
:title="isUpdate ? '编辑分销订单记录' : '添加分销订单记录'"
|
:title="isUpdate ? '分销订单' : '分销订单'"
|
||||||
:body-style="{ paddingBottom: '28px' }"
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
@update:visible="updateVisible"
|
@update:visible="updateVisible"
|
||||||
|
:okText="`立即结算`"
|
||||||
@ok="save"
|
@ok="save"
|
||||||
>
|
>
|
||||||
<a-form
|
<a-form
|
||||||
@@ -19,76 +20,83 @@
|
|||||||
>
|
>
|
||||||
<!-- 订单基本信息 -->
|
<!-- 订单基本信息 -->
|
||||||
<a-divider orientation="left">
|
<a-divider orientation="left">
|
||||||
<span style="color: #1890ff; font-weight: 600;">订单基本信息</span>
|
<span style="color: #1890ff; font-weight: 600;">基本信息</span>
|
||||||
</a-divider>
|
</a-divider>
|
||||||
|
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="买家用户ID" name="userId">
|
<a-form-item label="客户名称" name="title">
|
||||||
<a-input-number
|
{{ form.title }}
|
||||||
:min="1"
|
|
||||||
placeholder="请输入买家用户ID"
|
|
||||||
v-model:value="form.userId"
|
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="订单ID" name="orderId">
|
<a-form-item label="订单编号" name="orderNo">
|
||||||
<a-input-number
|
{{ form.orderNo }}
|
||||||
:min="1"
|
</a-form-item>
|
||||||
placeholder="请输入订单ID"
|
</a-col>
|
||||||
v-model:value="form.orderId"
|
<a-col :span="12">
|
||||||
style="width: 100%"
|
<a-form-item label="结算电量" name="orderPrice">
|
||||||
/>
|
{{ parseFloat(form.orderPrice || 0).toFixed(2) }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="换算成度" name="dealerPrice">
|
||||||
|
{{ parseFloat(form.degreePrice || 0).toFixed(2) }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="税率" name="rate">
|
||||||
|
{{ form.rate }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="单价" name="price">
|
||||||
|
{{ form.price }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="结算金额" name="payPrice">
|
||||||
|
{{ parseFloat(form.settledPrice || 0).toFixed(2) }}
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="实发金额" name="payPrice">
|
||||||
|
{{ parseFloat(form.payPrice || 0).toFixed(2) }}
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
<div class="font-bold text-gray-400 bg-gray-50">开发调试</div>
|
||||||
<a-form-item label="订单总金额" name="orderPrice">
|
<div class="text-gray-400 bg-gray-50">
|
||||||
<a-input-number
|
<div>业务员({{ form.userId }}):{{ form.nickname }}</div>
|
||||||
:min="0"
|
<div>一级分销商({{ form.firstUserId }}):{{ form.firstNickname }},一级佣金30%:{{ form.firstMoney }}</div>
|
||||||
:precision="2"
|
<div>二级分销商({{ form.secondUserId }}):{{ form.secondNickname }},二级佣金10%:{{ form.secondMoney }}</div>
|
||||||
placeholder="请输入订单总金额(不含运费)"
|
<div>三级分销商({{ form.thirdUserId }}):{{ form.thirdNickname }},三级佣金60%:{{ form.thirdMoney }}</div>
|
||||||
v-model:value="form.orderPrice"
|
</div>
|
||||||
style="width: 300px"
|
|
||||||
>
|
|
||||||
<template #addonAfter>元</template>
|
|
||||||
</a-input-number>
|
|
||||||
</a-form-item>
|
|
||||||
|
|
||||||
<!-- 分销商信息 -->
|
<!-- 分销商信息 -->
|
||||||
<a-divider orientation="left">
|
<a-divider orientation="left">
|
||||||
<span style="color: #1890ff; font-weight: 600;">分销商信息</span>
|
<span style="color: #1890ff; font-weight: 600;">收益计算</span>
|
||||||
</a-divider>
|
</a-divider>
|
||||||
|
|
||||||
<!-- 一级分销商 -->
|
<!-- 一级分销商 -->
|
||||||
<div class="dealer-section">
|
<div class="dealer-section">
|
||||||
<h4 class="dealer-title">
|
<h4 class="dealer-title">
|
||||||
<a-tag color="red">一级分销商</a-tag>
|
<a-tag color="orange">一级佣金30%</a-tag>
|
||||||
</h4>
|
</h4>
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="用户ID" name="firstUserId">
|
<a-form-item label="用户ID" name="firstUserId">
|
||||||
<a-input-number
|
{{ form.firstUserId }}
|
||||||
:min="1"
|
</a-form-item>
|
||||||
placeholder="请输入一级分销商用户ID"
|
<a-form-item label="昵称" name="firstNickname">
|
||||||
v-model:value="form.firstUserId"
|
{{ form.firstNickname }}
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="分销佣金" name="firstMoney">
|
<a-form-item label="占比" name="rate">
|
||||||
<a-input-number
|
{{ '30%' }}
|
||||||
:min="0"
|
</a-form-item>
|
||||||
:precision="2"
|
<a-form-item label="获取收益" name="firstMoney">
|
||||||
placeholder="请输入一级分销佣金"
|
{{ form.firstMoney }}
|
||||||
v-model:value="form.firstMoney"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<template #addonAfter>元</template>
|
|
||||||
</a-input-number>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -97,122 +105,72 @@
|
|||||||
<!-- 二级分销商 -->
|
<!-- 二级分销商 -->
|
||||||
<div class="dealer-section">
|
<div class="dealer-section">
|
||||||
<h4 class="dealer-title">
|
<h4 class="dealer-title">
|
||||||
<a-tag color="orange">二级分销商</a-tag>
|
<a-tag color="orange">二级佣金10%</a-tag>
|
||||||
</h4>
|
</h4>
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="用户ID" name="secondUserId">
|
<a-form-item label="用户ID" name="secondUserId">
|
||||||
<a-input-number
|
{{ form.secondUserId }}
|
||||||
:min="1"
|
</a-form-item>
|
||||||
placeholder="请输入二级分销商用户ID"
|
<a-form-item label="昵称" name="nickname">
|
||||||
v-model:value="form.secondUserId"
|
{{ form.secondNickname }}
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="分销佣金" name="secondMoney">
|
<a-form-item label="占比" name="rate">
|
||||||
<a-input-number
|
10%
|
||||||
:min="0"
|
</a-form-item>
|
||||||
:precision="2"
|
<a-form-item label="获取收益" name="firstMoney">
|
||||||
placeholder="请输入二级分销佣金"
|
{{ form.secondMoney }}
|
||||||
v-model:value="form.secondMoney"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<template #addonAfter>元</template>
|
|
||||||
</a-input-number>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 三级分销商 -->
|
<!-- 三级分销商 -->
|
||||||
<div class="dealer-section">
|
<div class="dealer-section" v-if="form.thirdUserId > 0">
|
||||||
<h4 class="dealer-title">
|
<h4 class="dealer-title">
|
||||||
<a-tag color="gold">三级分销商</a-tag>
|
<a-tag color="orange">三级佣金60%</a-tag>
|
||||||
</h4>
|
</h4>
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="用户ID" name="thirdUserId">
|
<a-form-item label="用户ID" name="thirdUserId">
|
||||||
<a-input-number
|
{{ form.thirdUserId }}
|
||||||
:min="1"
|
</a-form-item>
|
||||||
placeholder="请输入三级分销商用户ID"
|
<a-form-item label="昵称" name="thirdNickname">
|
||||||
v-model:value="form.thirdUserId"
|
{{ form.thirdNickname }}
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="分销佣金" name="thirdMoney">
|
<a-form-item label="占比" name="rate">
|
||||||
<a-input-number
|
{{ '60%' }}
|
||||||
:min="0"
|
</a-form-item>
|
||||||
:precision="2"
|
<a-form-item label="获取收益" name="thirdMoney">
|
||||||
placeholder="请输入三级分销佣金"
|
{{ form.thirdMoney }}
|
||||||
v-model:value="form.thirdMoney"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<template #addonAfter>元</template>
|
|
||||||
</a-input-number>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 状态信息 -->
|
|
||||||
<a-divider orientation="left">
|
|
||||||
<span style="color: #1890ff; font-weight: 600;">状态信息</span>
|
|
||||||
</a-divider>
|
|
||||||
|
|
||||||
<a-row :gutter="16">
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="订单状态" name="isInvalid">
|
|
||||||
<a-radio-group v-model:value="form.isInvalid">
|
|
||||||
<a-radio :value="0">有效</a-radio>
|
|
||||||
<a-radio :value="1">失效</a-radio>
|
|
||||||
</a-radio-group>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="结算状态" name="isSettled">
|
|
||||||
<a-radio-group v-model:value="form.isSettled">
|
|
||||||
<a-radio :value="0">未结算</a-radio>
|
|
||||||
<a-radio :value="1">已结算</a-radio>
|
|
||||||
</a-radio-group>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
|
|
||||||
<a-form-item label="结算时间" name="settleTime" v-if="form.isSettled === 1">
|
<a-form-item label="结算时间" name="settleTime" v-if="form.isSettled === 1">
|
||||||
<a-date-picker
|
{{ form.settleTime }}
|
||||||
v-model:value="form.settleTime"
|
|
||||||
show-time
|
|
||||||
placeholder="请选择结算时间"
|
|
||||||
style="width: 300px"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
|
|
||||||
</ele-modal>
|
</ele-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import {ref, reactive, watch} from 'vue';
|
import {ref, reactive, watch} from 'vue';
|
||||||
import {Form, message} from 'ant-design-vue';
|
import {Form, message} from 'ant-design-vue';
|
||||||
import dayjs from 'dayjs';
|
import {assignObject} from 'ele-admin-pro';
|
||||||
import { assignObject, uuid } from 'ele-admin-pro';
|
|
||||||
import { addShopDealerOrder, updateShopDealerOrder } from '@/api/shop/shopDealerOrder';
|
|
||||||
import {ShopDealerOrder} from '@/api/shop/shopDealerOrder/model';
|
import {ShopDealerOrder} from '@/api/shop/shopDealerOrder/model';
|
||||||
import { useThemeStore } from '@/store/modules/theme';
|
|
||||||
import { storeToRefs } from 'pinia';
|
|
||||||
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
|
||||||
import {FormInstance} from 'ant-design-vue/es/form';
|
import {FormInstance} from 'ant-design-vue/es/form';
|
||||||
import { FileRecord } from '@/api/system/file/model';
|
import {updateSdyDealerOrder} from "@/api/sdy/sdyDealerOrder";
|
||||||
|
|
||||||
// 是否是修改
|
// 是否是修改
|
||||||
const isUpdate = ref(false);
|
const isUpdate = ref(false);
|
||||||
const useForm = Form.useForm;
|
const useForm = Form.useForm;
|
||||||
// 是否开启响应式布局
|
|
||||||
const themeStore = useThemeStore();
|
|
||||||
const { styleResponsive } = storeToRefs(themeStore);
|
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
// 弹窗是否打开
|
// 弹窗是否打开
|
||||||
@@ -232,20 +190,31 @@
|
|||||||
const maxable = ref(true);
|
const maxable = ref(true);
|
||||||
// 表格选中数据
|
// 表格选中数据
|
||||||
const formRef = ref<FormInstance | null>(null);
|
const formRef = ref<FormInstance | null>(null);
|
||||||
const images = ref<ItemType[]>([]);
|
|
||||||
|
|
||||||
// 表单数据
|
// 表单数据
|
||||||
const form = reactive<ShopDealerOrder>({
|
const form = reactive<ShopDealerOrder>({
|
||||||
id: undefined,
|
id: undefined,
|
||||||
userId: undefined,
|
userId: undefined,
|
||||||
orderId: undefined,
|
nickname: undefined,
|
||||||
|
orderNo: undefined,
|
||||||
|
title: undefined,
|
||||||
orderPrice: undefined,
|
orderPrice: undefined,
|
||||||
|
settledPrice: undefined,
|
||||||
|
degreePrice: undefined,
|
||||||
|
price: undefined,
|
||||||
|
month: undefined,
|
||||||
|
payPrice: undefined,
|
||||||
firstUserId: undefined,
|
firstUserId: undefined,
|
||||||
secondUserId: undefined,
|
secondUserId: undefined,
|
||||||
thirdUserId: undefined,
|
thirdUserId: undefined,
|
||||||
firstMoney: undefined,
|
firstMoney: undefined,
|
||||||
secondMoney: undefined,
|
secondMoney: undefined,
|
||||||
thirdMoney: undefined,
|
thirdMoney: undefined,
|
||||||
|
firstNickname: undefined,
|
||||||
|
secondNickname: undefined,
|
||||||
|
thirdNickname: undefined,
|
||||||
|
rate: undefined,
|
||||||
|
comments: undefined,
|
||||||
isInvalid: 0,
|
isInvalid: 0,
|
||||||
isSettled: 0,
|
isSettled: 0,
|
||||||
settleTime: undefined,
|
settleTime: undefined,
|
||||||
@@ -264,94 +233,13 @@
|
|||||||
userId: [
|
userId: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入买家用户ID',
|
message: '请选择用户ID',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
orderId: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请输入订单ID',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
orderPrice: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请输入订单总金额',
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
firstUserId: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.firstMoney && !value) {
|
|
||||||
return Promise.reject('设置了一级佣金必须填写一级分销商用户ID');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
firstMoney: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.firstUserId && !value) {
|
|
||||||
return Promise.reject('设置了一级分销商必须填写一级佣金');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
secondUserId: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.secondMoney && !value) {
|
|
||||||
return Promise.reject('设置了二级佣金必须填写二级分销商用户ID');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
secondMoney: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.secondUserId && !value) {
|
|
||||||
return Promise.reject('设置了二级分销商必须填写二级佣金');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
thirdUserId: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.thirdMoney && !value) {
|
|
||||||
return Promise.reject('设置了三级佣金必须填写三级分销商用户ID');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
thirdMoney: [
|
|
||||||
{
|
|
||||||
validator: (rule: any, value: any) => {
|
|
||||||
if (form.thirdUserId && !value) {
|
|
||||||
return Promise.reject('设置了三级分销商必须填写三级佣金');
|
|
||||||
}
|
|
||||||
return Promise.resolve();
|
|
||||||
},
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const {resetFields} = useForm(form, rules);
|
const {resetFields} = useForm(form, rules);
|
||||||
|
|
||||||
/* 保存编辑 */
|
/* 保存编辑 */
|
||||||
@@ -359,15 +247,23 @@
|
|||||||
if (!formRef.value) {
|
if (!formRef.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (form.isSettled == 1) {
|
||||||
|
message.error('请勿重复结算');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (form.userId == 0) {
|
||||||
|
message.error('未签约');
|
||||||
|
return;
|
||||||
|
}
|
||||||
formRef.value
|
formRef.value
|
||||||
.validate()
|
.validate()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
const formData = {
|
const formData = {
|
||||||
...form
|
...form,
|
||||||
|
isSettled: 1
|
||||||
};
|
};
|
||||||
const saveOrUpdate = isUpdate.value ? updateShopDealerOrder : addShopDealerOrder;
|
updateSdyDealerOrder(formData)
|
||||||
saveOrUpdate(formData)
|
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
@@ -379,26 +275,24 @@
|
|||||||
message.error(e.message);
|
message.error(e.message);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
console.log(localStorage.getItem(''))
|
||||||
watch(
|
watch(
|
||||||
() => props.visible,
|
() => props.visible,
|
||||||
(visible) => {
|
(visible) => {
|
||||||
if (visible) {
|
if (visible) {
|
||||||
if (props.data) {
|
if (props.data) {
|
||||||
assignObject(form, props.data);
|
assignObject(form, props.data);
|
||||||
// 处理时间字段
|
|
||||||
if (props.data.settleTime) {
|
|
||||||
form.settleTime = dayjs(props.data.settleTime);
|
|
||||||
}
|
|
||||||
isUpdate.value = true;
|
isUpdate.value = true;
|
||||||
} else {
|
} else {
|
||||||
// 重置为默认值
|
// 重置为默认值
|
||||||
Object.assign(form, {
|
Object.assign(form, {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
userId: undefined,
|
userId: undefined,
|
||||||
orderId: undefined,
|
orderNo: undefined,
|
||||||
orderPrice: undefined,
|
orderPrice: undefined,
|
||||||
firstUserId: undefined,
|
firstUserId: undefined,
|
||||||
secondUserId: undefined,
|
secondUserId: undefined,
|
||||||
|
|||||||
@@ -3,10 +3,11 @@
|
|||||||
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
||||||
<ele-pro-table
|
<ele-pro-table
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
row-key="shopDealerOrderId"
|
row-key="id"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:datasource="datasource"
|
:datasource="datasource"
|
||||||
:customRow="customRow"
|
:customRow="customRow"
|
||||||
|
v-model:selection="selection"
|
||||||
tool-class="ele-toolbar-form"
|
tool-class="ele-toolbar-form"
|
||||||
class="sys-org-table"
|
class="sys-org-table"
|
||||||
>
|
>
|
||||||
@@ -16,15 +17,35 @@
|
|||||||
:selection="selection"
|
:selection="selection"
|
||||||
@batchSettle="batchSettle"
|
@batchSettle="batchSettle"
|
||||||
@export="handleExport"
|
@export="handleExport"
|
||||||
|
@remove="removeBatch"
|
||||||
@importDone="reload"
|
@importDone="reload"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'orderInfo'">
|
|
||||||
<div class="order-info">
|
<template v-if="column.key === 'title'">
|
||||||
<div class="order-id">订单号: {{ record.orderId || '-' }}</div>
|
<div>{{ record.title }}</div>
|
||||||
<div class="order-price">金额: ¥{{ parseFloat(record.orderPrice || '0').toFixed(2) }}</div>
|
<div class="text-gray-400">用户ID:{{ record.userId }}</div>
|
||||||
</div>
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'orderPrice'">
|
||||||
|
{{ record.orderPrice.toFixed(2) }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'degreePrice'">
|
||||||
|
{{ record.degreePrice.toFixed(2) }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'price'">
|
||||||
|
{{ record.price }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'settledPrice'">
|
||||||
|
{{ record.settledPrice.toFixed(2) }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'payPrice'">
|
||||||
|
{{ record.payPrice.toFixed(2) }}
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="column.key === 'dealerInfo'">
|
<template v-if="column.key === 'dealerInfo'">
|
||||||
@@ -45,42 +66,45 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="column.key === 'isInvalid'">
|
<template v-if="column.key === 'isInvalid'">
|
||||||
<a-tag v-if="record.isInvalid === 0" color="success">有效</a-tag>
|
<a-tag v-if="record.isInvalid === 0" color="success">已签约</a-tag>
|
||||||
<a-tag v-if="record.isInvalid === 1" color="error">失效</a-tag>
|
<a-tag v-if="record.isInvalid === 1" color="error">未签约</a-tag>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="column.key === 'isSettled'">
|
<template v-if="column.key === 'isSettled'">
|
||||||
<a-tag v-if="record.isSettled === 0" color="processing">未结算</a-tag>
|
<a-tag v-if="record.isSettled === 0" color="orange">未结算</a-tag>
|
||||||
<a-tag v-if="record.isSettled === 1" color="success">已结算</a-tag>
|
<a-tag v-if="record.isSettled === 1" color="success">已结算</a-tag>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'createTime'">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<a-tooltip title="创建时间">
|
||||||
|
<span class="text-gray-500">{{ record.createTime }}</span>
|
||||||
|
</a-tooltip>
|
||||||
|
<a-tooltip title="结算时间">
|
||||||
|
<span class="text-purple-500">{{ record.settleTime }}</span>
|
||||||
|
</a-tooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a @click="viewDetail(record)" class="ele-text-info">
|
|
||||||
<EyeOutlined/>
|
|
||||||
详情
|
|
||||||
</a>
|
|
||||||
<template v-if="record.isSettled === 0 && record.isInvalid === 0">
|
<template v-if="record.isSettled === 0 && record.isInvalid === 0">
|
||||||
<a-divider type="vertical"/>
|
|
||||||
<a @click="openEdit(record)" class="ele-text-success">
|
<a @click="openEdit(record)" class="ele-text-success">
|
||||||
<DollarOutlined/>
|
|
||||||
结算
|
结算
|
||||||
</a>
|
</a>
|
||||||
</template>
|
|
||||||
<template v-if="record.isInvalid === 0">
|
|
||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
|
</template>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
title="确定要标记此订单为失效吗?"
|
v-if="record.isSettled === 0"
|
||||||
@confirm="invalidateOrder(record)"
|
title="确定要删除吗?"
|
||||||
|
@confirm="remove(record)"
|
||||||
placement="topRight"
|
placement="topRight"
|
||||||
>
|
>
|
||||||
<a class="ele-text-warning">
|
<a class="text-red-500">
|
||||||
<CloseOutlined/>
|
删除
|
||||||
失效
|
|
||||||
</a>
|
</a>
|
||||||
</a-popconfirm>
|
</a-popconfirm>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
|
||||||
</ele-pro-table>
|
</ele-pro-table>
|
||||||
</a-card>
|
</a-card>
|
||||||
|
|
||||||
@@ -93,13 +117,9 @@
|
|||||||
import {createVNode, ref} from 'vue';
|
import {createVNode, ref} from 'vue';
|
||||||
import {message, Modal} from 'ant-design-vue';
|
import {message, Modal} from 'ant-design-vue';
|
||||||
import {
|
import {
|
||||||
ExclamationCircleOutlined,
|
ExclamationCircleOutlined
|
||||||
EyeOutlined,
|
|
||||||
DollarOutlined,
|
|
||||||
CloseOutlined
|
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import type {EleProTable} from 'ele-admin-pro';
|
import type {EleProTable} from 'ele-admin-pro';
|
||||||
import {toDateString} from 'ele-admin-pro';
|
|
||||||
import type {
|
import type {
|
||||||
DatasourceFunction,
|
DatasourceFunction,
|
||||||
ColumnItem
|
ColumnItem
|
||||||
@@ -107,13 +127,9 @@ import type {
|
|||||||
import Search from './components/search.vue';
|
import Search from './components/search.vue';
|
||||||
import {getPageTitle} from '@/utils/common';
|
import {getPageTitle} from '@/utils/common';
|
||||||
import ShopDealerOrderEdit from './components/shopDealerOrderEdit.vue';
|
import ShopDealerOrderEdit from './components/shopDealerOrderEdit.vue';
|
||||||
import {
|
import {pageShopDealerOrder, removeShopDealerOrder, removeBatchShopDealerOrder} from '@/api/shop/shopDealerOrder';
|
||||||
pageShopDealerOrder,
|
|
||||||
removeShopDealerOrder,
|
|
||||||
removeBatchShopDealerOrder,
|
|
||||||
exportShopDealerOrder
|
|
||||||
} from '@/api/shop/shopDealerOrder';
|
|
||||||
import type {ShopDealerOrder, ShopDealerOrderParam} from '@/api/shop/shopDealerOrder/model';
|
import type {ShopDealerOrder, ShopDealerOrderParam} from '@/api/shop/shopDealerOrder/model';
|
||||||
|
import {exportSdyDealerOrder} from "@/api/sdy/sdyDealerOrder";
|
||||||
|
|
||||||
// 表格实例
|
// 表格实例
|
||||||
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
||||||
@@ -143,6 +159,9 @@ const datasource: DatasourceFunction = ({
|
|||||||
}
|
}
|
||||||
// 保存当前搜索条件用于导出
|
// 保存当前搜索条件用于导出
|
||||||
currentWhere.value = {...where};
|
currentWhere.value = {...where};
|
||||||
|
// 未结算订单
|
||||||
|
where.isSettled = 0;
|
||||||
|
where.myOrder = 1;
|
||||||
return pageShopDealerOrder({
|
return pageShopDealerOrder({
|
||||||
...where,
|
...where,
|
||||||
...orders,
|
...orders,
|
||||||
@@ -154,86 +173,83 @@ const datasource: DatasourceFunction = ({
|
|||||||
// 表格列配置
|
// 表格列配置
|
||||||
const columns = ref<ColumnItem[]>([
|
const columns = ref<ColumnItem[]>([
|
||||||
{
|
{
|
||||||
title: '商品信息',
|
title: '订单编号',
|
||||||
key: 'productInfo',
|
dataIndex: 'orderNo',
|
||||||
align: 'left',
|
key: 'orderNo'
|
||||||
width: 200,
|
|
||||||
customRender: ({record}) => {
|
|
||||||
return `商品ID: ${record.productId || '-'}`;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '单价/数量',
|
title: '客户名称',
|
||||||
key: 'priceInfo',
|
dataIndex: 'title',
|
||||||
align: 'center',
|
key: 'title',
|
||||||
width: 120,
|
width: 220,
|
||||||
customRender: ({record}) => {
|
|
||||||
return `¥${parseFloat(record.unitPrice || '0').toFixed(2)} × ${record.quantity || 1}`;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '订单信息',
|
title: '结算电量',
|
||||||
key: 'orderInfo',
|
dataIndex: 'orderPrice',
|
||||||
align: 'left',
|
key: 'orderPrice',
|
||||||
width: 180
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '买家',
|
title: '换算成度',
|
||||||
dataIndex: 'userId',
|
dataIndex: 'degreePrice',
|
||||||
key: 'userId',
|
key: 'degreePrice',
|
||||||
align: 'center',
|
align: 'center'
|
||||||
width: 100,
|
|
||||||
customRender: ({text}) => `用户${text || '-'}`
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '分销商信息',
|
title: '结算单价',
|
||||||
key: 'dealerInfo',
|
dataIndex: 'price',
|
||||||
align: 'left',
|
key: 'price',
|
||||||
width: 300
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '订单状态',
|
title: '结算金额',
|
||||||
|
dataIndex: 'settledPrice',
|
||||||
|
key: 'settledPrice',
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '税费',
|
||||||
|
dataIndex: 'rate',
|
||||||
|
key: 'rate',
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '实发金额',
|
||||||
|
dataIndex: 'payPrice',
|
||||||
|
key: 'payPrice',
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '签约状态',
|
||||||
dataIndex: 'isInvalid',
|
dataIndex: 'isInvalid',
|
||||||
key: 'isInvalid',
|
key: 'isInvalid',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 100,
|
width: 100
|
||||||
filters: [
|
},
|
||||||
{text: '有效', value: 0},
|
{
|
||||||
{text: '失效', value: 1}
|
title: '月份',
|
||||||
]
|
dataIndex: 'month',
|
||||||
|
key: 'month',
|
||||||
|
align: 'center',
|
||||||
|
width: 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '结算状态',
|
title: '结算状态',
|
||||||
dataIndex: 'isSettled',
|
dataIndex: 'isSettled',
|
||||||
key: 'isSettled',
|
key: 'isSettled',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 100,
|
width: 100
|
||||||
filters: [
|
|
||||||
{text: '未结算', value: 0},
|
|
||||||
{text: '已结算', value: 1}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '结算时间',
|
|
||||||
dataIndex: 'settleTime',
|
|
||||||
key: 'settleTime',
|
|
||||||
align: 'center',
|
|
||||||
width: 120,
|
|
||||||
customRender: ({text}) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '创建时间',
|
title: '创建时间',
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
key: 'createTime',
|
key: 'createTime',
|
||||||
align: 'center',
|
align: 'center'
|
||||||
width: 180,
|
|
||||||
sorter: true,
|
|
||||||
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm')
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
width: 240,
|
width: 180,
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
hideInSetting: true
|
hideInSetting: true
|
||||||
@@ -246,75 +262,6 @@ const reload = (where?: ShopDealerOrderParam) => {
|
|||||||
tableRef?.value?.reload({where: where});
|
tableRef?.value?.reload({where: where});
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 查看订单详情 */
|
|
||||||
const viewDetail = (row: ShopDealerOrder) => {
|
|
||||||
Modal.info({
|
|
||||||
title: '分销订单详情',
|
|
||||||
width: 800,
|
|
||||||
content: createVNode('div', {style: 'max-height: 500px; overflow-y: auto;'}, [
|
|
||||||
createVNode('div', {class: 'detail-section'}, [
|
|
||||||
createVNode('h4', null, '订单基本信息'),
|
|
||||||
createVNode('p', null, `订单ID: ${row.orderId || '-'}`),
|
|
||||||
createVNode('p', null, `买家用户ID: ${row.userId || '-'}`),
|
|
||||||
createVNode('p', null, `订单金额: ¥${parseFloat(row.orderPrice || '0').toFixed(2)}`),
|
|
||||||
createVNode('p', null, `创建时间: ${row.createTime ? toDateString(row.createTime, 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
]),
|
|
||||||
createVNode('div', {class: 'detail-section', style: 'margin-top: 16px;'}, [
|
|
||||||
createVNode('h4', null, '分销商信息'),
|
|
||||||
...(row.firstUserId ? [
|
|
||||||
createVNode('div', {style: 'margin: 8px 0; padding: 8px; background: #fff2f0; border-left: 3px solid #ff4d4f;'}, [
|
|
||||||
createVNode('strong', null, '一级分销商'),
|
|
||||||
createVNode('p', null, `用户ID: ${row.firstUserId}`),
|
|
||||||
createVNode('p', null, `佣金: ¥${parseFloat(row.firstMoney || '0').toFixed(2)}`)
|
|
||||||
])
|
|
||||||
] : []),
|
|
||||||
...(row.secondUserId ? [
|
|
||||||
createVNode('div', {style: 'margin: 8px 0; padding: 8px; background: #fff7e6; border-left: 3px solid #fa8c16;'}, [
|
|
||||||
createVNode('strong', null, '二级分销商'),
|
|
||||||
createVNode('p', null, `用户ID: ${row.secondUserId}`),
|
|
||||||
createVNode('p', null, `佣金: ¥${parseFloat(row.secondMoney || '0').toFixed(2)}`)
|
|
||||||
])
|
|
||||||
] : []),
|
|
||||||
...(row.thirdUserId ? [
|
|
||||||
createVNode('div', {style: 'margin: 8px 0; padding: 8px; background: #fffbe6; border-left: 3px solid #fadb14;'}, [
|
|
||||||
createVNode('strong', null, '三级分销商'),
|
|
||||||
createVNode('p', null, `用户ID: ${row.thirdUserId}`),
|
|
||||||
createVNode('p', null, `佣金: ¥${parseFloat(row.thirdMoney || '0').toFixed(2)}`)
|
|
||||||
])
|
|
||||||
] : [])
|
|
||||||
]),
|
|
||||||
createVNode('div', {class: 'detail-section', style: 'margin-top: 16px;'}, [
|
|
||||||
createVNode('h4', null, '状态信息'),
|
|
||||||
createVNode('p', null, [
|
|
||||||
'订单状态: ',
|
|
||||||
createVNode('span', {
|
|
||||||
style: `color: ${row.isInvalid === 0 ? '#52c41a' : '#ff4d4f'}; font-weight: bold;`
|
|
||||||
}, row.isInvalid === 0 ? '有效' : '失效')
|
|
||||||
]),
|
|
||||||
createVNode('p', null, [
|
|
||||||
'结算状态: ',
|
|
||||||
createVNode('span', {
|
|
||||||
style: `color: ${row.isSettled === 1 ? '#52c41a' : '#1890ff'}; font-weight: bold;`
|
|
||||||
}, row.isSettled === 1 ? '已结算' : '未结算')
|
|
||||||
]),
|
|
||||||
createVNode('p', null, `结算时间: ${row.settleTime ? toDateString(new Date(row.settleTime), 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
])
|
|
||||||
]),
|
|
||||||
okText: '关闭'
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 标记订单失效 */
|
|
||||||
const invalidateOrder = (row: ShopDealerOrder) => {
|
|
||||||
const hide = message.loading('正在处理...', 0);
|
|
||||||
// 这里调用失效API
|
|
||||||
setTimeout(() => {
|
|
||||||
hide();
|
|
||||||
message.success('订单已标记为失效');
|
|
||||||
reload();
|
|
||||||
}, 1000);
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 批量结算 */
|
/* 批量结算 */
|
||||||
const batchSettle = () => {
|
const batchSettle = () => {
|
||||||
if (!selection.value.length) {
|
if (!selection.value.length) {
|
||||||
@@ -359,7 +306,7 @@ const batchSettle = () => {
|
|||||||
/* 导出数据 */
|
/* 导出数据 */
|
||||||
const handleExport = () => {
|
const handleExport = () => {
|
||||||
// 调用导出API,传入当前搜索条件
|
// 调用导出API,传入当前搜索条件
|
||||||
exportShopDealerOrder(currentWhere.value);
|
exportSdyDealerOrder(currentWhere.value);
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 打开编辑弹窗 */
|
/* 打开编辑弹窗 */
|
||||||
|
|||||||
205
src/views/shop/shopDealerReferee/components/RefereeTree.vue
Normal file
205
src/views/shop/shopDealerReferee/components/RefereeTree.vue
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
<template>
|
||||||
|
<a-modal
|
||||||
|
:visible="visible"
|
||||||
|
:title="title"
|
||||||
|
:width="1000"
|
||||||
|
:footer="null"
|
||||||
|
@cancel="handleCancel"
|
||||||
|
>
|
||||||
|
<div class="tree-container">
|
||||||
|
<v-chart
|
||||||
|
ref="chartRef"
|
||||||
|
class="chart"
|
||||||
|
:option="chartOption"
|
||||||
|
:loading="loading"
|
||||||
|
autoresize
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, watch, computed } from 'vue';
|
||||||
|
import { use } from 'echarts/core';
|
||||||
|
import { CanvasRenderer } from 'echarts/renderers';
|
||||||
|
import { TreeChart } from 'echarts/charts';
|
||||||
|
import {
|
||||||
|
TooltipComponent,
|
||||||
|
TitleComponent
|
||||||
|
} from 'echarts/components';
|
||||||
|
import VChart from 'vue-echarts';
|
||||||
|
import type { ShopDealerReferee } from '@/api/shop/shopDealerReferee/model';
|
||||||
|
|
||||||
|
// 注册 echarts 组件
|
||||||
|
use([
|
||||||
|
CanvasRenderer,
|
||||||
|
TreeChart,
|
||||||
|
TooltipComponent,
|
||||||
|
TitleComponent
|
||||||
|
]);
|
||||||
|
|
||||||
|
// 定义组件属性
|
||||||
|
const props = withDefaults(defineProps<{
|
||||||
|
visible: boolean;
|
||||||
|
data?: ShopDealerReferee[];
|
||||||
|
title?: string;
|
||||||
|
}>(), {
|
||||||
|
visible: false,
|
||||||
|
data: () => [],
|
||||||
|
title: '推荐关系树'
|
||||||
|
});
|
||||||
|
|
||||||
|
// 定义事件
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:visible', value: boolean): void;
|
||||||
|
(e: 'cancel'): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 图表引用
|
||||||
|
const chartRef = ref<InstanceType<typeof VChart> | null>(null);
|
||||||
|
|
||||||
|
// 加载状态
|
||||||
|
const loading = ref(false);
|
||||||
|
|
||||||
|
// 处理取消事件
|
||||||
|
const handleCancel = () => {
|
||||||
|
emit('update:visible', false);
|
||||||
|
emit('cancel');
|
||||||
|
};
|
||||||
|
|
||||||
|
// 转换数据为树形结构
|
||||||
|
const transformToTreeData = (data: ShopDealerReferee[]) => {
|
||||||
|
if (!data || data.length === 0) {
|
||||||
|
return { name: '暂无数据', children: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构建节点映射
|
||||||
|
const nodeMap = new Map<number, any>();
|
||||||
|
const rootNodes: any[] = [];
|
||||||
|
|
||||||
|
// 创建所有节点
|
||||||
|
data.forEach(item => {
|
||||||
|
// 推荐人节点
|
||||||
|
if (item.dealerId && !nodeMap.has(item.dealerId)) {
|
||||||
|
nodeMap.set(item.dealerId, {
|
||||||
|
id: item.dealerId,
|
||||||
|
name: `推荐人\nID:${item.dealerId}\n${item.dealerName || ''}`,
|
||||||
|
level: 'dealer',
|
||||||
|
children: []
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 被推荐人节点
|
||||||
|
if (item.userId && !nodeMap.has(item.userId)) {
|
||||||
|
nodeMap.set(item.userId, {
|
||||||
|
id: item.userId,
|
||||||
|
name: `被推荐人\nID:${item.userId}\n${item.nickname || ''}`,
|
||||||
|
level: 'user',
|
||||||
|
children: []
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 构建关系树
|
||||||
|
data.forEach(item => {
|
||||||
|
if (!item.dealerId || !item.userId) return;
|
||||||
|
|
||||||
|
const dealerNode = nodeMap.get(item.dealerId);
|
||||||
|
const userNode = nodeMap.get(item.userId);
|
||||||
|
|
||||||
|
if (dealerNode && userNode) {
|
||||||
|
// 添加层级标签
|
||||||
|
const levelText = { 1: '一级', 2: '二级', 3: '三级' }[item.level || 0] || `${item.level || 0}级`;
|
||||||
|
userNode.name += `\n${levelText}推荐`;
|
||||||
|
dealerNode.children.push(userNode);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 查找根节点(没有被推荐关系的节点)
|
||||||
|
const referencedIds = new Set(data.map(item => item.userId).filter(id => id));
|
||||||
|
data.forEach(item => {
|
||||||
|
if (item.dealerId && !referencedIds.has(item.dealerId)) {
|
||||||
|
const rootNode = nodeMap.get(item.dealerId);
|
||||||
|
if (rootNode) {
|
||||||
|
rootNodes.push(rootNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 如果没有明确的根节点,使用第一个节点作为根
|
||||||
|
if (rootNodes.length === 0 && data.length > 0 && data[0].dealerId) {
|
||||||
|
const firstNode = nodeMap.get(data[0].dealerId);
|
||||||
|
if (firstNode) {
|
||||||
|
rootNodes.push(firstNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果还是没有根节点,返回默认节点
|
||||||
|
if (rootNodes.length === 0) {
|
||||||
|
return { name: '暂无数据', children: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
return rootNodes[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
// 图表配置
|
||||||
|
const chartOption = computed(() => {
|
||||||
|
const treeData = transformToTreeData(props.data || []);
|
||||||
|
|
||||||
|
return {
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'item',
|
||||||
|
triggerOn: 'mousemove'
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
type: 'tree',
|
||||||
|
data: [treeData],
|
||||||
|
top: '1%',
|
||||||
|
left: '7%',
|
||||||
|
bottom: '1%',
|
||||||
|
right: '20%',
|
||||||
|
symbolSize: 12,
|
||||||
|
symbol: 'circle',
|
||||||
|
orient: 'LR', // 从左到右
|
||||||
|
expandAndCollapse: true,
|
||||||
|
label: {
|
||||||
|
position: 'left',
|
||||||
|
verticalAlign: 'middle',
|
||||||
|
align: 'right',
|
||||||
|
fontSize: 12,
|
||||||
|
backgroundColor: '#fff',
|
||||||
|
padding: [2, 4],
|
||||||
|
borderRadius: 4,
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: '#ccc'
|
||||||
|
},
|
||||||
|
leaves: {
|
||||||
|
label: {
|
||||||
|
position: 'right',
|
||||||
|
verticalAlign: 'middle',
|
||||||
|
align: 'left'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
focus: 'descendant'
|
||||||
|
},
|
||||||
|
animationDuration: 500,
|
||||||
|
animationDurationUpdate: 750
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.tree-container {
|
||||||
|
height: 600px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chart {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
<!-- 搜索表单 -->
|
<!-- 搜索表单 -->
|
||||||
<template>
|
<template>
|
||||||
<div class="search-container">
|
|
||||||
<!-- 搜索表单 -->
|
<!-- 搜索表单 -->
|
||||||
<a-form
|
<a-form
|
||||||
:model="searchForm"
|
:model="searchForm"
|
||||||
@@ -26,19 +25,6 @@
|
|||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="推荐层级">
|
|
||||||
<a-select
|
|
||||||
v-model:value="searchForm.level"
|
|
||||||
placeholder="全部层级"
|
|
||||||
allow-clear
|
|
||||||
style="width: 120px"
|
|
||||||
>
|
|
||||||
<a-select-option :value="1">一级推荐</a-select-option>
|
|
||||||
<a-select-option :value="2">二级推荐</a-select-option>
|
|
||||||
<a-select-option :value="3">三级推荐</a-select-option>
|
|
||||||
</a-select>
|
|
||||||
</a-form-item>
|
|
||||||
|
|
||||||
<a-form-item label="建立时间">
|
<a-form-item label="建立时间">
|
||||||
<a-range-picker
|
<a-range-picker
|
||||||
v-model:value="searchForm.dateRange"
|
v-model:value="searchForm.dateRange"
|
||||||
@@ -57,34 +43,39 @@
|
|||||||
<a-button @click="resetSearch">
|
<a-button @click="resetSearch">
|
||||||
重置
|
重置
|
||||||
</a-button>
|
</a-button>
|
||||||
|
<a-button @click="exportData" class="ele-btn-icon">
|
||||||
|
<template #icon>
|
||||||
|
<ExportOutlined/>
|
||||||
|
</template>
|
||||||
|
导出
|
||||||
|
</a-button>
|
||||||
</a-space>
|
</a-space>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
|
|
||||||
<!-- 操作按钮 -->
|
<!-- 操作按钮 -->
|
||||||
<div class="action-buttons">
|
<!-- <div class="action-buttons">-->
|
||||||
<a-space>
|
<!-- <a-space>-->
|
||||||
<a-button type="primary" @click="add" class="ele-btn-icon">
|
<!-- <a-button type="primary" @click="add" class="ele-btn-icon">-->
|
||||||
<template #icon>
|
<!-- <template #icon>-->
|
||||||
<PlusOutlined/>
|
<!-- <PlusOutlined/>-->
|
||||||
</template>
|
<!-- </template>-->
|
||||||
建立推荐关系
|
<!-- 建立推荐关系-->
|
||||||
</a-button>
|
<!-- </a-button>-->
|
||||||
<a-button @click="viewTree" class="ele-btn-icon">
|
<!-- <a-button @click="viewTree" class="ele-btn-icon">-->
|
||||||
<template #icon>
|
<!-- <template #icon>-->
|
||||||
<ApartmentOutlined/>
|
<!-- <ApartmentOutlined/>-->
|
||||||
</template>
|
<!-- </template>-->
|
||||||
推荐关系树
|
<!-- 推荐关系树-->
|
||||||
</a-button>
|
<!-- </a-button>-->
|
||||||
<a-button @click="exportData" class="ele-btn-icon">
|
<!-- <a-button @click="exportData" class="ele-btn-icon">-->
|
||||||
<template #icon>
|
<!-- <template #icon>-->
|
||||||
<ExportOutlined/>
|
<!-- <ExportOutlined/>-->
|
||||||
</template>
|
<!-- </template>-->
|
||||||
导出数据
|
<!-- 导出数据-->
|
||||||
</a-button>
|
<!-- </a-button>-->
|
||||||
</a-space>
|
<!-- </a-space>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
:visible="visible"
|
:visible="visible"
|
||||||
:maskClosable="false"
|
:maskClosable="false"
|
||||||
:maxable="maxable"
|
:maxable="maxable"
|
||||||
:title="isUpdate ? '编辑分销商推荐关系表' : '添加分销商推荐关系表'"
|
:title="isUpdate ? '编辑推荐' : '添加推荐关系'"
|
||||||
:body-style="{ paddingBottom: '28px' }"
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
@update:visible="updateVisible"
|
@update:visible="updateVisible"
|
||||||
@ok="save"
|
@ok="save"
|
||||||
@@ -19,34 +19,20 @@
|
|||||||
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
|
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<a-form-item label="分销商用户ID" name="dealerId">
|
<a-form-item label="推荐人信息" name="dealerId">
|
||||||
<a-input
|
<a-input
|
||||||
allow-clear
|
allow-clear
|
||||||
placeholder="请输入分销商用户ID"
|
placeholder="请输入分销商用户ID"
|
||||||
v-model:value="form.dealerId"
|
v-model:value="form.dealerId"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="用户id(被推荐人)" name="userId">
|
<a-form-item label="被推荐人信息" name="userId">
|
||||||
<a-input
|
<a-input
|
||||||
allow-clear
|
allow-clear
|
||||||
placeholder="请输入用户id(被推荐人)"
|
placeholder="请输入用户id(被推荐人)"
|
||||||
v-model:value="form.userId"
|
v-model:value="form.userId"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="推荐关系层级(1,2,3)" name="level">
|
|
||||||
<a-input
|
|
||||||
allow-clear
|
|
||||||
placeholder="请输入推荐关系层级(1,2,3)"
|
|
||||||
v-model:value="form.level"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
<a-form-item label="修改时间" name="updateTime">
|
|
||||||
<a-input
|
|
||||||
allow-clear
|
|
||||||
placeholder="请输入修改时间"
|
|
||||||
v-model:value="form.updateTime"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
</a-form>
|
</a-form>
|
||||||
</ele-modal>
|
</ele-modal>
|
||||||
</template>
|
</template>
|
||||||
@@ -54,14 +40,13 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref, reactive, watch } from 'vue';
|
import { ref, reactive, watch } from 'vue';
|
||||||
import { Form, message } from 'ant-design-vue';
|
import { Form, message } from 'ant-design-vue';
|
||||||
import { assignObject, uuid } from 'ele-admin-pro';
|
import { assignObject } from 'ele-admin-pro';
|
||||||
import { addShopDealerReferee, updateShopDealerReferee } from '@/api/shop/shopDealerReferee';
|
import { addShopDealerReferee, updateShopDealerReferee } from '@/api/shop/shopDealerReferee';
|
||||||
import { ShopDealerReferee } from '@/api/shop/shopDealerReferee/model';
|
import { ShopDealerReferee } from '@/api/shop/shopDealerReferee/model';
|
||||||
import { useThemeStore } from '@/store/modules/theme';
|
import { useThemeStore } from '@/store/modules/theme';
|
||||||
import { storeToRefs } from 'pinia';
|
import { storeToRefs } from 'pinia';
|
||||||
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
||||||
import { FormInstance } from 'ant-design-vue/es/form';
|
import { FormInstance } from 'ant-design-vue/es/form';
|
||||||
import { FileRecord } from '@/api/system/file/model';
|
|
||||||
|
|
||||||
// 是否是修改
|
// 是否是修改
|
||||||
const isUpdate = ref(false);
|
const isUpdate = ref(false);
|
||||||
@@ -98,10 +83,7 @@
|
|||||||
level: undefined,
|
level: undefined,
|
||||||
tenantId: undefined,
|
tenantId: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
updateTime: undefined,
|
updateTime: undefined
|
||||||
status: 0,
|
|
||||||
comments: '',
|
|
||||||
sortNumber: 100
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/* 更新visible */
|
/* 更新visible */
|
||||||
@@ -121,20 +103,6 @@
|
|||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
const chooseImage = (data: FileRecord) => {
|
|
||||||
images.value.push({
|
|
||||||
uid: data.id,
|
|
||||||
url: data.path,
|
|
||||||
status: 'done'
|
|
||||||
});
|
|
||||||
form.image = data.path;
|
|
||||||
};
|
|
||||||
|
|
||||||
const onDeleteItem = (index: number) => {
|
|
||||||
images.value.splice(index, 1);
|
|
||||||
form.image = '';
|
|
||||||
};
|
|
||||||
|
|
||||||
const { resetFields } = useForm(form, rules);
|
const { resetFields } = useForm(form, rules);
|
||||||
|
|
||||||
/* 保存编辑 */
|
/* 保存编辑 */
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
||||||
<ele-pro-table
|
<ele-pro-table
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
row-key="shopDealerRefereeId"
|
row-key="id"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:datasource="datasource"
|
:datasource="datasource"
|
||||||
:customRow="customRow"
|
:customRow="customRow"
|
||||||
@@ -21,16 +21,21 @@
|
|||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'dealerInfo'">
|
<template v-if="column.key === 'dealerInfo'">
|
||||||
<div class="user-info">
|
<div class="user-info">
|
||||||
<div class="user-id">ID: {{ record.dealerId }}</div>
|
<div class="user-id">{{ record.dealerName }}({{ record.dealerId }})</div>
|
||||||
|
<div class="user-id"></div>
|
||||||
<div class="user-role">
|
<div class="user-role">
|
||||||
<a-tag color="blue">推荐人</a-tag>
|
<a-tag color="blue">推荐人</a-tag>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-if="column.key === 'relationship'">
|
||||||
|
<ArrowRightOutlined />
|
||||||
|
</template>
|
||||||
|
|
||||||
<template v-if="column.key === 'userInfo'">
|
<template v-if="column.key === 'userInfo'">
|
||||||
<div class="user-info">
|
<div class="user-info">
|
||||||
<div class="user-id">ID: {{ record.userId }}</div>
|
<div class="user-id">{{ record.nickname }}({{ record.userId }})</div>
|
||||||
<div class="user-role">
|
<div class="user-role">
|
||||||
<a-tag color="green">被推荐人</a-tag>
|
<a-tag color="green">被推荐人</a-tag>
|
||||||
</div>
|
</div>
|
||||||
@@ -39,10 +44,10 @@
|
|||||||
|
|
||||||
<template v-if="column.key === 'level'">
|
<template v-if="column.key === 'level'">
|
||||||
<a-tag
|
<a-tag
|
||||||
:color="getLevelColor(record.level)"
|
:color="getLevelColor(record.level || 0)"
|
||||||
class="level-tag"
|
class="level-tag"
|
||||||
>
|
>
|
||||||
{{ getLevelText(record.level) }}
|
{{ getLevelText(record.level || 0) }}
|
||||||
</a-tag>
|
</a-tag>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -59,23 +64,19 @@
|
|||||||
|
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a-space>
|
<a-space>
|
||||||
<a @click="viewDetail(record)" class="ele-text-info">
|
|
||||||
<EyeOutlined /> 详情
|
|
||||||
</a>
|
|
||||||
<a-divider type="vertical" />
|
|
||||||
<a @click="openEdit(record)" class="ele-text-primary">
|
<a @click="openEdit(record)" class="ele-text-primary">
|
||||||
<EditOutlined /> 编辑
|
<EditOutlined /> 编辑
|
||||||
</a>
|
</a>
|
||||||
<a-divider type="vertical" />
|
<!-- <a-divider type="vertical" />-->
|
||||||
<a-popconfirm
|
<!-- <a-popconfirm-->
|
||||||
title="确定要解除此推荐关系吗?"
|
<!-- title="确定要解除此推荐关系吗?"-->
|
||||||
@confirm="remove(record)"
|
<!-- @confirm="remove(record)"-->
|
||||||
placement="topRight"
|
<!-- placement="topRight"-->
|
||||||
>
|
<!-- >-->
|
||||||
<a class="ele-text-danger">
|
<!-- <a class="ele-text-danger">-->
|
||||||
<DisconnectOutlined /> 解除
|
<!-- <DisconnectOutlined /> 解除-->
|
||||||
</a>
|
<!-- </a>-->
|
||||||
</a-popconfirm>
|
<!-- </a-popconfirm>-->
|
||||||
</a-space>
|
</a-space>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -84,6 +85,14 @@
|
|||||||
|
|
||||||
<!-- 编辑弹窗 -->
|
<!-- 编辑弹窗 -->
|
||||||
<ShopDealerRefereeEdit v-model:visible="showEdit" :data="current" @done="reload" />
|
<ShopDealerRefereeEdit v-model:visible="showEdit" :data="current" @done="reload" />
|
||||||
|
|
||||||
|
<!-- 树状图弹窗 -->
|
||||||
|
<RefereeTree
|
||||||
|
v-model:visible="showTree"
|
||||||
|
:data="treeData"
|
||||||
|
:title="'推荐关系树'"
|
||||||
|
@cancel="showTree = false"
|
||||||
|
/>
|
||||||
</a-page-header>
|
</a-page-header>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -93,9 +102,8 @@
|
|||||||
import {
|
import {
|
||||||
ExclamationCircleOutlined,
|
ExclamationCircleOutlined,
|
||||||
TeamOutlined,
|
TeamOutlined,
|
||||||
EyeOutlined,
|
|
||||||
EditOutlined,
|
EditOutlined,
|
||||||
DisconnectOutlined
|
ArrowRightOutlined
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import type { EleProTable } from 'ele-admin-pro';
|
import type { EleProTable } from 'ele-admin-pro';
|
||||||
import { toDateString } from 'ele-admin-pro';
|
import { toDateString } from 'ele-admin-pro';
|
||||||
@@ -106,7 +114,14 @@
|
|||||||
import Search from './components/search.vue';
|
import Search from './components/search.vue';
|
||||||
import {getPageTitle} from '@/utils/common';
|
import {getPageTitle} from '@/utils/common';
|
||||||
import ShopDealerRefereeEdit from './components/shopDealerRefereeEdit.vue';
|
import ShopDealerRefereeEdit from './components/shopDealerRefereeEdit.vue';
|
||||||
import { pageShopDealerReferee, removeShopDealerReferee, removeBatchShopDealerReferee } from '@/api/shop/shopDealerReferee';
|
import RefereeTree from './components/RefereeTree.vue';
|
||||||
|
import { utils, writeFile } from 'xlsx';
|
||||||
|
import {
|
||||||
|
pageShopDealerReferee,
|
||||||
|
removeShopDealerReferee,
|
||||||
|
removeBatchShopDealerReferee,
|
||||||
|
listShopDealerReferee
|
||||||
|
} from '@/api/shop/shopDealerReferee';
|
||||||
import type { ShopDealerReferee, ShopDealerRefereeParam } from '@/api/shop/shopDealerReferee/model';
|
import type { ShopDealerReferee, ShopDealerRefereeParam } from '@/api/shop/shopDealerReferee/model';
|
||||||
|
|
||||||
// 表格实例
|
// 表格实例
|
||||||
@@ -118,8 +133,10 @@
|
|||||||
const current = ref<ShopDealerReferee | null>(null);
|
const current = ref<ShopDealerReferee | null>(null);
|
||||||
// 是否显示编辑弹窗
|
// 是否显示编辑弹窗
|
||||||
const showEdit = ref(false);
|
const showEdit = ref(false);
|
||||||
// 是否显示批量移动弹窗
|
// 是否显示树状图弹窗
|
||||||
const showMove = ref(false);
|
const showTree = ref(false);
|
||||||
|
// 树状图数据
|
||||||
|
const treeData = ref<ShopDealerReferee[]>([]);
|
||||||
// 加载状态
|
// 加载状态
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
|
|
||||||
@@ -150,29 +167,29 @@
|
|||||||
align: 'left',
|
align: 'left',
|
||||||
width: 150
|
width: 150
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '',
|
||||||
|
key: 'relationship',
|
||||||
|
align: 'center',
|
||||||
|
width: 50
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '被推荐人信息',
|
title: '被推荐人信息',
|
||||||
key: 'userInfo',
|
key: 'userInfo',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 150
|
width: 150
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
title: '推荐层级',
|
// title: '推荐层级',
|
||||||
key: 'level',
|
// key: 'level',
|
||||||
align: 'center',
|
// align: 'center',
|
||||||
width: 120,
|
// width: 120,
|
||||||
filters: [
|
// filters: [
|
||||||
{ text: '一级推荐', value: 1 },
|
// { text: '一级推荐', value: 1 },
|
||||||
{ text: '二级推荐', value: 2 },
|
// { text: '二级推荐', value: 2 },
|
||||||
{ text: '三级推荐', value: 3 }
|
// { text: '三级推荐', value: 3 }
|
||||||
]
|
// ]
|
||||||
},
|
// },
|
||||||
{
|
|
||||||
title: '关系链',
|
|
||||||
key: 'relationChain',
|
|
||||||
align: 'center',
|
|
||||||
width: 120
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '建立时间',
|
title: '建立时间',
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
@@ -212,30 +229,6 @@
|
|||||||
return texts[level] || `${level}级推荐`;
|
return texts[level] || `${level}级推荐`;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 查看详情 */
|
|
||||||
const viewDetail = (record: ShopDealerReferee) => {
|
|
||||||
Modal.info({
|
|
||||||
title: '推荐关系详情',
|
|
||||||
width: 600,
|
|
||||||
content: createVNode('div', { class: 'referee-detail' }, [
|
|
||||||
createVNode('div', { class: 'detail-section' }, [
|
|
||||||
createVNode('h4', null, '推荐关系信息'),
|
|
||||||
createVNode('p', null, `推荐人ID: ${record.dealerId}`),
|
|
||||||
createVNode('p', null, `被推荐人ID: ${record.userId}`),
|
|
||||||
createVNode('p', null, [
|
|
||||||
'推荐层级: ',
|
|
||||||
createVNode('span', {
|
|
||||||
class: 'level-badge',
|
|
||||||
style: `color: ${getLevelColor(record.level)}; font-weight: bold;`
|
|
||||||
}, getLevelText(record.level))
|
|
||||||
]),
|
|
||||||
createVNode('p', null, `建立时间: ${toDateString(record.createTime, 'yyyy-MM-dd HH:mm:ss')}`),
|
|
||||||
])
|
|
||||||
]),
|
|
||||||
okText: '关闭'
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 查看关系链 */
|
/* 查看关系链 */
|
||||||
const viewRelationChain = (record: ShopDealerReferee) => {
|
const viewRelationChain = (record: ShopDealerReferee) => {
|
||||||
// 这里可以调用API获取完整的推荐关系链
|
// 这里可以调用API获取完整的推荐关系链
|
||||||
@@ -253,7 +246,7 @@
|
|||||||
createVNode('div', { class: 'chain-node user' }, [
|
createVNode('div', { class: 'chain-node user' }, [
|
||||||
createVNode('div', { class: 'node-title' }, '被推荐人'),
|
createVNode('div', { class: 'node-title' }, '被推荐人'),
|
||||||
createVNode('div', { class: 'node-id' }, `用户ID: ${record.userId}`),
|
createVNode('div', { class: 'node-id' }, `用户ID: ${record.userId}`),
|
||||||
createVNode('div', { class: 'node-level' }, getLevelText(record.level))
|
createVNode('div', { class: 'node-level' }, getLevelText(record.level || 0))
|
||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
createVNode('div', { class: 'chain-info' }, [
|
createVNode('div', { class: 'chain-info' }, [
|
||||||
@@ -267,24 +260,83 @@
|
|||||||
|
|
||||||
/* 查看推荐树 */
|
/* 查看推荐树 */
|
||||||
const viewRefereeTree = () => {
|
const viewRefereeTree = () => {
|
||||||
Modal.info({
|
// 加载所有数据用于树状图展示
|
||||||
title: '推荐关系树',
|
loading.value = true;
|
||||||
width: 1000,
|
pageShopDealerReferee({ page: 1, limit: 10000 }) // 获取所有数据
|
||||||
content: createVNode('div', null, [
|
.then((result) => {
|
||||||
createVNode('p', null, '推荐关系树功能开发中,将展示完整的推荐网络结构')
|
treeData.value = result?.list || [];
|
||||||
]),
|
showTree.value = true;
|
||||||
okText: '关闭'
|
loading.value = false;
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.error('加载数据失败: ' + e.message);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 导出数据 */
|
/* 导出数据 */
|
||||||
const exportData = () => {
|
const exportData = async () => {
|
||||||
const hide = message.loading('正在导出推荐关系数据...', 0);
|
try {
|
||||||
// 这里调用导出API
|
// 定义表头
|
||||||
|
const array: (string | number)[][] = [
|
||||||
|
[
|
||||||
|
'推荐人',
|
||||||
|
'推荐人ID',
|
||||||
|
'推荐人电话',
|
||||||
|
'被推荐人',
|
||||||
|
'被推荐人ID',
|
||||||
|
'被推荐人电话',
|
||||||
|
'创建时间'
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
// 获取用户列表数据
|
||||||
|
const list = await listShopDealerReferee({});
|
||||||
|
|
||||||
|
if (!list || list.length === 0) {
|
||||||
|
message.warning('没有数据可以导出');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 将数据转换为Excel行
|
||||||
|
list.forEach((user: ShopDealerReferee) => {
|
||||||
|
array.push([
|
||||||
|
`${user.dealerName}`,
|
||||||
|
`${user.dealerId}`,
|
||||||
|
`${user.dealerPhone}`,
|
||||||
|
`${user.nickname}`,
|
||||||
|
`${user.userId}`,
|
||||||
|
`${user.phone}`,
|
||||||
|
`${user.createTime}`
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 生成Excel文件
|
||||||
|
const sheetName = `shop_dealer_referee`;
|
||||||
|
const workbook = {
|
||||||
|
SheetNames: [sheetName],
|
||||||
|
Sheets: {}
|
||||||
|
};
|
||||||
|
const sheet = utils.aoa_to_sheet(array);
|
||||||
|
workbook.Sheets[sheetName] = sheet;
|
||||||
|
|
||||||
|
// 设置列宽
|
||||||
|
sheet['!cols'] = [
|
||||||
|
{ wch: 10 }, // 用户ID
|
||||||
|
{ wch: 15 }, // 账号
|
||||||
|
];
|
||||||
|
|
||||||
|
message.loading('正在生成Excel文件...', 0);
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
hide();
|
writeFile(workbook, `${sheetName}.xlsx`);
|
||||||
message.success('推荐关系数据导出成功');
|
message.destroy();
|
||||||
}, 2000);
|
message.success(`成功导出 ${list.length} 条记录`);
|
||||||
|
}, 1000);
|
||||||
|
|
||||||
|
} catch (error: any) {
|
||||||
|
message.error(error.message || '导出失败');
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 搜索 */
|
/* 搜索 */
|
||||||
@@ -299,15 +351,10 @@
|
|||||||
showEdit.value = true;
|
showEdit.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 打开批量移动弹窗 */
|
|
||||||
const openMove = () => {
|
|
||||||
showMove.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 删除单个 */
|
/* 删除单个 */
|
||||||
const remove = (row: ShopDealerReferee) => {
|
const remove = (row: ShopDealerReferee) => {
|
||||||
const hide = message.loading('请求中..', 0);
|
const hide = message.loading('请求中..', 0);
|
||||||
removeShopDealerReferee(row.shopDealerRefereeId)
|
removeShopDealerReferee(row.id)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
@@ -332,7 +379,7 @@
|
|||||||
maskClosable: true,
|
maskClosable: true,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
const hide = message.loading('请求中..', 0);
|
const hide = message.loading('请求中..', 0);
|
||||||
removeBatchShopDealerReferee(selection.value.map((d) => d.shopDealerRefereeId))
|
removeBatchShopDealerReferee(selection.value.map((d) => d.id))
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
|
|||||||
@@ -1,206 +1,219 @@
|
|||||||
<!-- 搜索表单 -->
|
<!-- 搜索表单 -->
|
||||||
<template>
|
<template>
|
||||||
<a-space :size="10" style="flex-wrap: wrap">
|
<div class="search-container">
|
||||||
<a-button type="primary" class="ele-btn-icon" @click="add">
|
<!-- 搜索表单 -->
|
||||||
|
<a-form
|
||||||
|
:model="searchForm"
|
||||||
|
layout="inline"
|
||||||
|
class="search-form"
|
||||||
|
@finish="handleSearch"
|
||||||
|
>
|
||||||
|
<a-form-item label="申请人姓名">
|
||||||
|
<a-input
|
||||||
|
v-model:value="searchForm.realName"
|
||||||
|
placeholder="请输入申请人姓名"
|
||||||
|
allow-clear
|
||||||
|
style="width: 160px"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="手机号码">
|
||||||
|
<a-input
|
||||||
|
v-model:value="searchForm.mobile"
|
||||||
|
placeholder="请输入手机号码"
|
||||||
|
allow-clear
|
||||||
|
style="width: 160px"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="申请方式">
|
||||||
|
<a-select
|
||||||
|
v-model:value="searchForm.applyType"
|
||||||
|
placeholder="全部方式"
|
||||||
|
allow-clear
|
||||||
|
style="width: 120px"
|
||||||
|
>
|
||||||
|
<a-select-option :value="10">需要审核</a-select-option>
|
||||||
|
<a-select-option :value="20">免审核</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="审核状态">
|
||||||
|
<a-select
|
||||||
|
v-model:value="searchForm.applyStatus"
|
||||||
|
placeholder="全部状态"
|
||||||
|
allow-clear
|
||||||
|
style="width: 120px"
|
||||||
|
>
|
||||||
|
<a-select-option :value="10">待审核</a-select-option>
|
||||||
|
<a-select-option :value="20">审核通过</a-select-option>
|
||||||
|
<a-select-option :value="30">审核驳回</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="申请时间">
|
||||||
|
<a-range-picker
|
||||||
|
v-model:value="searchForm.dateRange"
|
||||||
|
style="width: 240px"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item>
|
||||||
|
<a-space>
|
||||||
|
<a-button type="primary" html-type="submit" class="ele-btn-icon">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<PlusOutlined />
|
<SearchOutlined />
|
||||||
</template>
|
</template>
|
||||||
<span>添加</span>
|
搜索
|
||||||
</a-button>
|
</a-button>
|
||||||
|
<a-button @click="resetSearch">
|
||||||
|
重置
|
||||||
|
</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
|
||||||
|
<!-- 操作按钮 -->
|
||||||
|
<div class="action-buttons">
|
||||||
|
<a-space>
|
||||||
|
<!-- <a-button type="primary" @click="add" class="ele-btn-icon">-->
|
||||||
|
<!-- <template #icon>-->
|
||||||
|
<!-- <PlusOutlined />-->
|
||||||
|
<!-- </template>-->
|
||||||
|
<!-- 新增申请-->
|
||||||
|
<!-- </a-button>-->
|
||||||
<a-button
|
<a-button
|
||||||
danger
|
|
||||||
type="primary"
|
type="primary"
|
||||||
|
ghost
|
||||||
|
:disabled="!selection?.length"
|
||||||
|
@click="batchApprove"
|
||||||
class="ele-btn-icon"
|
class="ele-btn-icon"
|
||||||
:disabled="selection?.length === 0"
|
|
||||||
@click="removeBatch"
|
|
||||||
>
|
>
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<DeleteOutlined/>
|
<CheckOutlined />
|
||||||
</template>
|
</template>
|
||||||
<span>批量删除</span>
|
批量通过
|
||||||
|
</a-button>
|
||||||
|
<a-button
|
||||||
|
:disabled="!selection?.length"
|
||||||
|
@click="exportData"
|
||||||
|
class="ele-btn-icon"
|
||||||
|
>
|
||||||
|
<template #icon>
|
||||||
|
<ExportOutlined />
|
||||||
|
</template>
|
||||||
|
导出数据
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-input-search
|
|
||||||
allow-clear
|
|
||||||
placeholder="请输入关键词搜索"
|
|
||||||
style="width: 240px"
|
|
||||||
v-model:value="where.keywords"
|
|
||||||
@search="reload"
|
|
||||||
/>
|
|
||||||
<a-button type="text" @click="reset">重置</a-button>
|
|
||||||
<a-button type="text" @click="handleExport">导出xls</a-button>
|
|
||||||
<a-button type="text" @click="openImport">导入xls</a-button>
|
|
||||||
</a-space>
|
</a-space>
|
||||||
|
</div>
|
||||||
<!-- 导入弹窗 -->
|
</div>
|
||||||
<import v-model:visible="showImport" @done="reload"/>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import {DeleteOutlined, PlusOutlined} from '@ant-design/icons-vue';
|
import { reactive } from 'vue';
|
||||||
import {ref} from 'vue';
|
import {
|
||||||
import {message} from 'ant-design-vue';
|
PlusOutlined,
|
||||||
import {utils, writeFile} from 'xlsx';
|
SearchOutlined,
|
||||||
import {listShopDealerUser} from '@/api/shop/shopDealerUser';
|
CheckOutlined,
|
||||||
import type {ShopDealerUser, ShopDealerUserParam} from '@/api/shop/shopDealerUser/model';
|
ExportOutlined
|
||||||
import useSearch from '@/utils/use-search';
|
} from '@ant-design/icons-vue';
|
||||||
|
import type { ShopDealerApplyParam } from '@/api/shop/shopDealerApply/model';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import Import from "./Import.vue";
|
|
||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
// 选中的数据
|
// 选中的数据
|
||||||
selection?: ShopDealerUser[];
|
selection?: any[];
|
||||||
}>(),
|
}>(),
|
||||||
{}
|
{
|
||||||
|
selection: () => []
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
// 请求状态
|
const emit = defineEmits<{
|
||||||
const loading = ref(false);
|
(e: 'search', where?: ShopDealerApplyParam): void;
|
||||||
const dealerUserList = ref<ShopDealerUser[]>([]);
|
(e: 'add'): void;
|
||||||
// 是否显示导入弹窗
|
(e: 'batchApprove'): void;
|
||||||
const showImport = ref(false);
|
(e: 'export'): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
// 表单数据
|
// 搜索表单
|
||||||
const {where, resetFields} = useSearch<ShopDealerUserParam>({
|
const searchForm = reactive<any>({
|
||||||
id: undefined,
|
realName: '',
|
||||||
keywords: ''
|
mobile: '',
|
||||||
|
applyType: undefined,
|
||||||
|
applyStatus: undefined,
|
||||||
|
dateRange: undefined
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits<{
|
// 搜索
|
||||||
(e: 'search', where?: ShopDealerUserParam): void;
|
const handleSearch = () => {
|
||||||
(e: 'add'): void;
|
const searchParams: ShopDealerApplyParam = {};
|
||||||
(e: 'remove'): void;
|
|
||||||
(e: 'batchMove'): void;
|
if (searchForm.realName) {
|
||||||
}>();
|
searchParams.realName = searchForm.realName;
|
||||||
|
}
|
||||||
|
if (searchForm.mobile) {
|
||||||
|
searchParams.mobile = searchForm.mobile;
|
||||||
|
}
|
||||||
|
if (searchForm.applyType) {
|
||||||
|
searchParams.applyType = searchForm.applyType;
|
||||||
|
}
|
||||||
|
if (searchForm.applyStatus) {
|
||||||
|
searchParams.applyStatus = searchForm.applyStatus;
|
||||||
|
}
|
||||||
|
if (searchForm.dateRange && searchForm.dateRange.length === 2) {
|
||||||
|
searchParams.startTime = dayjs(searchForm.dateRange[0]).format('YYYY-MM-DD');
|
||||||
|
searchParams.endTime = dayjs(searchForm.dateRange[1]).format('YYYY-MM-DD');
|
||||||
|
}
|
||||||
|
|
||||||
|
emit('search', searchParams);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 重置搜索
|
||||||
|
const resetSearch = () => {
|
||||||
|
searchForm.realName = '';
|
||||||
|
searchForm.mobile = '';
|
||||||
|
searchForm.applyType = undefined;
|
||||||
|
searchForm.applyStatus = undefined;
|
||||||
|
searchForm.dateRange = undefined;
|
||||||
|
emit('search', {});
|
||||||
|
};
|
||||||
|
|
||||||
// 新增
|
// 新增
|
||||||
const add = () => {
|
const add = () => {
|
||||||
emit('add');
|
emit('add');
|
||||||
};
|
};
|
||||||
|
|
||||||
// 批量删除
|
// 批量通过
|
||||||
const removeBatch = () => {
|
const batchApprove = () => {
|
||||||
emit('remove');
|
emit('batchApprove');
|
||||||
};
|
};
|
||||||
|
|
||||||
// 批量更新
|
// 导出数据
|
||||||
const updateBatch = () => {
|
const exportData = () => {
|
||||||
emit('batchMove');
|
emit('export');
|
||||||
}
|
|
||||||
|
|
||||||
/* 打开导入弹窗 */
|
|
||||||
const openImport = () => {
|
|
||||||
showImport.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
const reload = () => {
|
|
||||||
emit('search', where);
|
|
||||||
};
|
|
||||||
|
|
||||||
// 导出
|
|
||||||
const handleExport = async () => {
|
|
||||||
if (loading.value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
loading.value = true;
|
|
||||||
message.loading('正在准备导出数据...', 0);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const array: (string | number)[][] = [
|
|
||||||
[
|
|
||||||
'用户ID',
|
|
||||||
'姓名',
|
|
||||||
'手机号',
|
|
||||||
'可提现佣金',
|
|
||||||
'冻结佣金',
|
|
||||||
'累计提现',
|
|
||||||
'推荐人ID',
|
|
||||||
'一级成员数',
|
|
||||||
'二级成员数',
|
|
||||||
'三级成员数',
|
|
||||||
'专属二维码',
|
|
||||||
'状态',
|
|
||||||
'创建时间',
|
|
||||||
'更新时间'
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
// 按搜索结果导出
|
|
||||||
const list = await listShopDealerUser(where);
|
|
||||||
dealerUserList.value = list;
|
|
||||||
|
|
||||||
if (!list || list.length === 0) {
|
|
||||||
message.warning('没有数据可以导出');
|
|
||||||
loading.value = false;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
list.forEach((d: ShopDealerUser) => {
|
|
||||||
array.push([
|
|
||||||
`${d.userId || ''}`,
|
|
||||||
`${d.realName || ''}`,
|
|
||||||
`${d.mobile || ''}`,
|
|
||||||
`${d.money || '0'}`,
|
|
||||||
`${d.freezeMoney || '0'}`,
|
|
||||||
`${d.totalMoney || '0'}`,
|
|
||||||
`${d.refereeId || ''}`,
|
|
||||||
`${d.firstNum || 0}`,
|
|
||||||
`${d.secondNum || 0}`,
|
|
||||||
`${d.thirdNum || 0}`,
|
|
||||||
`${d.qrcode || ''}`,
|
|
||||||
`${d.isDelete === 1 ? '已删除' : '正常'}`,
|
|
||||||
`${d.createTime || ''}`,
|
|
||||||
`${d.updateTime || ''}`
|
|
||||||
]);
|
|
||||||
});
|
|
||||||
|
|
||||||
const sheetName = `导出分销商用户列表${dayjs(new Date()).format('YYYYMMDD')}`;
|
|
||||||
const workbook = {
|
|
||||||
SheetNames: [sheetName],
|
|
||||||
Sheets: {}
|
|
||||||
};
|
|
||||||
const sheet = utils.aoa_to_sheet(array);
|
|
||||||
workbook.Sheets[sheetName] = sheet;
|
|
||||||
|
|
||||||
// 设置列宽
|
|
||||||
sheet['!cols'] = [
|
|
||||||
{wch: 10}, // 用户ID
|
|
||||||
{wch: 15}, // 姓名
|
|
||||||
{wch: 15}, // 手机号
|
|
||||||
{wch: 12}, // 可提现佣金
|
|
||||||
{wch: 12}, // 冻结佣金
|
|
||||||
{wch: 12}, // 累计提现
|
|
||||||
{wch: 10}, // 推荐人ID
|
|
||||||
{wch: 10}, // 一级成员数
|
|
||||||
{wch: 10}, // 二级成员数
|
|
||||||
{wch: 10}, // 三级成员数
|
|
||||||
{wch: 20}, // 专属二维码
|
|
||||||
{wch: 8}, // 状态
|
|
||||||
{wch: 20}, // 创建时间
|
|
||||||
{wch: 20} // 更新时间
|
|
||||||
];
|
|
||||||
|
|
||||||
message.destroy();
|
|
||||||
message.loading('正在生成Excel文件...', 0);
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
writeFile(workbook, `${sheetName}.xlsx`);
|
|
||||||
loading.value = false;
|
|
||||||
message.destroy();
|
|
||||||
message.success(`成功导出 ${list.length} 条记录`);
|
|
||||||
}, 1000);
|
|
||||||
|
|
||||||
} catch (error: any) {
|
|
||||||
loading.value = false;
|
|
||||||
message.destroy();
|
|
||||||
message.error(error.message || '导出失败,请重试');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 重置 */
|
|
||||||
const reset = () => {
|
|
||||||
resetFields();
|
|
||||||
reload();
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.search-container {
|
||||||
|
background: #fff;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: 6px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
|
||||||
|
.search-form {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
|
||||||
|
:deep(.ant-form-item) {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-buttons {
|
||||||
|
border-top: 1px solid #f0f0f0;
|
||||||
|
padding-top: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
407
src/views/shop/shopDealerUser/components/shopDealerApplyEdit.vue
Normal file
407
src/views/shop/shopDealerUser/components/shopDealerApplyEdit.vue
Normal file
@@ -0,0 +1,407 @@
|
|||||||
|
<!-- 编辑弹窗 -->
|
||||||
|
<template>
|
||||||
|
<ele-modal
|
||||||
|
:width="900"
|
||||||
|
:visible="visible"
|
||||||
|
:maskClosable="false"
|
||||||
|
:maxable="maxable"
|
||||||
|
:title="isUpdate ? '编辑分销商申请' : '新增分销商申请'"
|
||||||
|
:body-style="{ paddingBottom: '28px' }"
|
||||||
|
@update:visible="updateVisible"
|
||||||
|
@ok="save"
|
||||||
|
>
|
||||||
|
<a-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="form"
|
||||||
|
:rules="rules"
|
||||||
|
:label-col="{ span: 6 }"
|
||||||
|
:wrapper-col="{ span: 18 }"
|
||||||
|
>
|
||||||
|
<!-- 申请人信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">申请人信息</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="用户ID" name="userId">
|
||||||
|
<a-input-number
|
||||||
|
:min="1"
|
||||||
|
placeholder="请输入用户ID"
|
||||||
|
:disabled="isUpdate"
|
||||||
|
v-model:value="form.userId"
|
||||||
|
style="width: 100%"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="真实姓名" name="realName">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入真实姓名"
|
||||||
|
v-model:value="form.realName"
|
||||||
|
:disabled="isUpdate"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="手机号码" name="mobile">
|
||||||
|
<a-input
|
||||||
|
placeholder="请输入手机号码"
|
||||||
|
:disabled="isUpdate"
|
||||||
|
v-model:value="form.mobile"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="推荐人ID" name="refereeId">
|
||||||
|
<a-input-number
|
||||||
|
:min="1"
|
||||||
|
placeholder="请输入推荐人用户ID"
|
||||||
|
:disabled="isUpdate"
|
||||||
|
v-model:value="form.refereeId"
|
||||||
|
style="width: 100%"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<!-- 审核信息 -->
|
||||||
|
<a-divider orientation="left">
|
||||||
|
<span style="color: #1890ff; font-weight: 600;">审核信息</span>
|
||||||
|
</a-divider>
|
||||||
|
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="审核状态" name="applyStatus">
|
||||||
|
<a-select v-model:value="form.applyStatus" placeholder="请选择审核状态" @change="handleStatusChange">
|
||||||
|
<a-select-option :value="10">
|
||||||
|
<a-tag color="processing">待审核</a-tag>
|
||||||
|
<span style="margin-left: 8px;">等待审核</span>
|
||||||
|
</a-select-option>
|
||||||
|
<a-select-option :value="20">
|
||||||
|
<a-tag color="success">审核通过</a-tag>
|
||||||
|
<span style="margin-left: 8px;">申请通过</span>
|
||||||
|
</a-select-option>
|
||||||
|
<a-select-option :value="30">
|
||||||
|
<a-tag color="error">审核驳回</a-tag>
|
||||||
|
<span style="margin-left: 8px;">申请驳回</span>
|
||||||
|
</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<!-- <a-col :span="12">-->
|
||||||
|
<!-- <a-form-item label="审核时间" name="auditTime" v-if="form.applyStatus === 20 || form.applyStatus === 30">-->
|
||||||
|
<!-- <a-date-picker-->
|
||||||
|
<!-- v-model:value="form.auditTime"-->
|
||||||
|
<!-- show-time-->
|
||||||
|
<!-- format="YYYY-MM-DD HH:mm:ss"-->
|
||||||
|
<!-- placeholder="请选择审核时间"-->
|
||||||
|
<!-- style="width: 100%"-->
|
||||||
|
<!-- />-->
|
||||||
|
<!-- </a-form-item>-->
|
||||||
|
<!-- </a-col>-->
|
||||||
|
</a-row>
|
||||||
|
|
||||||
|
<a-row :gutter="16" v-if="form.applyStatus === 30">
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="驳回原因" name="rejectReason">
|
||||||
|
<a-textarea
|
||||||
|
v-model:value="form.rejectReason"
|
||||||
|
placeholder="请输入驳回原因"
|
||||||
|
style="width: 100%"
|
||||||
|
:rows="3"
|
||||||
|
:maxlength="200"
|
||||||
|
show-count
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</ele-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, reactive, watch } from 'vue';
|
||||||
|
import { Form, message } from 'ant-design-vue';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import { assignObject, uuid } from 'ele-admin-pro';
|
||||||
|
import { addShopDealerApply, updateShopDealerApply } from '@/api/shop/shopDealerApply';
|
||||||
|
import { ShopDealerApply } from '@/api/shop/shopDealerApply/model';
|
||||||
|
import { useThemeStore } from '@/store/modules/theme';
|
||||||
|
import { storeToRefs } from 'pinia';
|
||||||
|
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
||||||
|
import { FormInstance } from 'ant-design-vue/es/form';
|
||||||
|
import { FileRecord } from '@/api/system/file/model';
|
||||||
|
|
||||||
|
// 是否是修改
|
||||||
|
const isUpdate = ref(false);
|
||||||
|
const useForm = Form.useForm;
|
||||||
|
// 是否开启响应式布局
|
||||||
|
const themeStore = useThemeStore();
|
||||||
|
const { styleResponsive } = storeToRefs(themeStore);
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
// 弹窗是否打开
|
||||||
|
visible: boolean;
|
||||||
|
// 修改回显的数据
|
||||||
|
data?: ShopDealerApply | null;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'done'): void;
|
||||||
|
(e: 'update:visible', visible: boolean): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 提交状态
|
||||||
|
const loading = ref(false);
|
||||||
|
// 是否显示最大化切换按钮
|
||||||
|
const maxable = ref(true);
|
||||||
|
// 表格选中数据
|
||||||
|
const formRef = ref<FormInstance | null>(null);
|
||||||
|
const images = ref<ItemType[]>([]);
|
||||||
|
|
||||||
|
// 表单数据
|
||||||
|
const form = reactive<ShopDealerApply>({
|
||||||
|
applyId: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
realName: '',
|
||||||
|
mobile: '',
|
||||||
|
refereeId: undefined,
|
||||||
|
applyType: 10,
|
||||||
|
applyTime: undefined,
|
||||||
|
applyStatus: 10,
|
||||||
|
auditTime: undefined,
|
||||||
|
rejectReason: '',
|
||||||
|
tenantId: undefined,
|
||||||
|
createTime: undefined,
|
||||||
|
updateTime: undefined
|
||||||
|
});
|
||||||
|
|
||||||
|
/* 更新visible */
|
||||||
|
const updateVisible = (value: boolean) => {
|
||||||
|
emit('update:visible', value);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 表单验证规则
|
||||||
|
const rules = reactive({
|
||||||
|
userId: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入用户ID',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
realName: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入真实姓名',
|
||||||
|
trigger: 'blur'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
min: 2,
|
||||||
|
max: 20,
|
||||||
|
message: '姓名长度应在2-20个字符之间',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
mobile: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入手机号码',
|
||||||
|
trigger: 'blur'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
pattern: /^1[3-9]\d{9}$/,
|
||||||
|
message: '请输入正确的手机号码',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
applyType: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择申请方式',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
applyStatus: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择审核状态',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
rejectReason: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '驳回时必须填写驳回原因',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
auditTime: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '审核时请选择审核时间',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const { resetFields } = useForm(form, rules);
|
||||||
|
|
||||||
|
/* 处理审核状态变化 */
|
||||||
|
const handleStatusChange = (value: number) => {
|
||||||
|
// 当状态改为审核通过或驳回时,自动设置审核时间为当前时间
|
||||||
|
if ((value === 20 || value === 30) && !form.auditTime) {
|
||||||
|
form.auditTime = dayjs();
|
||||||
|
}
|
||||||
|
// 当状态改为待审核时,清空审核时间和驳回原因
|
||||||
|
if (value === 10) {
|
||||||
|
form.auditTime = undefined;
|
||||||
|
form.rejectReason = '';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 保存编辑 */
|
||||||
|
const save = () => {
|
||||||
|
if (!formRef.value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 动态验证规则
|
||||||
|
const validateFields: string[] = ['userId', 'realName', 'mobile', 'applyStatus'];
|
||||||
|
|
||||||
|
// 如果是驳回状态,需要验证驳回原因
|
||||||
|
if (form.applyStatus === 30) {
|
||||||
|
validateFields.push('rejectReason');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果是审核通过或驳回状态,需要验证审核时间
|
||||||
|
if (form.applyStatus === 20 || form.applyStatus === 30) {
|
||||||
|
validateFields.push('auditTime');
|
||||||
|
}
|
||||||
|
|
||||||
|
formRef.value
|
||||||
|
.validate(validateFields)
|
||||||
|
.then(() => {
|
||||||
|
loading.value = true;
|
||||||
|
const formData = {
|
||||||
|
...form
|
||||||
|
};
|
||||||
|
|
||||||
|
// 处理时间字段转换 - 转换为ISO字符串格式
|
||||||
|
if (formData.applyTime) {
|
||||||
|
if (dayjs.isDayjs(formData.applyTime)) {
|
||||||
|
formData.applyTime = formData.applyTime.format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
} else if (typeof formData.applyTime === 'number') {
|
||||||
|
formData.applyTime = dayjs(formData.applyTime).format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (formData.auditTime) {
|
||||||
|
if (dayjs.isDayjs(formData.auditTime)) {
|
||||||
|
formData.auditTime = formData.auditTime.format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
} else if (typeof formData.auditTime === 'number') {
|
||||||
|
formData.auditTime = dayjs(formData.auditTime).format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 当审核状态为通过或驳回时,确保有审核时间
|
||||||
|
if ((formData.applyStatus === 20 || formData.applyStatus === 30) && !formData.auditTime) {
|
||||||
|
formData.auditTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 当状态为待审核时,清空审核时间
|
||||||
|
if (formData.applyStatus === 10) {
|
||||||
|
formData.auditTime = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
const saveOrUpdate = isUpdate.value ? updateShopDealerApply : addShopDealerApply;
|
||||||
|
saveOrUpdate(formData)
|
||||||
|
.then((msg) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.success(msg);
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.visible,
|
||||||
|
(visible) => {
|
||||||
|
if (visible) {
|
||||||
|
if (props.data) {
|
||||||
|
assignObject(form, props.data);
|
||||||
|
// 处理时间字段 - 确保转换为dayjs对象
|
||||||
|
if (props.data.applyTime) {
|
||||||
|
form.applyTime = dayjs(props.data.applyTime);
|
||||||
|
}
|
||||||
|
if (props.data.auditTime) {
|
||||||
|
form.auditTime = dayjs(props.data.auditTime);
|
||||||
|
}
|
||||||
|
isUpdate.value = true;
|
||||||
|
} else {
|
||||||
|
// 重置为默认值
|
||||||
|
Object.assign(form, {
|
||||||
|
applyId: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
realName: '',
|
||||||
|
mobile: '',
|
||||||
|
refereeId: undefined,
|
||||||
|
applyType: 10,
|
||||||
|
applyTime: dayjs(),
|
||||||
|
applyStatus: 10,
|
||||||
|
auditTime: undefined,
|
||||||
|
rejectReason: '',
|
||||||
|
tenantId: undefined,
|
||||||
|
createTime: undefined,
|
||||||
|
updateTime: undefined
|
||||||
|
});
|
||||||
|
isUpdate.value = false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
resetFields();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ immediate: true }
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
:deep(.ant-divider-horizontal.ant-divider-with-text-left) {
|
||||||
|
margin: 24px 0 16px 0;
|
||||||
|
|
||||||
|
.ant-divider-inner-text {
|
||||||
|
padding: 0 16px 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-form-item) {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-radio) {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
|
||||||
|
.ant-radio-inner {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-select-selection-item) {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
||||||
<ele-pro-table
|
<ele-pro-table
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
row-key="id"
|
row-key="applyId"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:datasource="datasource"
|
:datasource="datasource"
|
||||||
:customRow="customRow"
|
:customRow="customRow"
|
||||||
@@ -16,28 +16,36 @@
|
|||||||
@search="reload"
|
@search="reload"
|
||||||
:selection="selection"
|
:selection="selection"
|
||||||
@add="openEdit"
|
@add="openEdit"
|
||||||
@remove="removeBatch"
|
@batchApprove="batchApprove"
|
||||||
@batchMove="openMove"
|
@export="exportData"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'userStatus'">
|
<template v-if="column.key === 'applyStatus'">
|
||||||
<a-tag v-if="record.isDelete === 1" color="red">已删除</a-tag>
|
<a-tag v-if="record.applyStatus === 10" color="orange">待审核</a-tag>
|
||||||
<a-tag v-else color="green">正常</a-tag>
|
<a-tag v-if="record.applyStatus === 20" color="green">已通过</a-tag>
|
||||||
|
<a-tag v-if="record.applyStatus === 30" color="red">已驳回</a-tag>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a @click="openEdit(record)" class="ele-text-primary">
|
<a @click="openEdit(record)" class="ele-text-primary">
|
||||||
<EditOutlined/>
|
<EditOutlined/>
|
||||||
编辑
|
编辑
|
||||||
</a>
|
</a>
|
||||||
|
<template v-if="record.applyStatus !== 20">
|
||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
<a @click="viewDetail(record)" class="ele-text-info">
|
<a @click="approveApply(record)" class="ele-text-success">
|
||||||
<EyeOutlined/>
|
<CheckOutlined/>
|
||||||
详情
|
通过
|
||||||
|
</a>
|
||||||
|
<a-divider type="vertical"/>
|
||||||
|
<a @click="rejectApply(record)" class="ele-text-warning">
|
||||||
|
<CloseOutlined/>
|
||||||
|
驳回
|
||||||
</a>
|
</a>
|
||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
title="确定要删除此分销商用户吗?"
|
v-if="record.applyStatus != 20"
|
||||||
|
title="确定要删除此申请记录吗?"
|
||||||
@confirm="remove(record)"
|
@confirm="remove(record)"
|
||||||
placement="topRight"
|
placement="topRight"
|
||||||
>
|
>
|
||||||
@@ -48,11 +56,12 @@
|
|||||||
</a-popconfirm>
|
</a-popconfirm>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
</template>
|
||||||
</ele-pro-table>
|
</ele-pro-table>
|
||||||
</a-card>
|
</a-card>
|
||||||
|
|
||||||
<!-- 编辑弹窗 -->
|
<!-- 编辑弹窗 -->
|
||||||
<ShopDealerUserEdit v-model:visible="showEdit" :data="current" @done="reload"/>
|
<ShopDealerApplyEdit v-model:visible="showEdit" :data="current" @done="reload"/>
|
||||||
</a-page-header>
|
</a-page-header>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -61,33 +70,37 @@ import {createVNode, ref} from 'vue';
|
|||||||
import {message, Modal} from 'ant-design-vue';
|
import {message, Modal} from 'ant-design-vue';
|
||||||
import {
|
import {
|
||||||
ExclamationCircleOutlined,
|
ExclamationCircleOutlined,
|
||||||
|
CheckOutlined,
|
||||||
|
CloseOutlined,
|
||||||
EditOutlined,
|
EditOutlined,
|
||||||
EyeOutlined,
|
|
||||||
DeleteOutlined
|
DeleteOutlined
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import type {EleProTable} from 'ele-admin-pro';
|
import type {EleProTable} from 'ele-admin-pro';
|
||||||
import {toDateString} from 'ele-admin-pro';
|
|
||||||
import type {
|
import type {
|
||||||
DatasourceFunction,
|
DatasourceFunction,
|
||||||
ColumnItem
|
ColumnItem
|
||||||
} from 'ele-admin-pro/es/ele-pro-table/types';
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
||||||
import Search from './components/search.vue';
|
import Search from './components/search.vue';
|
||||||
import {getPageTitle} from '@/utils/common';
|
import {getPageTitle} from '@/utils/common';
|
||||||
import ShopDealerUserEdit from './components/shopDealerUserEdit.vue';
|
import ShopDealerApplyEdit from './components/shopDealerApplyEdit.vue';
|
||||||
import {pageShopDealerUser, removeShopDealerUser, removeBatchShopDealerUser} from '@/api/shop/shopDealerUser';
|
import {
|
||||||
import type {ShopDealerUser, ShopDealerUserParam} from '@/api/shop/shopDealerUser/model';
|
pageShopDealerApply,
|
||||||
|
removeShopDealerApply,
|
||||||
|
removeBatchShopDealerApply,
|
||||||
|
batchApproveShopDealerApply,
|
||||||
|
updateShopDealerApply
|
||||||
|
} from '@/api/shop/shopDealerApply';
|
||||||
|
import type {ShopDealerApply, ShopDealerApplyParam} from '@/api/shop/shopDealerApply/model';
|
||||||
|
|
||||||
// 表格实例
|
// 表格实例
|
||||||
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
||||||
|
|
||||||
// 表格选中数据
|
// 表格选中数据
|
||||||
const selection = ref<ShopDealerUser[]>([]);
|
const selection = ref<ShopDealerApply[]>([]);
|
||||||
// 当前编辑数据
|
// 当前编辑数据
|
||||||
const current = ref<ShopDealerUser | null>(null);
|
const current = ref<ShopDealerApply | null>(null);
|
||||||
// 是否显示编辑弹窗
|
// 是否显示编辑弹窗
|
||||||
const showEdit = ref(false);
|
const showEdit = ref(false);
|
||||||
// 是否显示批量移动弹窗
|
|
||||||
const showMove = ref(false);
|
|
||||||
// 加载状态
|
// 加载状态
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
|
|
||||||
@@ -102,7 +115,9 @@ const datasource: DatasourceFunction = ({
|
|||||||
if (filters) {
|
if (filters) {
|
||||||
where.status = filters.status;
|
where.status = filters.status;
|
||||||
}
|
}
|
||||||
return pageShopDealerUser({
|
where.type = 4;
|
||||||
|
where.applyStatus = 20;
|
||||||
|
return pageShopDealerApply({
|
||||||
...where,
|
...where,
|
||||||
...orders,
|
...orders,
|
||||||
page,
|
page,
|
||||||
@@ -113,47 +128,43 @@ const datasource: DatasourceFunction = ({
|
|||||||
// 表格列配置
|
// 表格列配置
|
||||||
const columns = ref<ColumnItem[]>([
|
const columns = ref<ColumnItem[]>([
|
||||||
{
|
{
|
||||||
title: '用户ID',
|
title: 'ID',
|
||||||
dataIndex: 'userId',
|
dataIndex: 'applyId',
|
||||||
key: 'userId',
|
key: 'applyId',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 80,
|
width: 80,
|
||||||
fixed: 'left'
|
fixed: 'left'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '用户信息',
|
title: '申请人信息',
|
||||||
key: 'userInfo',
|
key: 'applicantInfo',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
width: 200,
|
|
||||||
fixed: 'left',
|
fixed: 'left',
|
||||||
customRender: ({record}) => {
|
customRender: ({record}) => {
|
||||||
return `${record.realName || ''} (${record.mobile || ''})`;
|
return `${record.realName || '-'} (${record.mobile || '-'})`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '佣金统计',
|
title: '申请方式',
|
||||||
key: 'commissionStats',
|
dataIndex: 'applyType',
|
||||||
|
key: 'applyType',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 180,
|
width: 120,
|
||||||
customRender: ({record}) => {
|
customRender: ({text}) => {
|
||||||
const available = parseFloat(record.money || '0').toFixed(2);
|
const typeMap = {
|
||||||
const frozen = parseFloat(record.freezeMoney || '0').toFixed(2);
|
10: {text: '需审核', color: 'orange'},
|
||||||
const total = parseFloat(record.totalMoney || '0').toFixed(2);
|
20: {text: '免审核', color: 'green'}
|
||||||
return `可提现: ¥${available} | 冻结: ¥${frozen} | 累计: ¥${total}`;
|
};
|
||||||
|
const type = typeMap[text] || {text: '未知', color: 'default'};
|
||||||
|
return {type: 'tag', props: {color: type.color}, children: type.text};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '团队统计',
|
title: '审核状态',
|
||||||
key: 'teamStats',
|
dataIndex: 'applyStatus',
|
||||||
|
key: 'applyStatus',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 150,
|
width: 120
|
||||||
customRender: ({record}) => {
|
|
||||||
const first = record.firstNum || 0;
|
|
||||||
const second = record.secondNum || 0;
|
|
||||||
const third = record.thirdNum || 0;
|
|
||||||
const total = first + second + third;
|
|
||||||
return `总计: ${total} (${first}/${second}/${third})`;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '推荐人',
|
title: '推荐人',
|
||||||
@@ -163,111 +174,139 @@ const columns = ref<ColumnItem[]>([
|
|||||||
width: 100,
|
width: 100,
|
||||||
customRender: ({text}) => text ? `ID: ${text}` : '无'
|
customRender: ({text}) => text ? `ID: ${text}` : '无'
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '申请时间',
|
||||||
|
// dataIndex: 'applyTime',
|
||||||
|
// key: 'applyTime',
|
||||||
|
// align: 'center',
|
||||||
|
// width: 120,
|
||||||
|
// customRender: ({ text }) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '审核时间',
|
||||||
|
// dataIndex: 'auditTime',
|
||||||
|
// key: 'auditTime',
|
||||||
|
// align: 'center',
|
||||||
|
// customRender: ({ text }) => text ? toDateString(new Date(text), 'yyyy-MM-dd HH:mm') : '-'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '专属二维码',
|
title: '驳回原因',
|
||||||
dataIndex: 'qrcode',
|
dataIndex: 'rejectReason',
|
||||||
key: 'qrcode',
|
key: 'rejectReason',
|
||||||
align: 'center',
|
align: 'left',
|
||||||
width: 120,
|
ellipsis: true,
|
||||||
customRender: ({text}) => {
|
customRender: ({text}) => text || '-'
|
||||||
return text ? '已生成' : '未生成';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
key: 'userStatus',
|
|
||||||
align: 'center',
|
|
||||||
width: 100,
|
|
||||||
customRender: ({record}) => {
|
|
||||||
if (record.isDelete === 1) {
|
|
||||||
return {type: 'tag', props: {color: 'red'}, children: '已删除'};
|
|
||||||
}
|
|
||||||
return {type: 'tag', props: {color: 'green'}, children: '正常'};
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '创建时间',
|
title: '创建时间',
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
key: 'createTime',
|
key: 'createTime',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 120,
|
|
||||||
sorter: true,
|
sorter: true,
|
||||||
ellipsis: true,
|
ellipsis: true
|
||||||
customRender: ({text}) => text ? toDateString(text, 'yyyy-MM-dd') : '-'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
width: 220,
|
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
width: 380,
|
||||||
hideInSetting: true
|
hideInSetting: true
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/* 搜索 */
|
/* 搜索 */
|
||||||
const reload = (where?: ShopDealerUserParam) => {
|
const reload = (where?: ShopDealerApplyParam) => {
|
||||||
selection.value = [];
|
selection.value = [];
|
||||||
tableRef?.value?.reload({where: where});
|
tableRef?.value?.reload({where: where});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* 审核通过 */
|
||||||
|
const approveApply = (row: ShopDealerApply) => {
|
||||||
|
Modal.confirm({
|
||||||
|
title: '审核通过确认',
|
||||||
|
content: `确定要通过 ${row.realName} 的经销商申请吗?`,
|
||||||
|
icon: createVNode(CheckOutlined),
|
||||||
|
okText: '确认通过',
|
||||||
|
okType: 'primary',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: async () => {
|
||||||
|
const hide = message.loading('正在处理审核...', 0);
|
||||||
|
try {
|
||||||
|
await updateShopDealerApply({
|
||||||
|
...row,
|
||||||
|
applyId: row.applyId,
|
||||||
|
applyStatus: 20
|
||||||
|
});
|
||||||
|
hide();
|
||||||
|
message.success('审核通过成功');
|
||||||
|
reload();
|
||||||
|
} catch (error: any) {
|
||||||
|
hide();
|
||||||
|
message.error(error.message || '审核失败,请重试');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 审核驳回 */
|
||||||
|
const rejectApply = (row: ShopDealerApply) => {
|
||||||
|
let rejectReason = '';
|
||||||
|
Modal.confirm({
|
||||||
|
title: '审核驳回',
|
||||||
|
content: createVNode('div', null, [
|
||||||
|
createVNode('p', null, `申请人: ${row.realName} (${row.mobile})`),
|
||||||
|
createVNode('p', {style: 'margin-top: 12px;'}, '请输入驳回原因:'),
|
||||||
|
createVNode('textarea', {
|
||||||
|
placeholder: '请输入驳回原因...',
|
||||||
|
style: 'width: 100%; height: 80px; margin-top: 8px; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px;',
|
||||||
|
onInput: (e: any) => {
|
||||||
|
rejectReason = e.target.value;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
icon: createVNode(CloseOutlined),
|
||||||
|
okText: '确认驳回',
|
||||||
|
okType: 'danger',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: async () => {
|
||||||
|
if (!rejectReason.trim()) {
|
||||||
|
message.error('请输入驳回原因');
|
||||||
|
return Promise.reject();
|
||||||
|
}
|
||||||
|
const hide = message.loading('正在处理审核...', 0);
|
||||||
|
try {
|
||||||
|
await updateShopDealerApply({
|
||||||
|
...row,
|
||||||
|
applyStatus: 30,
|
||||||
|
rejectReason: rejectReason.trim()
|
||||||
|
});
|
||||||
|
hide();
|
||||||
|
message.success('审核驳回成功');
|
||||||
|
reload();
|
||||||
|
} catch (error: any) {
|
||||||
|
hide();
|
||||||
|
message.error(error.message || '审核失败,请重试');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
/* 打开编辑弹窗 */
|
/* 打开编辑弹窗 */
|
||||||
const openEdit = (row?: ShopDealerUser) => {
|
const openEdit = (row?: ShopDealerApply) => {
|
||||||
current.value = row ?? null;
|
current.value = row ?? null;
|
||||||
showEdit.value = true;
|
showEdit.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 查看详情 */
|
|
||||||
const viewDetail = (row: ShopDealerUser) => {
|
|
||||||
Modal.info({
|
|
||||||
title: '分销商用户详情',
|
|
||||||
width: 600,
|
|
||||||
content: createVNode('div', {style: 'max-height: 400px; overflow-y: auto;'}, [
|
|
||||||
createVNode('div', {class: 'detail-item'}, [
|
|
||||||
createVNode('strong', null, '基本信息'),
|
|
||||||
createVNode('p', null, `姓名: ${row.realName || '-'}`),
|
|
||||||
createVNode('p', null, `手机号: ${row.mobile || '-'}`),
|
|
||||||
createVNode('p', null, `用户ID: ${row.userId || '-'}`),
|
|
||||||
createVNode('p', null, `推荐人ID: ${row.refereeId || '无'}`),
|
|
||||||
]),
|
|
||||||
createVNode('div', {class: 'detail-item', style: 'margin-top: 16px;'}, [
|
|
||||||
createVNode('strong', null, '佣金信息'),
|
|
||||||
createVNode('p', null, `可提现佣金: ¥${parseFloat(row.money || '0').toFixed(2)}`),
|
|
||||||
createVNode('p', null, `冻结佣金: ¥${parseFloat(row.freezeMoney || '0').toFixed(2)}`),
|
|
||||||
createVNode('p', null, `累计提现: ¥${parseFloat(row.totalMoney || '0').toFixed(2)}`),
|
|
||||||
]),
|
|
||||||
createVNode('div', {class: 'detail-item', style: 'margin-top: 16px;'}, [
|
|
||||||
createVNode('strong', null, '团队信息'),
|
|
||||||
createVNode('p', null, `一级成员: ${row.firstNum || 0} 人`),
|
|
||||||
createVNode('p', null, `二级成员: ${row.secondNum || 0} 人`),
|
|
||||||
createVNode('p', null, `三级成员: ${row.thirdNum || 0} 人`),
|
|
||||||
createVNode('p', null, `团队总数: ${(row.firstNum || 0) + (row.secondNum || 0) + (row.thirdNum || 0)} 人`),
|
|
||||||
]),
|
|
||||||
createVNode('div', {class: 'detail-item', style: 'margin-top: 16px;'}, [
|
|
||||||
createVNode('strong', null, '其他信息'),
|
|
||||||
createVNode('p', null, `专属二维码: ${row.qrcode ? '已生成' : '未生成'}`),
|
|
||||||
createVNode('p', null, `创建时间: ${row.createTime ? toDateString(row.createTime, 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
createVNode('p', null, `更新时间: ${row.updateTime ? toDateString(row.updateTime, 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
])
|
|
||||||
]),
|
|
||||||
okText: '关闭'
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 打开批量移动弹窗 */
|
|
||||||
const openMove = () => {
|
|
||||||
showMove.value = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 删除单个 */
|
/* 删除单个 */
|
||||||
const remove = (row: ShopDealerUser) => {
|
const remove = (row: ShopDealerApply) => {
|
||||||
if (!row.id) {
|
if (!row.applyId) {
|
||||||
message.error('删除失败:缺少必要参数');
|
message.error('删除失败:缺少必要参数');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const hide = message.loading('正在删除分销商用户...', 0);
|
const hide = message.loading('正在删除申请记录...', 0);
|
||||||
removeShopDealerUser(row.id)
|
removeShopDealerApply(row.applyId)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg || '删除成功');
|
message.success(msg || '删除成功');
|
||||||
@@ -286,7 +325,7 @@ const removeBatch = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const validIds = selection.value.filter(d => d.id).map(d => d.id);
|
const validIds = selection.value.filter(d => d.applyId).map(d => d.applyId);
|
||||||
if (!validIds.length) {
|
if (!validIds.length) {
|
||||||
message.error('选中的数据中没有有效的ID');
|
message.error('选中的数据中没有有效的ID');
|
||||||
return;
|
return;
|
||||||
@@ -294,7 +333,7 @@ const removeBatch = () => {
|
|||||||
|
|
||||||
Modal.confirm({
|
Modal.confirm({
|
||||||
title: '批量删除确认',
|
title: '批量删除确认',
|
||||||
content: `确定要删除选中的 ${validIds.length} 条分销商用户记录吗?此操作不可恢复。`,
|
content: `确定要删除选中的 ${validIds.length} 条申请记录吗?此操作不可恢复。`,
|
||||||
icon: createVNode(ExclamationCircleOutlined),
|
icon: createVNode(ExclamationCircleOutlined),
|
||||||
maskClosable: true,
|
maskClosable: true,
|
||||||
okText: '确认删除',
|
okText: '确认删除',
|
||||||
@@ -302,7 +341,7 @@ const removeBatch = () => {
|
|||||||
cancelText: '取消',
|
cancelText: '取消',
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
const hide = message.loading(`正在删除 ${validIds.length} 条记录...`, 0);
|
const hide = message.loading(`正在删除 ${validIds.length} 条记录...`, 0);
|
||||||
removeBatchShopDealerUser(validIds)
|
removeBatchShopDealerApply(validIds)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg || `成功删除 ${validIds.length} 条记录`);
|
message.success(msg || `成功删除 ${validIds.length} 条记录`);
|
||||||
@@ -317,13 +356,60 @@ const removeBatch = () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* 批量通过 */
|
||||||
|
const batchApprove = () => {
|
||||||
|
if (!selection.value.length) {
|
||||||
|
message.error('请至少选择一条数据');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const pendingApplies = selection.value.filter(item => item.applyStatus === 10);
|
||||||
|
if (!pendingApplies.length) {
|
||||||
|
message.error('所选申请中没有待审核的记录');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Modal.confirm({
|
||||||
|
title: '批量通过确认',
|
||||||
|
content: `确定要通过选中的 ${pendingApplies.length} 个申请吗?`,
|
||||||
|
icon: createVNode(ExclamationCircleOutlined),
|
||||||
|
okText: '确认通过',
|
||||||
|
okType: 'primary',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: async () => {
|
||||||
|
const hide = message.loading('正在批量通过...', 0);
|
||||||
|
try {
|
||||||
|
const ids = pendingApplies.map(item => item.applyId);
|
||||||
|
await batchApproveShopDealerApply(ids);
|
||||||
|
hide();
|
||||||
|
message.success(`成功通过 ${pendingApplies.length} 个申请`);
|
||||||
|
selection.value = [];
|
||||||
|
reload();
|
||||||
|
} catch (error: any) {
|
||||||
|
hide();
|
||||||
|
message.error(error.message || '批量审核失败,请重试');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 导出数据 */
|
||||||
|
const exportData = () => {
|
||||||
|
const hide = message.loading('正在导出申请数据...', 0);
|
||||||
|
// 这里调用导出API
|
||||||
|
setTimeout(() => {
|
||||||
|
hide();
|
||||||
|
message.success('申请数据导出成功');
|
||||||
|
}, 2000);
|
||||||
|
};
|
||||||
|
|
||||||
/* 查询 */
|
/* 查询 */
|
||||||
const query = () => {
|
const query = () => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 自定义行属性 */
|
/* 自定义行属性 */
|
||||||
const customRow = (record: ShopDealerUser) => {
|
const customRow = (record: ShopDealerApply) => {
|
||||||
return {
|
return {
|
||||||
// 行点击事件
|
// 行点击事件
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
@@ -340,7 +426,7 @@ query();
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export default {
|
export default {
|
||||||
name: 'ShopDealerUser'
|
name: 'ShopDealerApply'
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -384,6 +470,22 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ele-text-success {
|
||||||
|
color: #52c41a;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #73d13d;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ele-text-warning {
|
||||||
|
color: #faad14;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ffc53d;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.ele-text-danger {
|
.ele-text-danger {
|
||||||
color: #ff4d4f;
|
color: #ff4d4f;
|
||||||
|
|
||||||
|
|||||||
83
src/views/shop/shopDealerWithdraw/components/Import.vue
Normal file
83
src/views/shop/shopDealerWithdraw/components/Import.vue
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
<!-- 经销商订单导入弹窗 -->
|
||||||
|
<template>
|
||||||
|
<ele-modal
|
||||||
|
:width="520"
|
||||||
|
:footer="null"
|
||||||
|
title="导入分销订单"
|
||||||
|
:visible="visible"
|
||||||
|
@update:visible="updateVisible"
|
||||||
|
>
|
||||||
|
<a-spin :spinning="loading">
|
||||||
|
<a-upload-dragger
|
||||||
|
accept=".xls,.xlsx"
|
||||||
|
:show-upload-list="false"
|
||||||
|
:customRequest="doUpload"
|
||||||
|
style="padding: 24px 0; margin-bottom: 16px"
|
||||||
|
>
|
||||||
|
<p class="ant-upload-drag-icon">
|
||||||
|
<cloud-upload-outlined/>
|
||||||
|
</p>
|
||||||
|
<p class="ant-upload-hint">将文件拖到此处,或点击上传</p>
|
||||||
|
</a-upload-dragger>
|
||||||
|
<div class="ant-upload-text text-gray-400">
|
||||||
|
<div>1、必须按<a href="https://oss.wsdns.cn/20251018/408b805ec3cd4084a4dc686e130af578.xlsx" target="_blank">导入模版</a>的格式上传</div>
|
||||||
|
<div>2、导入成功确认结算完成佣金的发放</div>
|
||||||
|
</div>
|
||||||
|
</a-spin>
|
||||||
|
</ele-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {ref} from 'vue';
|
||||||
|
import {message} from 'ant-design-vue/es';
|
||||||
|
import {CloudUploadOutlined} from '@ant-design/icons-vue';
|
||||||
|
import {importSdyDealerOrder} from "@/api/sdy/sdyDealerOrder";
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'done'): void;
|
||||||
|
(e: 'update:visible', visible: boolean): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
// 是否打开弹窗
|
||||||
|
visible: boolean;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 导入请求状态
|
||||||
|
const loading = ref(false);
|
||||||
|
|
||||||
|
/* 上传 */
|
||||||
|
const doUpload = ({file}) => {
|
||||||
|
if (
|
||||||
|
![
|
||||||
|
'application/vnd.ms-excel',
|
||||||
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
||||||
|
].includes(file.type)
|
||||||
|
) {
|
||||||
|
message.error('只能选择 excel 文件');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (file.size / 1024 / 1024 > 10) {
|
||||||
|
message.error('大小不能超过 10MB');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
loading.value = true;
|
||||||
|
importSdyDealerOrder(file)
|
||||||
|
.then((msg) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.success(msg);
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
loading.value = false;
|
||||||
|
message.error(e.message);
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 更新 visible */
|
||||||
|
const updateVisible = (value: boolean) => {
|
||||||
|
emit('update:visible', value);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
@@ -1,42 +1,106 @@
|
|||||||
<!-- 搜索表单 -->
|
|
||||||
<template>
|
<template>
|
||||||
<a-space :size="10" style="flex-wrap: wrap">
|
<div class="flex items-center gap-20">
|
||||||
<a-button type="primary" class="ele-btn-icon" @click="add">
|
<!-- 搜索表单 -->
|
||||||
|
<a-form
|
||||||
|
:model="where"
|
||||||
|
layout="inline"
|
||||||
|
class="search-form"
|
||||||
|
@finish="handleSearch"
|
||||||
|
>
|
||||||
|
<a-form-item>
|
||||||
|
<a-space>
|
||||||
|
<a-button
|
||||||
|
danger
|
||||||
|
class="ele-btn-icon"
|
||||||
|
v-if="selection.length > 0"
|
||||||
|
:disabled="selection?.length === 0"
|
||||||
|
@click="removeBatch"
|
||||||
|
>
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<PlusOutlined />
|
<DeleteOutlined/>
|
||||||
</template>
|
</template>
|
||||||
<span>添加</span>
|
<span>批量删除</span>
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-space>
|
</a-space>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item>
|
||||||
|
<a-space>
|
||||||
|
<a-input-search
|
||||||
|
allow-clear
|
||||||
|
placeholder="请输入用户ID"
|
||||||
|
style="width: 240px"
|
||||||
|
v-model:value="where.keywords"
|
||||||
|
@search="handleSearch"
|
||||||
|
/>
|
||||||
|
<a-button @click="resetSearch">
|
||||||
|
重置
|
||||||
|
</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 导入弹窗 -->
|
||||||
|
<Import v-model:visible="showImport" @done="emit('importDone')"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { PlusOutlined } from '@ant-design/icons-vue';
|
import {ref} from 'vue';
|
||||||
import type { GradeParam } from '@/api/user/grade/model';
|
import {
|
||||||
import { watch } from 'vue';
|
DeleteOutlined
|
||||||
|
} from '@ant-design/icons-vue';
|
||||||
|
import Import from './Import.vue';
|
||||||
|
import useSearch from "@/utils/use-search";
|
||||||
|
import {ShopDealerWithdrawParam} from "@/api/shop/shopDealerWithdraw/model";
|
||||||
|
|
||||||
const props = withDefaults(
|
withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
// 选中的角色
|
// 选中的数据
|
||||||
selection?: [];
|
selection?: any[];
|
||||||
}>(),
|
}>(),
|
||||||
{}
|
{
|
||||||
|
selection: () => []
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: 'search', where?: GradeParam): void;
|
(e: 'search', where?: ShopDealerWithdrawParam): void;
|
||||||
(e: 'add'): void;
|
(e: 'batchSettle'): void;
|
||||||
|
(e: 'export'): void;
|
||||||
|
(e: 'importDone'): void;
|
||||||
(e: 'remove'): void;
|
(e: 'remove'): void;
|
||||||
(e: 'batchMove'): void;
|
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
// 新增
|
// 是否显示导入弹窗
|
||||||
const add = () => {
|
const showImport = ref(false);
|
||||||
emit('add');
|
|
||||||
|
// 搜索表单
|
||||||
|
const {where, resetFields} = useSearch<ShopDealerWithdrawParam>({
|
||||||
|
keywords: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
// 搜索
|
||||||
|
const handleSearch = () => {
|
||||||
|
const searchParams = {...where};
|
||||||
|
// 清除空值
|
||||||
|
Object.keys(searchParams).forEach(key => {
|
||||||
|
if (searchParams[key] === '' || searchParams[key] === undefined) {
|
||||||
|
delete searchParams[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
emit('search', searchParams);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 重置搜索
|
||||||
|
const resetSearch = () => {
|
||||||
|
resetFields();
|
||||||
|
emit('search', {});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 批量删除
|
||||||
|
const removeBatch = () => {
|
||||||
|
emit('remove');
|
||||||
};
|
};
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.selection,
|
|
||||||
() => {}
|
|
||||||
);
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -21,77 +21,10 @@
|
|||||||
<a-divider orientation="left">
|
<a-divider orientation="left">
|
||||||
<span style="color: #1890ff; font-weight: 600;">基本信息</span>
|
<span style="color: #1890ff; font-weight: 600;">基本信息</span>
|
||||||
</a-divider>
|
</a-divider>
|
||||||
|
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="分销商用户ID" name="userId">
|
<a-form-item label="备注" name="comments">
|
||||||
<a-input-number
|
<div class="text-red-500">{{ form.comments }}</div>
|
||||||
:min="1"
|
|
||||||
placeholder="请输入分销商用户ID"
|
|
||||||
v-model:value="form.userId"
|
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="提现金额" name="money">
|
|
||||||
<a-input-number
|
|
||||||
:min="0"
|
|
||||||
:precision="2"
|
|
||||||
placeholder="请输入提现金额"
|
|
||||||
v-model:value="form.money"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<template #addonAfter>元</template>
|
|
||||||
</a-input-number>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
|
|
||||||
<a-row :gutter="16">
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="来源平台" name="platform">
|
|
||||||
<a-select v-model:value="form.platform" placeholder="请选择来源平台">
|
|
||||||
<a-select-option value="APP">
|
|
||||||
<div class="platform-option">
|
|
||||||
<a-tag color="blue">APP</a-tag>
|
|
||||||
<span>移动应用</span>
|
|
||||||
</div>
|
|
||||||
</a-select-option>
|
|
||||||
<a-select-option value="H5">
|
|
||||||
<div class="platform-option">
|
|
||||||
<a-tag color="green">H5</a-tag>
|
|
||||||
<span>手机网页</span>
|
|
||||||
</div>
|
|
||||||
</a-select-option>
|
|
||||||
<a-select-option value="小程序">
|
|
||||||
<div class="platform-option">
|
|
||||||
<a-tag color="orange">小程序</a-tag>
|
|
||||||
<span>微信小程序</span>
|
|
||||||
</div>
|
|
||||||
</a-select-option>
|
|
||||||
<a-select-option value="PC">
|
|
||||||
<div class="platform-option">
|
|
||||||
<a-tag color="purple">PC</a-tag>
|
|
||||||
<span>电脑网页</span>
|
|
||||||
</div>
|
|
||||||
</a-select-option>
|
|
||||||
</a-select>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="打款方式" name="payType">
|
|
||||||
<a-radio-group v-model:value="form.payType" @change="onPayTypeChange">
|
|
||||||
<a-radio :value="10">
|
|
||||||
<a-tag color="success">微信</a-tag>
|
|
||||||
</a-radio>
|
|
||||||
<a-radio :value="20">
|
|
||||||
<a-tag color="processing">支付宝</a-tag>
|
|
||||||
</a-radio>
|
|
||||||
<a-radio :value="30">
|
|
||||||
<a-tag color="warning">银行卡</a-tag>
|
|
||||||
</a-radio>
|
|
||||||
</a-radio-group>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -138,6 +71,7 @@
|
|||||||
<a-form-item label="支付宝姓名" name="alipayName">
|
<a-form-item label="支付宝姓名" name="alipayName">
|
||||||
<a-input
|
<a-input
|
||||||
placeholder="请输入支付宝实名姓名"
|
placeholder="请输入支付宝实名姓名"
|
||||||
|
disabled
|
||||||
v-model:value="form.alipayName"
|
v-model:value="form.alipayName"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
@@ -146,6 +80,7 @@
|
|||||||
<a-form-item label="支付宝账号" name="alipayAccount">
|
<a-form-item label="支付宝账号" name="alipayAccount">
|
||||||
<a-input
|
<a-input
|
||||||
placeholder="请输入支付宝账号"
|
placeholder="请输入支付宝账号"
|
||||||
|
disabled
|
||||||
v-model:value="form.alipayAccount"
|
v-model:value="form.alipayAccount"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
@@ -165,28 +100,16 @@
|
|||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="开户行名称" name="bankName">
|
<a-form-item label="开户行名称" name="bankName">
|
||||||
<a-input
|
{{ form.bankName }}
|
||||||
placeholder="请输入开户行名称"
|
|
||||||
v-model:value="form.bankName"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="银行开户名" name="bankAccount">
|
<a-form-item label="银行开户名" name="bankAccount">
|
||||||
<a-input
|
{{ form.bankAccount }}
|
||||||
placeholder="请输入银行开户名"
|
</a-form-item>
|
||||||
v-model:value="form.bankAccount"
|
<a-form-item label="银行卡号" name="bankCard">
|
||||||
/>
|
{{ form.bankCard }}
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
<a-form-item label="银行卡号" name="bankCard">
|
|
||||||
<a-input
|
|
||||||
placeholder="请输入银行卡号"
|
|
||||||
v-model:value="form.bankCard"
|
|
||||||
style="width: 400px"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 审核信息 -->
|
<!-- 审核信息 -->
|
||||||
@@ -197,10 +120,11 @@
|
|||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="申请状态" name="applyStatus">
|
<a-form-item label="申请状态" name="applyStatus">
|
||||||
<a-select v-model:value="form.applyStatus" placeholder="请选择申请状态">
|
<a-select v-model:value="form.applyStatus" :disabled="form.applyStatus == 40 || form.applyStatus == 30"
|
||||||
|
placeholder="请选择申请状态">
|
||||||
<a-select-option :value="10">
|
<a-select-option :value="10">
|
||||||
<div class="status-option">
|
<div class="status-option">
|
||||||
<a-tag color="processing">待审核</a-tag>
|
<a-tag color="orange">待审核</a-tag>
|
||||||
<span>等待审核</span>
|
<span>等待审核</span>
|
||||||
</div>
|
</div>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
@@ -218,25 +142,16 @@
|
|||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :value="40">
|
<a-select-option :value="40">
|
||||||
<div class="status-option">
|
<div class="status-option">
|
||||||
<a-tag color="cyan">已打款</a-tag>
|
<a-tag>已打款</a-tag>
|
||||||
<span>已完成打款</span>
|
<span>已完成打款</span>
|
||||||
</div>
|
</div>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item label="审核时间" name="auditTime" v-if="form.applyStatus && form.applyStatus !== 10">
|
|
||||||
<a-date-picker
|
|
||||||
v-model:value="form.auditTime"
|
|
||||||
show-time
|
|
||||||
placeholder="请选择审核时间"
|
|
||||||
style="width: 100%"
|
|
||||||
/>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
</a-row>
|
||||||
|
<a-row :gutter="16">
|
||||||
|
<a-col :span="12">
|
||||||
<a-form-item label="驳回原因" name="rejectReason" v-if="form.applyStatus === 30">
|
<a-form-item label="驳回原因" name="rejectReason" v-if="form.applyStatus === 30">
|
||||||
<a-textarea
|
<a-textarea
|
||||||
v-model:value="form.rejectReason"
|
v-model:value="form.rejectReason"
|
||||||
@@ -246,6 +161,17 @@
|
|||||||
show-count
|
show-count
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
<a-form-item label="上传支付凭证" name="image" v-if="form.applyStatus === 40">
|
||||||
|
<SelectFile
|
||||||
|
:placeholder="`请选择图片`"
|
||||||
|
:limit="2"
|
||||||
|
:data="files"
|
||||||
|
@done="chooseFile"
|
||||||
|
@del="onDeleteFile"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
|
||||||
<!-- 提现预览 -->
|
<!-- 提现预览 -->
|
||||||
<div class="withdraw-preview" v-if="form.money && form.payType">
|
<div class="withdraw-preview" v-if="form.money && form.payType">
|
||||||
@@ -263,11 +189,13 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import {ref, reactive, watch} from 'vue';
|
import {ref, reactive, watch} from 'vue';
|
||||||
import {Form, message} from 'ant-design-vue';
|
import {Form, message} from 'ant-design-vue';
|
||||||
import { assignObject } from 'ele-admin-pro';
|
import {assignObject, uuid} from 'ele-admin-pro';
|
||||||
import {addShopDealerWithdraw, updateShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw';
|
import {addShopDealerWithdraw, updateShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw';
|
||||||
import {ShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw/model';
|
import {ShopDealerWithdraw} from '@/api/shop/shopDealerWithdraw/model';
|
||||||
import {FormInstance} from 'ant-design-vue/es/form';
|
import {FormInstance} from 'ant-design-vue/es/form';
|
||||||
|
import {ItemType} from 'ele-admin-pro/es/ele-image-upload/types';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
|
import {FileRecord} from "@/api/system/file/model";
|
||||||
|
|
||||||
// 是否是修改
|
// 是否是修改
|
||||||
const isUpdate = ref(false);
|
const isUpdate = ref(false);
|
||||||
@@ -286,9 +214,11 @@
|
|||||||
}>();
|
}>();
|
||||||
|
|
||||||
// 提交状态
|
// 提交状态
|
||||||
const loading = ref(false);
|
const loading = ref<boolean>(false);
|
||||||
|
const isSuccess = ref<boolean>(false);
|
||||||
// 是否显示最大化切换按钮
|
// 是否显示最大化切换按钮
|
||||||
const maxable = ref(true);
|
const maxable = ref(true);
|
||||||
|
const files = ref<ItemType[]>([]);
|
||||||
// 表格选中数据
|
// 表格选中数据
|
||||||
const formRef = ref<FormInstance | null>(null);
|
const formRef = ref<FormInstance | null>(null);
|
||||||
|
|
||||||
@@ -296,6 +226,10 @@
|
|||||||
const form = reactive<ShopDealerWithdraw>({
|
const form = reactive<ShopDealerWithdraw>({
|
||||||
id: undefined,
|
id: undefined,
|
||||||
userId: undefined,
|
userId: undefined,
|
||||||
|
realName: undefined,
|
||||||
|
nickname: undefined,
|
||||||
|
phone: undefined,
|
||||||
|
avatar: undefined,
|
||||||
money: undefined,
|
money: undefined,
|
||||||
payType: undefined,
|
payType: undefined,
|
||||||
// 微信相关
|
// 微信相关
|
||||||
@@ -313,6 +247,7 @@
|
|||||||
auditTime: undefined,
|
auditTime: undefined,
|
||||||
rejectReason: '',
|
rejectReason: '',
|
||||||
platform: '',
|
platform: '',
|
||||||
|
comments: '',
|
||||||
tenantId: undefined,
|
tenantId: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
updateTime: undefined
|
updateTime: undefined
|
||||||
@@ -462,6 +397,13 @@
|
|||||||
},
|
},
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
image: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请上传打款凭证',
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -471,8 +413,8 @@
|
|||||||
|
|
||||||
// 清空其他支付方式的信息
|
// 清空其他支付方式的信息
|
||||||
if (payType !== 10) {
|
if (payType !== 10) {
|
||||||
form.wechatAccount = '';
|
form.alipayAccount = '';
|
||||||
form.wechatName = '';
|
form.alipayName = '';
|
||||||
}
|
}
|
||||||
if (payType !== 20) {
|
if (payType !== 20) {
|
||||||
form.alipayName = '';
|
form.alipayName = '';
|
||||||
@@ -485,16 +427,34 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const chooseFile = (data: FileRecord) => {
|
||||||
|
files.value.push({
|
||||||
|
uid: data.id,
|
||||||
|
url: data.url,
|
||||||
|
status: 'done'
|
||||||
|
});
|
||||||
|
form.image = JSON.stringify(files.value.map((d) => d.url));
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDeleteFile = (index: number) => {
|
||||||
|
files.value.splice(index, 1);
|
||||||
|
};
|
||||||
|
|
||||||
/* 获取预览提示类型 */
|
/* 获取预览提示类型 */
|
||||||
const getPreviewAlertType = () => {
|
const getPreviewAlertType = () => {
|
||||||
if (!form.applyStatus) return 'info';
|
if (!form.applyStatus) return 'info';
|
||||||
|
|
||||||
switch (form.applyStatus) {
|
switch (form.applyStatus) {
|
||||||
case 10: return 'processing';
|
case 10:
|
||||||
case 20: return 'success';
|
return 'processing';
|
||||||
case 30: return 'error';
|
case 20:
|
||||||
case 40: return 'success';
|
return 'success';
|
||||||
default: return 'info';
|
case 30:
|
||||||
|
return 'error';
|
||||||
|
case 40:
|
||||||
|
return 'success';
|
||||||
|
default:
|
||||||
|
return 'info';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -528,6 +488,16 @@
|
|||||||
if (!formRef.value) {
|
if (!formRef.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (isSuccess.value) {
|
||||||
|
console.log('isSuccess')
|
||||||
|
updateVisible(false);
|
||||||
|
emit('done');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (form.realName == '' || form.realName == null) {
|
||||||
|
message.error('该用户未完成实名认证!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
formRef.value
|
formRef.value
|
||||||
.validate()
|
.validate()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
@@ -569,19 +539,32 @@
|
|||||||
message.error(e.message);
|
message.error(e.message);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.visible,
|
() => props.visible,
|
||||||
(visible) => {
|
(visible) => {
|
||||||
if (visible) {
|
if (visible) {
|
||||||
|
files.value = [];
|
||||||
if (props.data) {
|
if (props.data) {
|
||||||
assignObject(form, props.data);
|
assignObject(form, props.data);
|
||||||
// 处理时间字段
|
// 处理时间字段
|
||||||
if (props.data.auditTime) {
|
if (props.data.auditTime) {
|
||||||
form.auditTime = dayjs(props.data.auditTime);
|
form.auditTime = dayjs(props.data.auditTime);
|
||||||
}
|
}
|
||||||
|
if (props.data.image) {
|
||||||
|
const arr = JSON.parse(props.data.image);
|
||||||
|
arr.map((url: string) => {
|
||||||
|
files.value.push({
|
||||||
|
uid: uuid(),
|
||||||
|
url: url,
|
||||||
|
status: 'done'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
isSuccess.value = true;
|
||||||
|
}
|
||||||
isUpdate.value = true;
|
isUpdate.value = true;
|
||||||
} else {
|
} else {
|
||||||
// 重置为默认值
|
// 重置为默认值
|
||||||
@@ -601,6 +584,7 @@
|
|||||||
auditTime: undefined,
|
auditTime: undefined,
|
||||||
rejectReason: '',
|
rejectReason: '',
|
||||||
platform: '',
|
platform: '',
|
||||||
|
image: '',
|
||||||
tenantId: undefined,
|
tenantId: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
updateTime: undefined
|
updateTime: undefined
|
||||||
|
|||||||
@@ -21,35 +21,64 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'applyStatus'">
|
<template v-if="column.key === 'applyStatus'">
|
||||||
<a-tag v-if="record.applyStatus === 10" color="processing">待审核</a-tag>
|
<a-tag v-if="record.applyStatus === 10" color="orange">待审核</a-tag>
|
||||||
<a-tag v-if="record.applyStatus === 20" color="success">审核通过</a-tag>
|
<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" color="green">已打款</a-tag>
|
<a-tag v-if="record.applyStatus === 40">已打款</a-tag>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'userInfo'">
|
||||||
|
<a-space>
|
||||||
|
<a-avatar :src="record.avatar" />
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span>{{ record.realName || '未实名认证' }}</span>
|
||||||
|
<span class="text-gray-400">{{ record.phone }}</span>
|
||||||
|
</div>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'paymentInfo'">
|
||||||
|
<template v-if="record.payType === 10">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">微信</a-tag>
|
||||||
|
<span>{{ record.wechatName }}</span>
|
||||||
|
<span>{{ record.wechatName }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.payType === 20">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">支付宝</a-tag>
|
||||||
|
<span>{{ record.alipayName }}</span>
|
||||||
|
<span>{{ record.alipayAccount }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.payType === 30">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tag color="blue">银行卡</a-tag>
|
||||||
|
<span>{{ record.bankName }}</span>
|
||||||
|
<span>{{ record.bankAccount }}</span>
|
||||||
|
<span>{{ record.bankCard }}</span>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'comments'">
|
||||||
|
<template v-if="record.applyStatus === 30">
|
||||||
|
<div class="text-red-500">驳回原因:{{ record.rejectReason }}</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="record.applyStatus === 40 && record.image">
|
||||||
|
<a-image v-for="(item,index) in JSON.parse(record.image)" :key="index" :src="item" :width="50"
|
||||||
|
:height="50"/>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.key === 'createTime'">
|
||||||
|
<a-space direction="vertical">
|
||||||
|
<a-tooltip title="创建时间">{{ record.createTime }}</a-tooltip>
|
||||||
|
<a-tooltip title="审核/打款时间" class="text-green-500">{{ record.auditTime }}</a-tooltip>
|
||||||
|
</a-space>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a-space>
|
<template v-if="record.applyStatus !== 40">
|
||||||
<a @click="viewDetail(record)" class="ele-text-info">
|
|
||||||
<EyeOutlined /> 详情
|
|
||||||
</a>
|
|
||||||
<template v-if="record.applyStatus === 10">
|
|
||||||
<a-divider type="vertical" />
|
|
||||||
<a @click="approveWithdraw(record)" class="ele-text-success">
|
|
||||||
<CheckOutlined /> 通过
|
|
||||||
</a>
|
|
||||||
<a-divider type="vertical" />
|
|
||||||
<a @click="rejectWithdraw(record)" class="ele-text-warning">
|
|
||||||
<CloseOutlined /> 驳回
|
|
||||||
</a>
|
|
||||||
</template>
|
|
||||||
<template v-if="record.applyStatus === 20">
|
|
||||||
<a-divider type="vertical" />
|
|
||||||
<a @click="confirmPayment(record)" class="ele-text-success">
|
|
||||||
<DollarOutlined /> 确认打款
|
|
||||||
</a>
|
|
||||||
</template>
|
|
||||||
<a-divider type="vertical" />
|
|
||||||
<a @click="openEdit(record)" class="ele-text-primary">
|
<a @click="openEdit(record)" class="ele-text-primary">
|
||||||
<EditOutlined /> 编辑
|
<EditOutlined/>
|
||||||
|
编辑
|
||||||
</a>
|
</a>
|
||||||
<a-divider type="vertical"/>
|
<a-divider type="vertical"/>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
@@ -58,10 +87,11 @@
|
|||||||
placement="topRight"
|
placement="topRight"
|
||||||
>
|
>
|
||||||
<a class="ele-text-danger">
|
<a class="ele-text-danger">
|
||||||
<DeleteOutlined /> 删除
|
<DeleteOutlined/>
|
||||||
|
删除
|
||||||
</a>
|
</a>
|
||||||
</a-popconfirm>
|
</a-popconfirm>
|
||||||
</a-space>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</ele-pro-table>
|
</ele-pro-table>
|
||||||
@@ -77,7 +107,6 @@
|
|||||||
import {message, Modal} from 'ant-design-vue';
|
import {message, Modal} from 'ant-design-vue';
|
||||||
import {
|
import {
|
||||||
ExclamationCircleOutlined,
|
ExclamationCircleOutlined,
|
||||||
EyeOutlined,
|
|
||||||
CheckOutlined,
|
CheckOutlined,
|
||||||
CloseOutlined,
|
CloseOutlined,
|
||||||
DollarOutlined,
|
DollarOutlined,
|
||||||
@@ -93,7 +122,12 @@
|
|||||||
import Search from './components/search.vue';
|
import Search from './components/search.vue';
|
||||||
import {getPageTitle} from '@/utils/common';
|
import {getPageTitle} from '@/utils/common';
|
||||||
import ShopDealerWithdrawEdit from './components/shopDealerWithdrawEdit.vue';
|
import ShopDealerWithdrawEdit from './components/shopDealerWithdrawEdit.vue';
|
||||||
import { pageShopDealerWithdraw, removeShopDealerWithdraw, removeBatchShopDealerWithdraw } from '@/api/shop/shopDealerWithdraw';
|
import {
|
||||||
|
pageShopDealerWithdraw,
|
||||||
|
removeShopDealerWithdraw,
|
||||||
|
removeBatchShopDealerWithdraw,
|
||||||
|
updateShopDealerWithdraw
|
||||||
|
} from '@/api/shop/shopDealerWithdraw';
|
||||||
import type {ShopDealerWithdraw, ShopDealerWithdrawParam} from '@/api/shop/shopDealerWithdraw/model';
|
import type {ShopDealerWithdraw, ShopDealerWithdrawParam} from '@/api/shop/shopDealerWithdraw/model';
|
||||||
|
|
||||||
// 表格实例
|
// 表格实例
|
||||||
@@ -136,7 +170,7 @@
|
|||||||
dataIndex: 'userId',
|
dataIndex: 'userId',
|
||||||
key: 'userId',
|
key: 'userId',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 100,
|
width: 90,
|
||||||
fixed: 'left'
|
fixed: 'left'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -144,65 +178,24 @@
|
|||||||
dataIndex: 'money',
|
dataIndex: 'money',
|
||||||
key: 'money',
|
key: 'money',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 120,
|
width: 150,
|
||||||
customRender: ({text}) => {
|
customRender: ({text}) => {
|
||||||
const amount = parseFloat(text || '0').toFixed(2);
|
const amount = parseFloat(text || '0').toFixed(2);
|
||||||
return {
|
return {
|
||||||
type: 'span',
|
type: 'span',
|
||||||
props: {
|
|
||||||
style: {
|
|
||||||
color: '#ff4d4f',
|
|
||||||
fontWeight: 'bold'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
children: `¥${amount}`
|
children: `¥${amount}`
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '打款方式',
|
title: '用户信息',
|
||||||
dataIndex: 'payType',
|
dataIndex: 'userInfo',
|
||||||
key: 'payType',
|
key: 'userInfo'
|
||||||
align: 'center',
|
|
||||||
width: 120,
|
|
||||||
customRender: ({ text }) => {
|
|
||||||
const typeMap = {
|
|
||||||
10: { text: '微信', color: 'success' },
|
|
||||||
20: { text: '支付宝', color: 'processing' },
|
|
||||||
30: { text: '银行卡', color: 'warning' }
|
|
||||||
};
|
|
||||||
const type = typeMap[text] || { text: '未知', color: 'default' };
|
|
||||||
return { type: 'tag', props: { color: type.color }, children: type.text };
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '收款信息',
|
title: '收款信息',
|
||||||
key: 'paymentInfo',
|
dataIndex: 'paymentInfo',
|
||||||
align: 'left',
|
key: 'paymentInfo'
|
||||||
width: 200,
|
|
||||||
customRender: ({ record }) => {
|
|
||||||
if (record.payType === 20) {
|
|
||||||
return `支付宝: ${record.alipayName || '-'} (${record.alipayAccount || '-'})`;
|
|
||||||
} else if (record.payType === 30) {
|
|
||||||
return `银行卡: ${record.bankAccount || '-'} (${record.bankName || '-'})`;
|
|
||||||
} else if (record.payType === 10) {
|
|
||||||
return '微信提现';
|
|
||||||
}
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '申请状态',
|
|
||||||
dataIndex: 'applyStatus',
|
|
||||||
key: 'applyStatus',
|
|
||||||
align: 'center',
|
|
||||||
width: 120,
|
|
||||||
filters: [
|
|
||||||
{ text: '待审核', value: 10 },
|
|
||||||
{ text: '审核通过', value: 20 },
|
|
||||||
{ text: '已驳回', value: 30 },
|
|
||||||
{ text: '已打款', value: 40 }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// title: '审核时间',
|
// title: '审核时间',
|
||||||
@@ -229,17 +222,29 @@
|
|||||||
// customRender: ({ text }) => text || '-'
|
// customRender: ({ text }) => text || '-'
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
title: '驳回原因',
|
title: '备注',
|
||||||
dataIndex: 'rejectReason',
|
dataIndex: 'comments',
|
||||||
key: 'rejectReason',
|
key: 'comments',
|
||||||
align: 'center',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '来源客户端',
|
title: '申请状态',
|
||||||
dataIndex: 'platform',
|
dataIndex: 'applyStatus',
|
||||||
key: 'platform',
|
key: 'applyStatus',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '驳回原因',
|
||||||
|
// dataIndex: 'rejectReason',
|
||||||
|
// key: 'rejectReason',
|
||||||
|
// align: 'center',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '来源客户端',
|
||||||
|
// dataIndex: 'platform',
|
||||||
|
// key: 'platform',
|
||||||
|
// align: 'center',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '创建时间',
|
title: '创建时间',
|
||||||
dataIndex: 'createTime',
|
dataIndex: 'createTime',
|
||||||
@@ -250,14 +255,14 @@
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
title: '操作',
|
// title: '操作',
|
||||||
key: 'action',
|
// key: 'action',
|
||||||
width: 420,
|
// width: 180,
|
||||||
fixed: 'right',
|
// fixed: 'right',
|
||||||
align: 'center',
|
// align: 'center',
|
||||||
hideInSetting: true
|
// hideInSetting: true
|
||||||
}
|
// }
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/* 搜索 */
|
/* 搜索 */
|
||||||
@@ -266,53 +271,11 @@
|
|||||||
tableRef?.value?.reload({where: where});
|
tableRef?.value?.reload({where: where});
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 查看详情 */
|
|
||||||
const viewDetail = (row: ShopDealerWithdraw) => {
|
|
||||||
Modal.info({
|
|
||||||
title: '提现申请详情',
|
|
||||||
width: 600,
|
|
||||||
content: createVNode('div', { style: 'max-height: 400px; overflow-y: auto;' }, [
|
|
||||||
createVNode('div', { class: 'detail-item' }, [
|
|
||||||
createVNode('strong', null, '申请信息'),
|
|
||||||
createVNode('p', null, `申请ID: ${row.id || '-'}`),
|
|
||||||
createVNode('p', null, `用户ID: ${row.userId || '-'}`),
|
|
||||||
createVNode('p', null, `提现金额: ¥${parseFloat(row.money || '0').toFixed(2)}`),
|
|
||||||
createVNode('p', null, `来源平台: ${row.platform || '-'}`),
|
|
||||||
]),
|
|
||||||
createVNode('div', { class: 'detail-item', style: 'margin-top: 16px;' }, [
|
|
||||||
createVNode('strong', null, '收款信息'),
|
|
||||||
createVNode('p', null, `打款方式: ${row.payType === 10 ? '微信' : row.payType === 20 ? '支付宝' : row.payType === 30 ? '银行卡' : '未知'}`),
|
|
||||||
...(row.payType === 20 ? [
|
|
||||||
createVNode('p', null, `支付宝姓名: ${row.alipayName || '-'}`),
|
|
||||||
createVNode('p', null, `支付宝账号: ${row.alipayAccount || '-'}`)
|
|
||||||
] : []),
|
|
||||||
...(row.payType === 30 ? [
|
|
||||||
createVNode('p', null, `开户行: ${row.bankName || '-'}`),
|
|
||||||
createVNode('p', null, `开户名: ${row.bankAccount || '-'}`),
|
|
||||||
createVNode('p', null, `银行卡号: ${row.bankCard || '-'}`)
|
|
||||||
] : [])
|
|
||||||
]),
|
|
||||||
createVNode('div', { class: 'detail-item', style: 'margin-top: 16px;' }, [
|
|
||||||
createVNode('strong', null, '审核信息'),
|
|
||||||
createVNode('p', null, `申请状态: ${row.applyStatus === 10 ? '待审核' : row.applyStatus === 20 ? '审核通过' : row.applyStatus === 30 ? '已驳回' : row.applyStatus === 40 ? '已打款' : '未知'}`),
|
|
||||||
createVNode('p', null, `审核时间: ${row.auditTime ? toDateString(new Date(row.auditTime), 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
createVNode('p', null, `驳回原因: ${row.rejectReason || '-'}`),
|
|
||||||
]),
|
|
||||||
createVNode('div', { class: 'detail-item', style: 'margin-top: 16px;' }, [
|
|
||||||
createVNode('strong', null, '其他信息'),
|
|
||||||
createVNode('p', null, `创建时间: ${row.createTime ? toDateString(row.createTime, 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
createVNode('p', null, `更新时间: ${row.updateTime ? toDateString(row.updateTime, 'yyyy-MM-dd HH:mm:ss') : '-'}`),
|
|
||||||
])
|
|
||||||
]),
|
|
||||||
okText: '关闭'
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 审核通过 */
|
/* 审核通过 */
|
||||||
const approveWithdraw = (row: ShopDealerWithdraw) => {
|
const approveWithdraw = (row: ShopDealerWithdraw) => {
|
||||||
Modal.confirm({
|
Modal.confirm({
|
||||||
title: '审核通过确认',
|
title: '审核通过确认',
|
||||||
content: `确定要通过用户 ${row.userId} 的提现申请吗?提现金额:¥${parseFloat(row.money || '0').toFixed(2)}`,
|
content: `已核对信息进行核对,正确无误!`,
|
||||||
icon: createVNode(CheckOutlined),
|
icon: createVNode(CheckOutlined),
|
||||||
okText: '确认通过',
|
okText: '确认通过',
|
||||||
okType: 'primary',
|
okType: 'primary',
|
||||||
@@ -322,6 +285,10 @@
|
|||||||
// 这里需要调用审核通过的API
|
// 这里需要调用审核通过的API
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
hide();
|
hide();
|
||||||
|
updateShopDealerWithdraw({
|
||||||
|
id: row.id,
|
||||||
|
applyStatus: 20
|
||||||
|
});
|
||||||
message.success('审核通过成功');
|
message.success('审核通过成功');
|
||||||
reload();
|
reload();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
@@ -369,7 +336,7 @@
|
|||||||
const confirmPayment = (row: ShopDealerWithdraw) => {
|
const confirmPayment = (row: ShopDealerWithdraw) => {
|
||||||
Modal.confirm({
|
Modal.confirm({
|
||||||
title: '确认打款',
|
title: '确认打款',
|
||||||
content: `确定已向用户 ${row.userId} 打款 ¥${parseFloat(row.money || '0').toFixed(2)} 吗?此操作不可撤销。`,
|
content: `确定已向用户${row.bankAccount}完成打款?此操作不可撤销`,
|
||||||
icon: createVNode(DollarOutlined),
|
icon: createVNode(DollarOutlined),
|
||||||
okText: '确认打款',
|
okText: '确认打款',
|
||||||
okType: 'primary',
|
okType: 'primary',
|
||||||
@@ -377,6 +344,10 @@
|
|||||||
onOk: () => {
|
onOk: () => {
|
||||||
const hide = message.loading('正在确认打款...', 0);
|
const hide = message.loading('正在确认打款...', 0);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
updateShopDealerWithdraw({
|
||||||
|
id: row.id,
|
||||||
|
applyStatus: 40
|
||||||
|
})
|
||||||
hide();
|
hide();
|
||||||
message.success('打款确认成功');
|
message.success('打款确认成功');
|
||||||
reload();
|
reload();
|
||||||
@@ -399,7 +370,7 @@
|
|||||||
/* 删除单个 */
|
/* 删除单个 */
|
||||||
const remove = (row: ShopDealerWithdraw) => {
|
const remove = (row: ShopDealerWithdraw) => {
|
||||||
const hide = message.loading('请求中..', 0);
|
const hide = message.loading('请求中..', 0);
|
||||||
removeShopDealerWithdraw(row.shopDealerWithdrawId)
|
removeShopDealerWithdraw(row.id)
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
@@ -424,7 +395,7 @@
|
|||||||
maskClosable: true,
|
maskClosable: true,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
const hide = message.loading('请求中..', 0);
|
const hide = message.loading('请求中..', 0);
|
||||||
removeBatchShopDealerWithdraw(selection.value.map((d) => d.shopDealerWithdrawId))
|
removeBatchShopDealerWithdraw(selection.value.map((d) => d.id))
|
||||||
.then((msg) => {
|
.then((msg) => {
|
||||||
hide();
|
hide();
|
||||||
message.success(msg);
|
message.success(msg);
|
||||||
|
|||||||
@@ -7,10 +7,6 @@
|
|||||||
<!-- </template>-->
|
<!-- </template>-->
|
||||||
<!-- <span>添加</span>-->
|
<!-- <span>添加</span>-->
|
||||||
<!-- </a-button>-->
|
<!-- </a-button>-->
|
||||||
<a-radio-group v-model:value="where.type">
|
|
||||||
<a-radio-button :value="0" @click="push(`/user-verify`)">个人</a-radio-button>
|
|
||||||
<a-radio-button :value="1" @click="push(`/user-verify2`)">企业</a-radio-button>
|
|
||||||
</a-radio-group>
|
|
||||||
<a-input-search
|
<a-input-search
|
||||||
allow-clear
|
allow-clear
|
||||||
placeholder="请输入关键词"
|
placeholder="请输入关键词"
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
||||||
<template #extra>
|
|
||||||
<Extra/>
|
|
||||||
</template>
|
|
||||||
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
||||||
<ele-pro-table
|
<ele-pro-table
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
|
|||||||
Reference in New Issue
Block a user