94 lines
2.4 KiB
Vue
94 lines
2.4 KiB
Vue
|
|
<template>
|
|||
|
|
<view class="pages">
|
|||
|
|
<custom-navbar title="入驻成功" :showBack="true"></custom-navbar>
|
|||
|
|
<view class="title-icon">恭喜您!</view>
|
|||
|
|
<!-- <view class="title-icon">{{data.residency_notice}}</view> -->
|
|||
|
|
<view class="title-content">成功入驻成为美融融门店</view>
|
|||
|
|
<!-- <view class="title-content">{{data.approve_notice}}</view> -->
|
|||
|
|
<view class="erweimabox">
|
|||
|
|
<view class="erweimab">
|
|||
|
|
<!-- <image src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/26bd4004-c7aa-4997-9f31-8562060e7659.jpeg" mode="" style="width: 404rpx;height: 404rpx;"></image> -->
|
|||
|
|
<image :src="data.photo" mode="widthFix" style="width: 404rpx;border-radius:25rpx ;margin: 37rpx 0 0 36rpx;"></image>
|
|||
|
|
</view>
|
|||
|
|
<view class="kefubtn">扫码联系专属客服</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
export default {
|
|||
|
|
// 核心:用 props 接收
|
|||
|
|
props: {
|
|||
|
|
data: {
|
|||
|
|
type: Object, // 类型:对象
|
|||
|
|
default: () => ({}) // 默认空对象
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
onLoad() {
|
|||
|
|
// 在 JS 里使用
|
|||
|
|
console.log(this.data,'--------------------')
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style>
|
|||
|
|
.kefubtn{
|
|||
|
|
height: 42rpx;
|
|||
|
|
font-family: PingFangSC, PingFang SC;
|
|||
|
|
font-weight: 400;
|
|||
|
|
font-size: 30rpx;
|
|||
|
|
color: #5A5A5A;
|
|||
|
|
line-height: 42rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
font-style: normal;
|
|||
|
|
margin-top: 23rpx;
|
|||
|
|
}
|
|||
|
|
.pages {
|
|||
|
|
background-image: url('https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/467f6b5f-32dc-4ba3-847a-22be4569c45e.png');
|
|||
|
|
background-size: 100%;
|
|||
|
|
background-repeat: no-repeat;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.erweimab {
|
|||
|
|
margin: 70rpx 0 0 103rpx;
|
|||
|
|
width: 477rpx;
|
|||
|
|
height: 477rpx;
|
|||
|
|
background-image: url('https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/e5461570-10e3-4e11-a6ca-8543f106639a.png');
|
|||
|
|
background-size: 100%;
|
|||
|
|
background-repeat: no-repeat;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.erweimabox {
|
|||
|
|
margin: 71rpx 0 0 6rpx;
|
|||
|
|
width: 690rpx;
|
|||
|
|
height: 690rpx;
|
|||
|
|
background: #FFFFFF;
|
|||
|
|
border-radius: 62rpx;
|
|||
|
|
border: 1rpx solid #F2F4F6;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.title-icon {
|
|||
|
|
margin-left: 283rpx;
|
|||
|
|
height: 67rpx;
|
|||
|
|
font-family: PingFangSC, PingFang SC;
|
|||
|
|
font-weight: 500;
|
|||
|
|
font-size: 48rpx;
|
|||
|
|
color: #333333;
|
|||
|
|
line-height: 67rpx;
|
|||
|
|
text-align: left;
|
|||
|
|
font-style: normal;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.title-content {
|
|||
|
|
margin: 14rpx 0 0 195rpx;
|
|||
|
|
height: 42rpx;
|
|||
|
|
font-family: PingFangSC, PingFang SC;
|
|||
|
|
font-weight: 400;
|
|||
|
|
font-size: 30rpx;
|
|||
|
|
color: #666666;
|
|||
|
|
line-height: 42rpx;
|
|||
|
|
text-align: left;
|
|||
|
|
font-style: normal;
|
|||
|
|
}
|
|||
|
|
</style>
|