修改了一些样式
This commit is contained in:
parent
e1491186a9
commit
59ac70ee25
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"tips": "当用户申请提现且无法通过退款进行时,可以指定提现途径,由业务方后台手动完成"
|
||||
}
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
import { ListPro } from '../../../components/AbstractComponents';
|
||||
import { Alert } from 'antd';
|
||||
export default function render(props) {
|
||||
const { channels, oakPagination, onUpdate, onRemove } = props.data;
|
||||
const { t } = props.methods;
|
||||
return (<ListPro title={t('withdrawChannel:name')} entity="withdrawChannel" attributes={[
|
||||
return (<ListPro title={<Alert message={t('tips')} type="info"/>} entity="withdrawChannel" attributes={[
|
||||
'name',
|
||||
{
|
||||
path: 'lossRatio',
|
||||
|
|
|
|||
|
|
@ -244,6 +244,16 @@ const i18ns = [
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "37b438f926095fc0c5de592f6d23e912",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-list",
|
||||
language: "zh-CN",
|
||||
module: "oak-pay-business",
|
||||
position: "src/components/withdrawChannel/list",
|
||||
data: {
|
||||
"tips": "当用户申请提现且无法通过退款进行时,可以指定提现途径,由业务方后台手动完成"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "e4c7c547c7d2a6f842dd52855822fac0",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-upsert",
|
||||
|
|
|
|||
|
|
@ -246,6 +246,16 @@ const i18ns = [
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "37b438f926095fc0c5de592f6d23e912",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-list",
|
||||
language: "zh-CN",
|
||||
module: "oak-pay-business",
|
||||
position: "src/components/withdrawChannel/list",
|
||||
data: {
|
||||
"tips": "当用户申请提现且无法通过退款进行时,可以指定提现途径,由业务方后台手动完成"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "e4c7c547c7d2a6f842dd52855822fac0",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-upsert",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"tips": "当用户申请提现且无法通过退款进行时,可以指定提现途径,由业务方后台手动完成"
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
import { EntityDict } from "@project/oak-app-domain";
|
||||
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
||||
import { ListPro } from '@project/components/AbstractComponents';
|
||||
import { Alert } from 'antd';
|
||||
|
||||
export default function render(props: WebComponentProps<EntityDict, 'withdrawChannel', true, {
|
||||
channels: RowWithActions<EntityDict, 'withdrawChannel'>[];
|
||||
|
|
@ -12,7 +13,7 @@ export default function render(props: WebComponentProps<EntityDict, 'withdrawCha
|
|||
|
||||
return (
|
||||
<ListPro
|
||||
title={t('withdrawChannel:name')}
|
||||
title={<Alert message={t('tips')} type="info" />}
|
||||
entity="withdrawChannel"
|
||||
attributes={[
|
||||
'name',
|
||||
|
|
|
|||
|
|
@ -246,6 +246,16 @@ const i18ns: I18n[] = [
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "37b438f926095fc0c5de592f6d23e912",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-list",
|
||||
language: "zh-CN",
|
||||
module: "oak-pay-business",
|
||||
position: "src/components/withdrawChannel/list",
|
||||
data: {
|
||||
"tips": "当用户申请提现且无法通过退款进行时,可以指定提现途径,由业务方后台手动完成"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "e4c7c547c7d2a6f842dd52855822fac0",
|
||||
namespace: "oak-pay-business-c-withdrawChannel-upsert",
|
||||
|
|
|
|||
Loading…
Reference in New Issue