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.
68 lines
2.3 KiB
68 lines
2.3 KiB
<template>
|
|
<view class="page flex-col" style="position: fixed;">
|
|
<view class="block_1 flex-col">
|
|
|
|
<view class="box_2 flex-col">
|
|
<view class="section_1 flex-row justify-between" @tap="go1(10)">
|
|
<text class="text_2">关于我们</text>
|
|
<image class="icon_2" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/629cd5d8e0502b98fb02fd7701c70284.png" />
|
|
</view>
|
|
<image class="image_2" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/73a2486534adaaa370786aef3886b577.png" />
|
|
<view class="section_2 flex-row justify-between" @tap="go1(11)">
|
|
<text class="text_3">用户协议</text>
|
|
<image class="icon_3" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/dd1c93766e76f4398c8684093f13809f.png" />
|
|
</view>
|
|
<image class="image_3" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/54d2af70c58663bbfa314752d976f178.png" />
|
|
<view class="section_3 flex-row justify-between" @tap="go1(12)">
|
|
<text class="text_4">服务协议</text>
|
|
<image class="icon_4" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/94d53dbe993ceb2292d31a0f5878cc10.png" />
|
|
</view>
|
|
<image class="image_4" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/4e877eda14f2191839ec4aa592fa239f.png" />
|
|
<view class="section_4 flex-row justify-between" @tap="go1(13)">
|
|
<text class="text_5">隐私政策</text>
|
|
<image class="icon_5" referrerpolicy="no-referrer"
|
|
src="/static/lanhu_guanyuwomen/447dcab6fa9ceb6c58ff8bbd4dbd7c5f.png" />
|
|
</view>
|
|
</view>
|
|
<!-- <view class="box_3 flex-col">
|
|
<button class="button_1 flex-col" @click="onClick_1">
|
|
<text class="text_6">退出登录</text>
|
|
</button>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
constants: {}
|
|
};
|
|
},
|
|
onLoad(options) {
|
|
uni.setNavigationBarColor({
|
|
backgroundColor: '#802931', // 背景颜色
|
|
frontColor: '#ffffff' // 前景颜色(包括标题、返回图标等)
|
|
})
|
|
|
|
},
|
|
methods: {
|
|
|
|
go1(id) {
|
|
uni.navigateTo({
|
|
url: '/pages/lanhu_zhuantixiangqing/index?id=' + id
|
|
});
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
<style lang='css'>
|
|
@import '../common/common.css';
|
|
@import './assets/style/index.rpx.css';
|
|
</style> |