|
@@ -54,28 +54,28 @@ export const columns = (props: { appType: any}): ProColumns<any>[] => {
|
|
align: "center",
|
|
align: "center",
|
|
hideInSearch: true,
|
|
hideInSearch: true,
|
|
},
|
|
},
|
|
- {
|
|
|
|
- title: '小程序配置信息(json)',
|
|
|
|
- dataIndex: 'configParamList',
|
|
|
|
- key: 'configParamList',
|
|
|
|
- align: 'center',
|
|
|
|
- hideInSearch: true,
|
|
|
|
- render: (a, b) => {
|
|
|
|
- return (
|
|
|
|
- <Space size={[0, 0]} wrap>
|
|
|
|
- {b?.configParamList?.map((item: any, index: number) => {
|
|
|
|
- return (
|
|
|
|
- <Tooltip title={JSON.stringify(item['additionalProp' + (index + 1)])} key={index}>
|
|
|
|
- <Button type="link" size="small">
|
|
|
|
- 配置{index + 1}
|
|
|
|
- </Button>
|
|
|
|
- </Tooltip>
|
|
|
|
- );
|
|
|
|
- })}
|
|
|
|
- </Space>
|
|
|
|
- );
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
|
|
+ // {
|
|
|
|
+ // title: '小程序配置信息(json)',
|
|
|
|
+ // dataIndex: 'configParamList',
|
|
|
|
+ // key: 'configParamList',
|
|
|
|
+ // align: 'center',
|
|
|
|
+ // hideInSearch: true,
|
|
|
|
+ // render: (a, b) => {
|
|
|
|
+ // return (
|
|
|
|
+ // <Space size={[0, 0]} wrap>
|
|
|
|
+ // {b?.configParamList?.map((item: any, index: number) => {
|
|
|
|
+ // return (
|
|
|
|
+ // <Tooltip title={JSON.stringify(item['additionalProp' + (index + 1)])} key={index}>
|
|
|
|
+ // <Button type="link" size="small">
|
|
|
|
+ // 配置{index + 1}
|
|
|
|
+ // </Button>
|
|
|
|
+ // </Tooltip>
|
|
|
|
+ // );
|
|
|
|
+ // })}
|
|
|
|
+ // </Space>
|
|
|
|
+ // );
|
|
|
|
+ // },
|
|
|
|
+ // },
|
|
{
|
|
{
|
|
title: 'ios支付版本号',
|
|
title: 'ios支付版本号',
|
|
tooltip: "ios的特殊性,此版本号与IOS支付模块关联,小程序版本号<=此版本号IOS才会出现支付功能,(微信)小程序发布线上后必须设置",
|
|
tooltip: "ios的特殊性,此版本号与IOS支付模块关联,小程序版本号<=此版本号IOS才会出现支付功能,(微信)小程序发布线上后必须设置",
|
|
@@ -112,17 +112,17 @@ export const columns = (props: { appType: any}): ProColumns<any>[] => {
|
|
);
|
|
);
|
|
},
|
|
},
|
|
},
|
|
},
|
|
- {
|
|
|
|
- title: "运营载体状态",
|
|
|
|
- dataIndex: 'appCarrierList',
|
|
|
|
- key: "appCarrierList",
|
|
|
|
- hideInSearch: true,
|
|
|
|
- align: "center",
|
|
|
|
- render: (a, b: any) => {
|
|
|
|
- let isTrue = b?.appCarrierList?.length > 0
|
|
|
|
- return <Badge status={isTrue ? "processing" : "error"} text={isTrue ? "有" : "无"} />
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ // {
|
|
|
|
+ // title: "运营载体状态",
|
|
|
|
+ // dataIndex: 'appCarrierList',
|
|
|
|
+ // key: "appCarrierList",
|
|
|
|
+ // hideInSearch: true,
|
|
|
|
+ // align: "center",
|
|
|
|
+ // render: (a, b: any) => {
|
|
|
|
+ // let isTrue = b?.appCarrierList?.length > 0
|
|
|
|
+ // return <Badge status={isTrue ? "processing" : "error"} text={isTrue ? "有" : "无"} />
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
{
|
|
{
|
|
title: "操作",
|
|
title: "操作",
|
|
dataIndex: 'option',
|
|
dataIndex: 'option',
|