refactor(payment): 移除支付产品详情 settlePeriods 展示与i18n

This commit is contained in:
DaxPay Dev
2026-07-07 21:56:20 +08:00
parent a266a28662
commit 867a32d994
6 changed files with 0 additions and 13 deletions

View File

@@ -51,7 +51,6 @@ export interface PayProductResult extends BaseEntity {
channelName?: string;
description?: string;
icon?: string;
settlePeriods?: string[];
sortNo?: number;
remark?: string;
isv?: boolean;

View File

@@ -13,7 +13,6 @@
"apiCallMode": "API Call Mode",
"payIdType": "Pay ID Type",
"capabilities": "Payment Capabilities",
"settlePeriods": "Settlement Periods",
"features": "Product Features"
},
"features": "Product Features",

View File

@@ -14,7 +14,6 @@
"apiCallMode": "API Call Mode",
"payIdType": "Pay ID Type",
"capabilities": "Pay Capabilities",
"settlePeriods": "Settlement Periods",
"features": "Product Features"
},
"features": "Product Features",

View File

@@ -13,7 +13,6 @@
"apiCallMode": "API调用模式",
"payIdType": "支付标识类型",
"capabilities": "支付能力",
"settlePeriods": "结算周期",
"features": "产品特性"
},
"features": "产品特性",

View File

@@ -14,7 +14,6 @@
"apiCallMode": "API调用模式",
"payIdType": "支付标识类型",
"capabilities": "支付能力",
"settlePeriods": "结算周期",
"features": "产品特性"
},
"features": "产品特性",

View File

@@ -260,14 +260,6 @@
<a-descriptions-item :label="$t('payment.constant.product.field.channel')">
{{ getChannelName(productDetail.channel || '') }}
</a-descriptions-item>
<a-descriptions-item :label="$t('payment.constant.product.field.settlePeriods')">
<div class="detail-tags">
<a-tag v-for="period in productDetail.settlePeriods || []" :key="period" color="cyan">
{{ period }}
</a-tag>
<span v-if="(productDetail.settlePeriods || []).length === 0">-</span>
</div>
</a-descriptions-item>
<a-descriptions-item :label="$t('payment.constant.product.field.sandbox')">
<a-tag v-if="productDetail.sandbox" color="cyan">{{
$t('payment.constant.product.sandboxSupported')