| | |
| | | { |
| | | "globals": { |
| | | "AlipayExpandindirectSceneList": true, |
| | | "AppLocalConfig": true, |
| | | "AppType": true, |
| | | "AreaType": true, |
| | |
| | | // biome-ignore lint: disable |
| | | export {} |
| | | declare global { |
| | | const AlipayExpandindirectSceneList: typeof import('./src/constants/enterpriseWallet')['AlipayExpandindirectSceneList'] |
| | | const AppLocalConfig: typeof import('./src/constants/app')['AppLocalConfig'] |
| | | const AppType: typeof import('./src/constants/app')['AppType'] |
| | | const AreaType: typeof import('./src/constants/enum')['AreaType'] |
| | |
| | | declare module 'vue' { |
| | | interface GlobalComponents {} |
| | | interface ComponentCustomProperties { |
| | | readonly AlipayExpandindirectSceneList: UnwrapRef<typeof import('./src/constants/enterpriseWallet')['AlipayExpandindirectSceneList']> |
| | | readonly AppLocalConfig: UnwrapRef<typeof import('./src/constants/app')['AppLocalConfig']> |
| | | readonly AppType: UnwrapRef<typeof import('./src/constants/app')['AppType']> |
| | | readonly AreaType: UnwrapRef<typeof import('./src/constants/enum')['AreaType']> |
| | |
| | | import { EnumEnterpriseWalletExpandindirectOrderScene } from './apiEnum'; |
| | | import { TempFolderPath } from './enum'; |
| | | |
| | | export const EnumEnterpriseWalletExpandindirectOrderSceneText = { |
| | | [EnumEnterpriseWalletExpandindirectOrderScene.XIANJIN_YINGXIAO]: '现金营销', |
| | |
| | | [EnumEnterpriseWalletExpandindirectOrderScene.GONGYI_BUZHU]: '公益补助', |
| | | [EnumEnterpriseWalletExpandindirectOrderScene.ZHUANZHANG_QITA]: '其他场景', |
| | | }; |
| | | |
| | | export const AlipayExpandindirectSceneList = [ |
| | | `${TempFolderPath}/alipayExpandindirectScene/scene1.jpg`, |
| | | `${TempFolderPath}/alipayExpandindirectScene/scene2.png`, |
| | | `${TempFolderPath}/alipayExpandindirectScene/scene3.png`, |
| | | `${TempFolderPath}/alipayExpandindirectScene/scene4.png`, |
| | | `${TempFolderPath}/alipayExpandindirectScene/scene5.png`, |
| | | ]; |
| | |
| | | <ProTableQueryFilterBar :show-reset-btn="false"> |
| | | <template #query> |
| | | <QueryFilterItem> |
| | | <SearchInput v-model="state.traceId" style="width: 260px" placeholder="traceID"> |
| | | <SearchInput |
| | | v-model="state.traceId" |
| | | style="width: 260px" |
| | | placeholder="traceID" |
| | | @on-click-search="refetch()" |
| | | > |
| | | </SearchInput> |
| | | </QueryFilterItem> |
| | | </template> |
| | |
| | | data: detail, |
| | | refetch, |
| | | } = useQuery({ |
| | | queryKey: ['logRecordsServices/getTraceIdLog', state.traceId], |
| | | queryKey: ['logRecordsServices/getTraceIdLog', state], |
| | | queryFn: async () => { |
| | | return await logRecordsServices.getTraceIdLog({ traceId: state.traceId }); |
| | | }, |