|
|
@ -9,24 +9,27 @@ |
|
|
|
title-active-color="#59B4FF" |
|
|
|
> |
|
|
|
<van-tab title="我的申请"> |
|
|
|
<div class="mt-8 bg-white flex flex-col"> |
|
|
|
<div class="p-4 pb-0 text-gray-500 font-semibold">历史申请</div> |
|
|
|
<div class="h-full bg-white px-4"> |
|
|
|
<div class="mt-4 flex flex-col h-96 overflow-hidden"> |
|
|
|
<div class="py-4 pb-0 text-gray-500 font-semibold">历史申请</div> |
|
|
|
<Search class="px-4 pt-0" /> |
|
|
|
<HistoricalApplication class="px-4 mt-0" /> |
|
|
|
</div> |
|
|
|
<!-- 底部提交按钮部分 --> |
|
|
|
<div class="mt-20" @click="toApplication"> |
|
|
|
<van-button type="primary" block>发起申请</van-button> |
|
|
|
<div class="fixed w-11/12 box-border bottom-10 " @click="toApplication"> |
|
|
|
<van-button type="primary" block size="small">发起申请</van-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</van-tab> |
|
|
|
|
|
|
|
<van-tab title="我的奖金"> |
|
|
|
<div class="mt-8 bg-white"> |
|
|
|
<div class="mt-4 bg-white"> |
|
|
|
<div class="p-4 pb-0 text-gray-500 font-semibold">奖金领取记录</div> |
|
|
|
<Search class="px-4 pt-0" /> |
|
|
|
<BonusCollection class="px-4 mt-0" /> |
|
|
|
</div> |
|
|
|
<div class="my-4 bg-white"> |
|
|
|
<div class="mt-4 bg-white"> |
|
|
|
<div class="text-gray-500 font-semibold m-4 py-3 border-b"> |
|
|
|
待领取奖金 |
|
|
|
</div> |
|
|
@ -61,13 +64,8 @@ import { useRouter } from 'vue-router'; |
|
|
|
const router = useRouter(); |
|
|
|
|
|
|
|
const active = ref(0); |
|
|
|
const isShow = ref(true); |
|
|
|
const isBonus = ref(true); |
|
|
|
|
|
|
|
function onClickLeft() { |
|
|
|
console.log('返回上一页'); |
|
|
|
} |
|
|
|
|
|
|
|
function toApplication() { |
|
|
|
const routeValue = router.currentRoute.value; |
|
|
|
const query = routeValue.query; |
|
|
|