1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="m-app">
- <view class="fx-h fx-ac fx-bc">
- <view class="yyok"><image src="/static/img/success.png" mode="widthFix"/></view>
- <view class="title">支付密码设置成功</view>
-
-
-
- <view class="nt yy-btn" @tap="tapBack">点击返回</view>
-
- </view>
- </view>
- </template>
- <script>
- import {mapState,mapMutations} from 'vuex';
- export default {
- computed: mapState(['user']),
- data() {
- return {
- }
- },
- onLoad(options){
- },
- methods: {
- tapBack:function(){
- uni.switchTab({url:"/pages/user/index"});
- }
- }
- }
- </script>
- <style>
- page{background-color: #FFFFFF;}
- .m-app{width:100vw}
- .yyok{ margin-top: 80px;}
- .yyok image{ width: 100px;}
- .title{ font-size: 24px;color: #000;font-weight: bold;color:#1AAD19; margin-top: 10px;}
- .yyok-view{ font-size: 14px;color: #303033; margin-top: 10px;}
- .pay_name{padding: 5px 0;font-size: 14px;}
- .pay_card{padding: 5px 0;font-size: 14px;}
- .pay_time{font-size: 14px;color: #303033;}
- .yy-btn{position: absolute;bottom: 80px;width: 80%;text-align: center;background: #1AAD19; padding: 20rpx 0; color: #fff; font-size: 14px; margin-top: 20px; border-radius: 20px;}
- </style>
|