Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
43
pro_v3.5.1/view/uniapp/pages/users/user_cash/status.vue
Normal file
43
pro_v3.5.1/view/uniapp/pages/users/user_cash/status.vue
Normal file
@@ -0,0 +1,43 @@
|
||||
<template>
|
||||
<view :style="colorStyle">
|
||||
<view class="px-20 mt-40">
|
||||
<view class="bg--w111-fff rd-24rpx flex-col flex-center box">
|
||||
<text class="iconfont icon-a-ic_CompleteSelect"></text>
|
||||
<view class="fs-32 lh-44rpx mt-64">提现申请已提交,等待人工审核</view>
|
||||
<view class="fs-26 lh-36rpx text--w111-999 mt-8">{{new Date().getTime() | dateFormat}}</view>
|
||||
<view class="w-498 h-88 rd-44rpx flex-center fs-28 text--w111-fff bg-color mt-30" @tap="goPage">好的</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import colors from '@/mixins/color.js';
|
||||
import dayjs from '@/plugin/dayjs/dayjs.min.js';
|
||||
export default {
|
||||
name: 'status',
|
||||
filters: {
|
||||
dateFormat(value) {
|
||||
return dayjs(value).format('YYYY/MM/DD hh:mm:ss');
|
||||
}
|
||||
},
|
||||
mixins:[colors],
|
||||
methods:{
|
||||
goPage(){
|
||||
uni.navigateTo({
|
||||
url: '/pages/users/user_spread_money/index?type=1'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.box{
|
||||
padding: 88rpx 0 64rpx;
|
||||
}
|
||||
.icon-a-ic_CompleteSelect{
|
||||
font-size: 112rpx;
|
||||
color: #00B42A;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user