feat:【antd】【ele】代码风格统一

This commit is contained in:
YunaiV
2025-11-01 22:50:24 +08:00
parent d7cea8be39
commit 4412d455a3
39 changed files with 29 additions and 64 deletions

View File

@@ -48,6 +48,7 @@ const afterSale = ref<MallAfterSaleApi.AfterSale>({
logs: [],
});
// TODO @xingyu貌似 antd 相比 antd 来说,多了一个框?有啥办法只有 1 个么?
const [OrderDescriptions] = useDescription({
title: '订单信息',
bordered: false,

View File

@@ -60,6 +60,7 @@ const deliveryExpressList = ref<MallDeliveryExpressApi.SimpleDeliveryExpress[]>(
const expressTrackList = ref<any[]>([]);
const pickUpStore = ref<MallDeliveryPickUpStoreApi.PickUpStore | undefined>();
// TODO @xingyu貌似 antd 相比 antd 来说,多了一个框?有啥办法只有 1 个么?
const [OrderInfoDescriptions] = useDescription({
title: '订单信息',
bordered: false,
@@ -337,7 +338,7 @@ onMounted(async () => {
<OperateLogGrid table-title="操作日志">
<template #userType="{ row }">
<Tag v-if="row.userType === 0" color="default"> 系统 </Tag>
<DictTag :type="DICT_TYPE.USER_TYPE" :value="row.userType" />
<DictTag v-else :type="DICT_TYPE.USER_TYPE" :value="row.userType" />
</template>
</OperateLogGrid>
</div>