dingdong-master/pages/my/pay-deposit.vue

50 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<view class="bg-gradual-color">
<!-- 顶部操作条 -->
<cu-custom :bgColor="''" :isBack="true">
<block slot="backText">返回</block>
<block slot="content">保证金</block>
</cu-custom>
<view class="padding-sm">
<view class="padding light">
<view>已缴纳诚信保证金</view>
<view class="margin-top-sm">
<view class="text-sl text-price text-bold">{{payDeposit.paidAmount}}</view>
</view>
</view>
</view>
</view>
<view class="text-center">
<view class="margin-top-lg padding-lg">
<view class="text-lg">优先派单 | 更多雇佣</view>
<view>保障服务完成 | 保障服务质量 | 保障售后问题</view>
</view>
<view class="margin-top-lg padding-lg">
<button class="cu-btn lg bg-main-color long-btn shadow-blur">缴纳保证金</button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
payDeposit: {}
}
},
onLoad() {
this.loadData();
},
methods: {
async loadData() {
this.payDeposit = await this.$api.data('payDeposit');
}
},
}
</script>
<style>
</style>