style(sdy): 格式化代码以符合团队样式指南

- 标准化组件标签的闭合方式和缩进
- 统一导入语句的空格和换行格式
- 调整对象属性的换行和对齐方式
- 规范条件渲染表达式的格式
- 优化长逻辑行的换行和可读性
- 统一箭头函数和三元运算符的格式
This commit is contained in:
2026-01-13 16:55:38 +08:00
parent ea8c799b19
commit 7a37f66081
2 changed files with 426 additions and 390 deletions

View File

@@ -21,7 +21,9 @@
</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>
@@ -40,7 +42,9 @@
</template> </template>
<template v-if="column.key === 'comments'"> <template v-if="column.key === 'comments'">
<div class="text-gray-400">{{ record.comments }}</div> <div class="text-gray-400">{{ record.comments }}</div>
<div class="text-gray-400" v-if="record.comments">{{ record.updateTime }}</div> <div class="text-gray-400" v-if="record.comments">{{
record.updateTime
}}</div>
</template> </template>
<template v-if="column.key === 'createTime'"> <template v-if="column.key === 'createTime'">
<div class="flex flex-col"> <div class="flex flex-col">
@@ -50,21 +54,21 @@
</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"> <template v-if="record.applyStatus !== 20">
<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">
<CloseOutlined/> <CloseOutlined />
驳回 驳回
</a> </a>
<a-divider type="vertical"/> <a-divider type="vertical" />
<a-popconfirm <a-popconfirm
v-if="record.applyStatus != 20" v-if="record.applyStatus != 20"
title="确定要删除此申请记录吗?" title="确定要删除此申请记录吗?"
@@ -72,7 +76,7 @@
placement="topRight" placement="topRight"
> >
<a class="ele-text-danger"> <a class="ele-text-danger">
<DeleteOutlined/> <DeleteOutlined />
删除 删除
</a> </a>
</a-popconfirm> </a-popconfirm>
@@ -83,51 +87,58 @@
</a-card> </a-card>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<ShopDealerApplyEdit 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>
<script lang="ts" setup> <script lang="ts" setup>
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,
CheckOutlined, CheckOutlined,
CloseOutlined, CloseOutlined,
EditOutlined, EditOutlined,
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 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 ShopDealerApplyEdit from './components/shopDealerApplyEdit.vue'; import ShopDealerApplyEdit from './components/shopDealerApplyEdit.vue';
import { import {
pageShopDealerApply, pageShopDealerApply,
removeShopDealerApply, removeShopDealerApply,
removeBatchShopDealerApply, removeBatchShopDealerApply,
batchApproveShopDealerApply, batchApproveShopDealerApply,
updateShopDealerApply updateShopDealerApply
} from '@/api/shop/shopDealerApply'; } from '@/api/shop/shopDealerApply';
import type {ShopDealerApply, ShopDealerApplyParam} from '@/api/shop/shopDealerApply/model'; 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<ShopDealerApply[]>([]); const selection = ref<ShopDealerApply[]>([]);
// 当前编辑数据 // 当前编辑数据
const current = ref<ShopDealerApply | null>(null); const current = ref<ShopDealerApply | null>(null);
// 是否显示编辑弹窗 // 是否显示编辑弹窗
const showEdit = ref(false); const showEdit = ref(false);
// 加载状态 // 加载状态
const loading = ref(true); const loading = ref(true);
// 表格数据源 // 表格数据源
const datasource: DatasourceFunction = ({ const datasource: DatasourceFunction = ({
page, page,
limit, limit,
where, where,
@@ -144,10 +155,10 @@ const datasource: DatasourceFunction = ({
page, page,
limit limit
}); });
}; };
// 表格列配置 // 表格列配置
const columns = ref<ColumnItem[]>([ const columns = ref<ColumnItem[]>([
{ {
title: '用户ID', title: '用户ID',
dataIndex: 'userId', dataIndex: 'userId',
@@ -179,7 +190,7 @@ const columns = ref<ColumnItem[]>([
key: 'applicantInfo', key: 'applicantInfo',
align: 'left', align: 'left',
fixed: 'left', fixed: 'left',
customRender: ({record}) => { customRender: ({ record }) => {
return `${record.nickName || '-'} (${record.phone || '-'})`; return `${record.nickName || '-'} (${record.phone || '-'})`;
} }
}, },
@@ -221,16 +232,16 @@ const columns = ref<ColumnItem[]>([
// width: 380, // width: 380,
// hideInSetting: true // hideInSetting: true
// } // }
]); ]);
/* 搜索 */ /* 搜索 */
const reload = (where?: ShopDealerApplyParam) => { const reload = (where?: ShopDealerApplyParam) => {
selection.value = []; selection.value = [];
tableRef?.value?.reload({where: where}); tableRef?.value?.reload({ where: where });
}; };
/* 审核通过 */ /* 审核通过 */
const approveApply = (row: ShopDealerApply) => { const approveApply = (row: ShopDealerApply) => {
Modal.confirm({ Modal.confirm({
title: '审核通过确认', title: '审核通过确认',
content: `确定要通过 ${row.realName} 的经销商申请吗?`, content: `确定要通过 ${row.realName} 的经销商申请吗?`,
@@ -255,19 +266,20 @@ const approveApply = (row: ShopDealerApply) => {
} }
} }
}); });
}; };
/* 审核驳回 */ /* 审核驳回 */
const rejectApply = (row: ShopDealerApply) => { const rejectApply = (row: ShopDealerApply) => {
let rejectReason = ''; let rejectReason = '';
Modal.confirm({ Modal.confirm({
title: '审核驳回', title: '审核驳回',
content: createVNode('div', null, [ content: createVNode('div', null, [
createVNode('p', null, `申请人: ${row.realName} (${row.mobile})`), createVNode('p', null, `申请人: ${row.realName} (${row.mobile})`),
createVNode('p', {style: 'margin-top: 12px;'}, '请输入驳回原因:'), createVNode('p', { style: 'margin-top: 12px;' }, '请输入驳回原因:'),
createVNode('textarea', { createVNode('textarea', {
placeholder: '请输入驳回原因...', placeholder: '请输入驳回原因...',
style: 'width: 100%; height: 80px; margin-top: 8px; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px;', style:
'width: 100%; height: 80px; margin-top: 8px; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px;',
onInput: (e: any) => { onInput: (e: any) => {
rejectReason = e.target.value; rejectReason = e.target.value;
} }
@@ -298,16 +310,16 @@ const rejectApply = (row: ShopDealerApply) => {
} }
} }
}); });
}; };
/* 打开编辑弹窗 */ /* 打开编辑弹窗 */
const openEdit = (row?: ShopDealerApply) => { const openEdit = (row?: ShopDealerApply) => {
current.value = row ?? null; current.value = row ?? null;
showEdit.value = true; showEdit.value = true;
}; };
/* 删除单个 */ /* 删除单个 */
const remove = (row: ShopDealerApply) => { const remove = (row: ShopDealerApply) => {
if (!row.applyId) { if (!row.applyId) {
message.error('删除失败:缺少必要参数'); message.error('删除失败:缺少必要参数');
return; return;
@@ -324,16 +336,18 @@ const remove = (row: ShopDealerApply) => {
hide(); hide();
message.error(e.message || '删除失败'); message.error(e.message || '删除失败');
}); });
}; };
/* 批量删除 */ /* 批量删除 */
const removeBatch = () => { const removeBatch = () => {
if (!selection.value.length) { if (!selection.value.length) {
message.error('请至少选择一条数据'); message.error('请至少选择一条数据');
return; return;
} }
const validIds = selection.value.filter(d => d.applyId).map(d => d.applyId); 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;
@@ -348,7 +362,10 @@ const removeBatch = () => {
okType: 'danger', okType: 'danger',
cancelText: '取消', cancelText: '取消',
onOk: () => { onOk: () => {
const hide = message.loading(`正在删除 ${validIds.length} 条记录...`, 0); const hide = message.loading(
`正在删除 ${validIds.length} 条记录...`,
0
);
removeBatchShopDealerApply(validIds) removeBatchShopDealerApply(validIds)
.then((msg) => { .then((msg) => {
hide(); hide();
@@ -362,16 +379,18 @@ const removeBatch = () => {
}); });
} }
}); });
}; };
/* 批量通过 */ /* 批量通过 */
const batchApprove = () => { const batchApprove = () => {
if (!selection.value.length) { if (!selection.value.length) {
message.error('请至少选择一条数据'); message.error('请至少选择一条数据');
return; return;
} }
const pendingApplies = selection.value.filter(item => item.applyStatus === 10); const pendingApplies = selection.value.filter(
(item) => item.applyStatus === 10
);
if (!pendingApplies.length) { if (!pendingApplies.length) {
message.error('所选申请中没有待审核的记录'); message.error('所选申请中没有待审核的记录');
return; return;
@@ -387,7 +406,7 @@ const batchApprove = () => {
onOk: async () => { onOk: async () => {
const hide = message.loading('正在批量通过...', 0); const hide = message.loading('正在批量通过...', 0);
try { try {
const ids = pendingApplies.map(item => item.applyId); const ids = pendingApplies.map((item) => item.applyId);
await batchApproveShopDealerApply(ids); await batchApproveShopDealerApply(ids);
hide(); hide();
message.success(`成功通过 ${pendingApplies.length} 个申请`); message.success(`成功通过 ${pendingApplies.length} 个申请`);
@@ -399,25 +418,25 @@ const batchApprove = () => {
} }
} }
}); });
}; };
/* 导出数据 */ /* 导出数据 */
const exportData = () => { const exportData = () => {
const hide = message.loading('正在导出申请数据...', 0); const hide = message.loading('正在导出申请数据...', 0);
// 这里调用导出API // 这里调用导出API
setTimeout(() => { setTimeout(() => {
hide(); hide();
message.success('申请数据导出成功'); message.success('申请数据导出成功');
}, 2000); }, 2000);
}; };
/* 查询 */ /* 查询 */
const query = () => { const query = () => {
loading.value = true; loading.value = true;
}; };
/* 自定义行属性 */ /* 自定义行属性 */
const customRow = (record: ShopDealerApply) => { const customRow = (record: ShopDealerApply) => {
return { return {
// 行点击事件 // 行点击事件
onClick: () => { onClick: () => {
@@ -428,13 +447,12 @@ const customRow = (record: ShopDealerApply) => {
openEdit(record); openEdit(record);
} }
}; };
}; };
query(); query();
</script> </script>
<script lang="ts"> <script lang="ts">
export default { export default {
name: 'ShopDealerApply' name: 'ShopDealerApply'
}; };
</script> </script>

View File

@@ -44,7 +44,11 @@
</a-card> </a-card>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<ShopDealerCapitalEdit v-model:visible="showEdit" :data="current" @done="reload" /> <ShopDealerCapitalEdit
v-model:visible="showEdit"
:data="current"
@done="reload"
/>
</a-page-header> </a-page-header>
</template> </template>
@@ -58,10 +62,17 @@
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 ShopDealerCapitalEdit from './components/shopDealerCapitalEdit.vue'; import ShopDealerCapitalEdit from './components/shopDealerCapitalEdit.vue';
import { pageShopDealerCapital, removeShopDealerCapital, removeBatchShopDealerCapital } from '@/api/shop/shopDealerCapital'; import {
import type { ShopDealerCapital, ShopDealerCapitalParam } from '@/api/shop/shopDealerCapital/model'; pageShopDealerCapital,
removeShopDealerCapital,
removeBatchShopDealerCapital
} from '@/api/shop/shopDealerCapital';
import type {
ShopDealerCapital,
ShopDealerCapitalParam
} from '@/api/shop/shopDealerCapital/model';
// 表格实例 // 表格实例
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null); const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
@@ -127,7 +138,11 @@
50: { text: '新人注册奖', color: 'processing' } 50: { text: '新人注册奖', color: 'processing' }
}; };
const type = typeMap[text] || { text: '未知', color: 'default' }; const type = typeMap[text] || { text: '未知', color: 'default' };
return { type: 'tag', props: { color: type.color }, children: type.text }; return {
type: 'tag',
props: { color: type.color },
children: type.text
};
} }
}, },
{ {
@@ -137,12 +152,15 @@
align: 'center', align: 'center',
customRender: ({ text, record }) => { customRender: ({ text, record }) => {
const amount = parseFloat(text || '0').toFixed(2); const amount = parseFloat(text || '0').toFixed(2);
const isIncome = record.flowType === 10 || record.flowType === 40 || record.flowType === 50; const isIncome =
record.flowType === 10 ||
record.flowType === 40 ||
record.flowType === 50;
return { return {
type: 'span', type: 'span',
props: { props: {
style: { style: {
color: isIncome ? '#424242' : '#ff4d4f', color: isIncome ? '#424242' : '#ff4d4f'
} }
}, },
children: `${isIncome ? '' : '-'} ${amount}` children: `${isIncome ? '' : '-'} ${amount}`
@@ -161,7 +179,7 @@
dataIndex: 'toUserId', dataIndex: 'toUserId',
key: 'toUserId', key: 'toUserId',
align: 'center', align: 'center',
customRender: ({ text }) => text ? `ID: ${text}` : '-' customRender: ({ text }) => (text ? `ID: ${text}` : '-')
}, },
{ {
title: '描述', title: '描述',