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.
87 lines
1.7 KiB
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.reLaunch({
|
|
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>
|
|
|