diff --git a/src/views/daxpay/common/notice/notify/NotifyRecordInfo.vue b/src/views/daxpay/common/notice/notify/NotifyRecordInfo.vue
index b8b7c4981..0cb86aa9a 100644
--- a/src/views/daxpay/common/notice/notify/NotifyRecordInfo.vue
+++ b/src/views/daxpay/common/notice/notify/NotifyRecordInfo.vue
@@ -17,7 +17,7 @@
{{ info.reqCount || '空' }}
- {{ dictConvert('SendType', info.sendType) }}
+ {{ dictConvert('notice_send_type', info.sendType) }}
是
diff --git a/src/views/daxpay/common/notice/notify/NotifyRecordList.vue b/src/views/daxpay/common/notice/notify/NotifyRecordList.vue
index aad8c751a..71952ea4b 100644
--- a/src/views/daxpay/common/notice/notify/NotifyRecordList.vue
+++ b/src/views/daxpay/common/notice/notify/NotifyRecordList.vue
@@ -32,7 +32,7 @@
- {{ dictConvert('ClientNoticeSendType', row.sendType) }}
+ {{ dictConvert('notice_send_type', row.sendType) }}
diff --git a/src/views/daxpay/common/order/pay/PayOrder.api.ts b/src/views/daxpay/common/order/pay/PayOrder.api.ts
index b011b3660..58fd7c964 100644
--- a/src/views/daxpay/common/order/pay/PayOrder.api.ts
+++ b/src/views/daxpay/common/order/pay/PayOrder.api.ts
@@ -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' }
}