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.
64 lines
1.2 KiB
64 lines
1.2 KiB
<template>
|
|
<view class="warp">
|
|
<view class="top_txt">
|
|
恭喜您受邀成为 <text>{{companyName}}</text> 公司外租伙伴!请长按下方二维码,关注众能云车公众号以方便接单,预祝我们合作愉快!
|
|
</view>
|
|
<view class="gzh_css">
|
|
<image show-menu-by-longpress src="/static/images/common/gzh.jpg"></image>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
companyName:'',
|
|
};
|
|
},
|
|
onLoad() {
|
|
this.companyName = uni.getStorageSync("userCompany").companyName;
|
|
},
|
|
onShow() {
|
|
uni.hideHomeButton();
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.warp{
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.top_txt{
|
|
width: 600rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
font-size: 29rpx;
|
|
line-height:45rpx;
|
|
color: #555555;
|
|
text{
|
|
color: red;
|
|
margin-left: 15rpx;
|
|
}
|
|
}
|
|
.gzh_css{
|
|
width: 407rpx;
|
|
height: 407rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1rpx solid #efefef;
|
|
margin-top:100rpx;
|
|
image{
|
|
height: 400rpx;
|
|
width: 400rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|