This commit is contained in:
2025-06-12 20:53:39 +08:00
parent 148e78abf9
commit e10695098c
21 changed files with 467 additions and 51 deletions

View File

@@ -1,5 +1,6 @@
<script setup>
import {ref} from "vue";
import GoPay from "./GoPay.vue";
const payInfo = ref(null);
const visible = ref(false);
@@ -68,10 +69,13 @@ defineExpose({
(可用¥{{ payInfo?.user_money?.toFixed(2) }})
</a-radio>
</div>
<div class="text-[12px] text-[#86909C] pl-[20px]">
<div v-if="payInfo.user_money < payInfo?.total_money" class="text-[12px] text-[#86909C] pl-[20px]">
*余额不足本次任务所需,请充值后再进行支付
</div>
<a-button class="mt-[20px]" type="primary">去充值</a-button>
<go-pay>
<a-button class="mt-[20px]" type="primary">去充值
</a-button>
</go-pay>
</div>
</a-modal>
</template>