123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view>
- <scroll-view :scroll-y="modalName==null" class="page" :class="modalName!=null?'show':''">
- <cu-custom bgColor="bg-gradual-pink" :isBack="true">
- <block slot="backText">返回</block>
- <block slot="content">结果</block>
- </cu-custom>
- <view class="solids-bottom padding-xs flex align-center">
- <view class="flex-sub text-center">
- <view class="solid-bottom text-xsl padding">
- <text class=" cuIcon-roundcheckfill text-green"></text>
- </view>
- <view class="padding">{{item.msg}}</view>
- </view>
- </view>
- <view class="padding flex flex-direction">
- <button class="cu-btn bg-green shadow-blur round lg" @tap="goback()">返回主页
- </button>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
-
- export default {
- data() {
- return {
- modalName: null,
- item:{},
- }
- },
- onLoad: function (option) {
- this.item = JSON.parse(decodeURIComponent(option.item));
- },
- methods: {
- goback(){
- uni.navigateTo({
- url:'/pages/index/index'
- })
- }
- }
- }
- </script>
- <style>
- </style>
|