12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="content wrap">
- <u-icon name="checkmark-circle-fill" color="#11d183" size="200"></u-icon>
- <view class="title">{{title}}</view>
- <u-button type="success" @click="backHome">返回首页</u-button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title:'',
- }
- },
- onLoad(page) {
- console.log('page',page);
- this.title = page.title;
- },
- methods: {
- backHome(){
- this.$u.route({
- url: 'pages/index/index',
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content{
- padding-top: 10vh;
- text-align: center;
- }
- .title{
- margin-top: 24rpx;
- margin-bottom: 124rpx;
- font-size: 40rpx;
- }
- </style>
|