From 537286fcc9b37fd6cfbea1d1f07583a77adcef6b Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 03 九月 2025 17:08:38 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp --- apps/cMiniApp/src/subpackages/wallet/withdrawResult/InnerPage.vue | 125 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 125 insertions(+), 0 deletions(-) diff --git a/apps/cMiniApp/src/subpackages/wallet/withdrawResult/InnerPage.vue b/apps/cMiniApp/src/subpackages/wallet/withdrawResult/InnerPage.vue new file mode 100644 index 0000000..81848a0 --- /dev/null +++ b/apps/cMiniApp/src/subpackages/wallet/withdrawResult/InnerPage.vue @@ -0,0 +1,125 @@ +<template> + <ContentScrollView :paddingH="false"> + <div class="withdraw-result-step-wrapper"> + <div class="withdraw-result-step-title">浣欓鎻愮幇</div> + <nut-steps + class="withdraw-result-step-content" + progress-dot + direction="vertical" + :current="2" + > + <nut-step title="鍙戣捣鎻愮幇" :content="dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss')"> + </nut-step> + <nut-step + title="鏈烘瀯澶勭悊涓�" + :content="`棰勮${dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss')}鍓嶅埌璐" + > + <template #icon> + <img class="withdraw-result-step-icon-wait" :src="IconWalletStepWait" alt="" /> + </template> + </nut-step> + <nut-step title="鎻愮幇鍒拌处" :content="dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss')"> + </nut-step> + </nut-steps> + </div> + <List> + <ListItem title="鎻愮幇鍗曞彿" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <ListItem title="鎻愮幇閲戦" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <ListItem title="鎻愮幇鏂瑰紡" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <template v-if="walletType === 'alipay'"> + <ListItem title="鏀粯瀹濇埛鍚�" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <ListItem title="鏀粯瀹濊处鍙�" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + </template> + <template v-if="walletType === 'bank'"> + <ListItem title="閾惰鍗″彿" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <ListItem title="寮�鎴疯" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + </template> + <ListItem title="鏈嶅姟璐�" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + <ListItem title="瀹為檯鍒拌处" :show-arrow="false"> + <template #extra> + <div class="income-detail-info-value">{{ '5893485943859843095843' }}</div> + </template> + </ListItem> + </List> + </ContentScrollView> + <PageFooter> + <PageFooterBtn type="primary" @click="handleConfirm">瀹屾垚</PageFooterBtn> + </PageFooter> +</template> + +<script setup lang="ts"> +import { List, ListItem } from '@12333/components'; +import dayjs from 'dayjs'; +import IconWalletStepWait from '@/assets/wallet/icon-wallet-step-wait.png'; + +defineOptions({ + name: 'InnerPage', +}); + +const walletType = ref('alipay'); + +async function handleConfirm() { + try { + } catch (error) {} +} +</script> + +<style lang="scss"> +@import '@/styles/common.scss'; + +.withdrawResult-page-wrapper { + .withdraw-result-step-wrapper { + padding: 20px 60px; + + .withdraw-result-step-title { + font-size: 32px; + font-weight: bold; + text-align: center; + margin-bottom: 40px; + } + + .withdraw-result-step-content { + .nut-step-main { + margin-bottom: 20px; + } + + .withdraw-result-step-icon-wait { + width: 40px; + height: 40px; + } + } + } +} +</style> -- Gitblit v1.9.1