公司演示版e鹿悦游
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.
 
 
 
 
 
CjyTravel/subPageA/personcenter/aboutus.vue

87 lines
1.7 KiB

<template>
<view class="m-content">
<view class="mode_com">
<view class="dy_fx_clu">
<view class="guy_img">
<image :src="src" class="tup_size_160"></image>
</view>
<view class="fx_1">
<view class="abt_ht_text">
<!-- {{ name }}文旅APP -->
</view>
<view class="nr_cot">
E鹿悦游平台是专为鹿泉区旅游打造的综合性服务平台通过整合当地旅游资源提供在线预订智能导览信息查询等功能游客只需扫描一个二维码即可轻松获取吃娱等全方位服务实现一码在手畅游鹿泉的目的
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
name: this.$param.cityName,
src: this.$config.ROOTPATH + '/upload/image/2024/mapIcon/daolan/logo.png'
};
},
onLoad(options) {
if (options.isRedirect == '1') {
uni.switchTab({
url: '/pages/personcenter'
});
}
},
methods: {
goToPage: function (type) {
}
}
};
</script>
<style lang="scss" scoped>
@import url('/static/css/common.css');
page {
background: #fff;
}
.mode_com {
padding-top: 60rpx;
}
.m-content {
height: 100vh;
background: #F0F7FF;
position: relative;
&::after {
content: '';
width: 100%;
height: 300rpx;
position: absolute;
bottom: 0;
left: 0;
background-image: url("https://eluyou.ailuquan.cn/upload/image/2024/mapIcon/daolan/about-bg.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.tup_size_160{
height: 200rpx;
}
}
.nr_cot{text-indent: 80rpx;}
.tips {
font-family: Source Han Sans SC;
font-size: 24rpx;
color: #B5BDCA;
text-align: center;
margin-top: 200rpx;
}
</style>