| | |
| | | <ProTabPane lazy label="拨付记录" name="Payment"> |
| | | <PaymentRecordView></PaymentRecordView> |
| | | </ProTabPane> |
| | | <template v-if="sceneThree || sceneFour"> |
| | | <!-- <template v-if="sceneThree || sceneFour"> --> |
| | | <ProTabPane lazy label="奖励发放记录" name="RewardGrant"> |
| | | <RewardGrantRecordView></RewardGrantRecordView> |
| | | </ProTabPane> |
| | |
| | | <ProTabPane lazy label="消费记录" name="Consume"> |
| | | <ConsumeRecordView></ConsumeRecordView> |
| | | </ProTabPane> |
| | | </template> |
| | | <ProTabPane lazy label="提现记录" name="Withdrawal" v-if="sceneTwo || sceneFour"> |
| | | <!-- </template> --> |
| | | <ProTabPane lazy label="提现记录" name="Withdrawal"> |
| | | <WithdrawalRecordView ref="withdrawalRecordRef"></WithdrawalRecordView> |
| | | </ProTabPane> |
| | | </ProTabs> |
| | |
| | | const state = reactive({ ...BaseState }); |
| | | |
| | | const sceneOne = computed(() => { |
| | | return !userDetail.value?.suportPlatRecharge && !userDetail.value?.suportWithDraw; |
| | | // return !userDetail.value?.suportPlatRecharge && !userDetail.value?.suportWithDraw; |
| | | }); |
| | | const sceneTwo = computed(() => { |
| | | return !userDetail.value?.suportPlatRecharge && userDetail.value?.suportWithDraw; |
| | | // return !userDetail.value?.suportPlatRecharge && userDetail.value?.suportWithDraw; |
| | | }); |
| | | const sceneThree = computed(() => { |
| | | return userDetail.value?.suportPlatRecharge && !userDetail.value?.suportWithDraw; |
| | | // return userDetail.value?.suportPlatRecharge && !userDetail.value?.suportWithDraw; |
| | | }); |
| | | const sceneFour = computed(() => { |
| | | return userDetail.value?.suportPlatRecharge && userDetail.value?.suportWithDraw; |
| | | // return userDetail.value?.suportPlatRecharge && userDetail.value?.suportWithDraw; |
| | | }); |
| | | |
| | | const { isLoading, data: detail } = useQuery({ |