1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view class="page">
- <navBar title="其他信息" :back="true" color="black" background="white" />
- <view class="content">
- <view class="item" style="border-radius: 0rpx 0rpx 0rpx 24rpx;">
- <navigator url="/pages/my/feedBack/index" style="border-bottom:2rpx solid #E6E6E6 ;">
- <view class="line">
- <view class="left">
- 用户反馈
- </view>
- <view class="right">
- <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
- </view>
- </view>
- </navigator>
- <navigator url="/pages/my/useLead/index" style="border-bottom:2rpx solid #E6E6E6 ;">
- <view class="line">
- <view class="left">
- 使用指南
- </view>
- <view class="right">
- <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
- </view>
- </view>
- </navigator>
- <navigator url="/pages/my/aboutMe/index" style="border-bottom:2rpx solid #E6E6E6 ;">
- <view class="line">
- <view class="left">
- 关于我们
- </view>
- <view class="right">
- <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
- </view>
- </view>
- </navigator>
- <navigator url="/pages/my/protocol/index?type=用户" style="border-bottom:2rpx solid #E6E6E6 ;">
- <!-- <view class="line" @click="toPage('/pages/my/protocol/index?type=用户')"> -->
- <view class="line">
- <view class="left">
- 用户协议
- </view>
- <view class="right">
- <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
- </view>
- </view>
- </navigator>
- <navigator url="/pages/my/protocol/index?type=隐私" style="">
- <!-- <view class="line" @click="toPage('/pages/my/protocol/index?type=隐私')"> -->
- <view class="line">
- <view class="left">
- 隐私协议
- </view>
- <view class="right">
- <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
- </view>
- </view>
- </navigator>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- value: 0,
- value1: 0,
- value2: 0,
- }
- },
- onLoad(options) {},
- methods: {
- toPage(url) {
- uni.navigateTo({
- url
- })
- },
- change() {
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "./index.scss";
- </style>
|