mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
80 lines
1.6 KiB
Vue
80 lines
1.6 KiB
Vue
<template>
|
|
<view>
|
|
<view class="bg-white success-msg">
|
|
<view class=" ">
|
|
<view class=" padding flex align-center">
|
|
<view class="flex-sub text-center">
|
|
<view class="text-xsl">
|
|
<text class="cuIcon-roundcheckfill text-green"></text>
|
|
</view>
|
|
<view class=" text-msg">{{msg || '处理成功'}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="padding flex flex-direction margin-top">
|
|
<button class="cu-btn bg-green lg" @click="_indexPage()">返回首页</button>
|
|
</view>
|
|
</view>
|
|
<community-recommend></community-recommend>
|
|
<view class="home_wrap">
|
|
<success-ads :objType="objType"></success-ads>
|
|
</view>
|
|
<success-goods :objType="objType"></success-goods>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import successAds from '@/components/success/success-ads.vue';
|
|
import successGoods from '@/components/success/success-goods.vue';
|
|
import communityRecommend from '@/components/community-recommend.vue';
|
|
export default {
|
|
data() {
|
|
return {
|
|
msg: '',
|
|
objType:'3003',
|
|
imgs: [],
|
|
goods: []
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.msg = options.msg;
|
|
this.objType = options.objType;
|
|
},
|
|
components: {
|
|
successAds,
|
|
successGoods,
|
|
communityRecommend
|
|
},
|
|
methods: {
|
|
_indexPage:function(){
|
|
uni.switchTab({
|
|
url: "/pages/index/index?wAppId=" + this.vc.getWAppId()
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.success-msg {
|
|
padding-top: 100upx;
|
|
padding-bottom: 50upx;
|
|
}
|
|
|
|
.text-xsl {
|
|
font-size: 180upx;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.text-msg {
|
|
font-size: 40upx;
|
|
}
|
|
|
|
.home_wrap {
|
|
padding: 20upx 20upx 0;
|
|
}
|
|
</style>
|