style 样式优化

This commit is contained in:
DaxPay
2024-09-03 18:03:14 +08:00
parent 548573570b
commit 30c41c3d39
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@
{{ info.reqCount || '空' }}
</a-descriptions-item>
<a-descriptions-item label="发送类型">
<a-tag>{{ dictConvert('SendType', info.sendType) }}</a-tag>
<a-tag>{{ dictConvert('notice_send_type', info.sendType) }}</a-tag>
</a-descriptions-item>
<a-descriptions-item label="是否发送成功">
<a-tag v-if="info.success" color="green"></a-tag>

View File

@@ -32,7 +32,7 @@
</vxe-column>
<vxe-column field="sendType" title="发送类型">
<template #default="{ row }">
<a-tag>{{ dictConvert('ClientNoticeSendType', row.sendType) }}</a-tag>
<a-tag>{{ dictConvert('notice_send_type', row.sendType) }}</a-tag>
</template>
</vxe-column>
<vxe-column field="errorMsg" title="错误信息" max-width="200" />

View File

@@ -129,7 +129,7 @@ export function cellStyle({ row, column }) {
case PayRefundStatusEnum.REFUNDING:
return { color: 'orange' }
case PayRefundStatusEnum.PARTIAL_REFUND:
return { color: 'gray' }
return { color: 'LightSkyBlue' }
default:
return { color: 'red' }
}