公司演示版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

100 lines
2.1 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 class="bot_about_k an_t_2">
查看
<view @tap="goToPage('xieyi')" class="t_col_1">用户协议</view>
<view @tap="goToPage('zhengce')" class="t_col_1">隐私政策</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) {
if (type == "xieyi") {
uni.navigateTo({
url: '/subPageA/xieyi/xieyi'
});
} else if (type == "zhengce") {
uni.navigateTo({
url: '/subPageA/zhengce/zhengce'
});
}
}
}
};
</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("http://192.168.130.205:8083/upload/image/2024/mapIcon/daolan/about-bg.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.tup_size_160{
height: 200rpx;
}
}
.tips {
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 24rpx;
color: #B5BDCA;
text-align: center;
margin-top: 200rpx;
}
</style>