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.
65 lines
1.7 KiB
65 lines
1.7 KiB
<template>
|
|
<view class="">
|
|
<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
|
|
<!-- <text>版本号:3.2.1</text> -->
|
|
</view>
|
|
<view class="nr_cot">
|
|
{{ name }}文旅是利用互联网、物联网、大数据、人工智能、融合5G技术打造的全域旅游智慧营销和管理平台,实现了
|
|
<text class="lgn_t_h1">“旅游全程智能化”</text>
|
|
。游客只需要用一部手机,就可以满足游前、游中、游后的旅游需求,为游客在 旅游信息获取、文化旅游行程规划、产品预订、游记分享、特产展示、投诉建议
|
|
等方面提供一站式智能化便捷服务。
|
|
</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: '../../static/images/' + this.$param.cityPy + '.png'
|
|
};
|
|
},
|
|
onLoad(options) {
|
|
if (options.isRedirect == '1') {
|
|
uni.switchTab({
|
|
url: '/pages/personcenter/personcenter'
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
goToPage:function(type){
|
|
if(type == "xieyi"){
|
|
uni.navigateTo({
|
|
url: '/pages/xieyi/xieyi'
|
|
});
|
|
}else if(type == "zhengce"){
|
|
uni.navigateTo({
|
|
url: '/pages/zhengce/zhengce'
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
@import url('../../static/css/common.css');
|
|
page {
|
|
background: #fff;
|
|
}
|
|
.mode_com{ padding-top:60rpx;}
|
|
</style>
|
|
|