style 调整字段名称

This commit is contained in:
bootx
2024-02-02 21:34:02 +08:00
parent 41748fb7f8
commit cdd6d04777
9 changed files with 10 additions and 10 deletions

View File

@@ -139,7 +139,7 @@
* 初始化数据
*/
async function initData() {
cayChannelList = await dictDropDown('AsyncPayChannel')
cayChannelList = await dictDropDown('AsyncChannel')
payStatusList = await dictDropDown('PayStatus')
}
/**

View File

@@ -19,7 +19,7 @@
{{ form.amount }}
</a-descriptions-item>
<a-descriptions-item label="通道支付单ID">
{{ form.payChannelId }}
{{ form.PayChannelId }}
</a-descriptions-item>
<a-descriptions-item label="剩余可退余额">
{{ form.refundableAmount }}

View File

@@ -16,7 +16,7 @@
<a-tag>{{ dictConvert('PayRefundStatus', row.status) }}</a-tag>
</template>
</vxe-column>
<vxe-column field="payChannelId" title="通道支付单ID" />
<vxe-column field="PayChannelId" title="通道支付单ID" />
<vxe-column fixed="right" width="60" :showOverflow="false" title="操作">
<template #default="{ row }">
<span>

View File

@@ -103,7 +103,7 @@ export interface RefundChannelOrder extends BaseEntity {
// 支付通道
refundId?: string
// 通道支付单id
payChannelId?: string
PayChannelId?: string
// 关联网关退款号
gatewayOrderNo?: string
// 通道支付单id

View File

@@ -31,7 +31,7 @@ export interface PayCallbackRecord extends BaseEntity {
// 支付网关订单号
gatewayOrderNo?: string
// 支付通道
payChannel?: string
channel?: string
// 回调类型
callbackType?: string
// 通知消息

View File

@@ -17,7 +17,7 @@
{{ form.gatewayOrderNo }}
</a-descriptions-item>
<a-descriptions-item label="支付通道">
<a-tag>{{ dictConvert('PayChannel', form.payChannel) }}</a-tag>
<a-tag>{{ dictConvert('PayChannel', form.channel) }}</a-tag>
</a-descriptions-item>
<a-descriptions-item label="支付通道">
<a-tag>{{ dictConvert('PaymentType', form.callbackType) }}</a-tag>

View File

@@ -21,9 +21,9 @@
</a>
</template>
</vxe-column>
<vxe-column field="payChannel" title="支付通道">
<vxe-column field="channel" title="支付通道">
<template #default="{ row }">
<a-tag>{{ dictConvert('PayChannel', row.payChannel) }}</a-tag>
<a-tag>{{ dictConvert('PayChannel', row.channel) }}</a-tag>
</template>
</vxe-column>
<vxe-column field="callbackType" title="回调类型">

View File

@@ -85,7 +85,7 @@
{ field: 'paymentId', type: STRING, name: '支付单号', placeholder: '请输入支付单号' },
{ field: 'businessNo', type: STRING, name: '业务号', placeholder: '请输入业务号' },
{
field: 'payChannel',
field: 'channel',
type: LIST,
name: '支付通道',
placeholder: '请选择支付通道',

View File

@@ -33,7 +33,7 @@
<a-form-item label="回调签名" name="noticeSign">
<a-switch v-model:checked="form.noticeSign" :disabled="showable" />
</a-form-item>
<a-form-item label="回调地址" name="noticeUrl">
<a-form-item label="默认回调地址" name="noticeUrl">
<a-input v-model:value="form.noticeUrl" :disabled="showable" placeholder="请输入回调地址" />
</a-form-item>
<a-form-item label="备注" name="remark">