wjx 6 kuukautta sitten
vanhempi
commit
1cec32d8ea

+ 1 - 1
src/pages/iaaData/game/ocenaengine/appCashTrendLTV/tableConfig.tsx

@@ -144,7 +144,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
                     render: (a: string) => <Statistic value={a || 0} precision={2}/>
                 },
                 {
-                    title: '"新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
+                    title: '新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
                     render: (a: string) => <Statistic value={a || 0} />
                 },
                 ...trend

+ 1 - 1
src/pages/iaaData/game/ocenaengine/appCashTrendRetained/tableConfig.tsx

@@ -145,7 +145,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
                     render: (a: string) => <Statistic value={a || 0} precision={2}/>
                 },
                 {
-                    title: '"新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
+                    title: '新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
                     render: (a: string) => <Statistic value={a || 0} />
                 },
                 ...trend

+ 1 - 1
src/pages/iaaData/game/ocenaengine/appCashTrendRoi/tableConfig.tsx

@@ -147,7 +147,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
                     render: (a: string) => <Statistic value={a || 0} precision={2}/>
                 },
                 {
-                    title: '"新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
+                    title: '新增曝光pv', dataIndex: 'adShowPv', label: '基本信息', align: 'center', width: 85, default: 21, sorter: true,
                     render: (a: string) => <Statistic value={a || 0} />
                 },
                 ...trend

+ 4 - 0
src/pages/iaaSystem/manage/channel/modalChannel.tsx

@@ -108,6 +108,10 @@ const ModalChannel: React.FC<Props> = ({ onChange, visible, onClose, initialValu
                         {
                             value: 'TENCENT_MP_PLAYLET',
                             label: '腾讯短剧',
+                        },
+                        {
+                            value: 'APP_ANDROID_NOVEL',
+                            label: '安卓App小说',
                         }
                     ]}
                     filterOption={(input, option) =>

+ 1 - 0
src/pages/iaaSystem/manage/channel/tableConfig.tsx

@@ -8,6 +8,7 @@ const AccountTypeEnum = {
     OCENAENGINE_MINI_GAME: <Tag color="#87d068">头条小游戏</Tag>,
     TENCENT_MP_NOVEL: <Tag color="#f50">腾讯小说</Tag>,
     TENCENT_MP_PLAYLET: <Tag color="#2db7f5">腾讯短剧</Tag>,
+    APP_ANDROID_NOVEL: <Tag color="#Fdb70F">安卓App小说</Tag>,
 }
 
 const tableConfig = (backValueEnum: any, appObj: any, bgApp?: (data: any) => void, handleLog?: (data: any) => void) => {