You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

<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>