index.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="page">
  3. <navBar title="其他信息" :back="true" color="black" background="white" />
  4. <view class="content">
  5. <view class="item" style="border-radius: 0rpx 0rpx 0rpx 24rpx;">
  6. <navigator url="/pages/my/feedBack/index" style="border-bottom:2rpx solid #E6E6E6 ;">
  7. <view class="line">
  8. <view class="left">
  9. 用户反馈
  10. </view>
  11. <view class="right">
  12. <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
  13. </view>
  14. </view>
  15. </navigator>
  16. <navigator url="/pages/my/useLead/index" style="border-bottom:2rpx solid #E6E6E6 ;">
  17. <view class="line">
  18. <view class="left">
  19. 使用指南
  20. </view>
  21. <view class="right">
  22. <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
  23. </view>
  24. </view>
  25. </navigator>
  26. <navigator url="/pages/my/aboutMe/index" style="border-bottom:2rpx solid #E6E6E6 ;">
  27. <view class="line">
  28. <view class="left">
  29. 关于我们
  30. </view>
  31. <view class="right">
  32. <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
  33. </view>
  34. </view>
  35. </navigator>
  36. <navigator url="/pages/my/protocol/index?type=用户" style="border-bottom:2rpx solid #E6E6E6 ;">
  37. <!-- <view class="line" @click="toPage('/pages/my/protocol/index?type=用户')"> -->
  38. <view class="line">
  39. <view class="left">
  40. 用户协议
  41. </view>
  42. <view class="right">
  43. <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
  44. </view>
  45. </view>
  46. </navigator>
  47. <navigator url="/pages/my/protocol/index?type=隐私" style="">
  48. <!-- <view class="line" @click="toPage('/pages/my/protocol/index?type=隐私')"> -->
  49. <view class="line">
  50. <view class="left">
  51. 隐私协议
  52. </view>
  53. <view class="right">
  54. <image src="/static/my/arr_r.png" mode="" style="width: 14rpx;height: 24rpx;"></image>
  55. </view>
  56. </view>
  57. </navigator>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. components: {
  65. },
  66. data() {
  67. return {
  68. value: 0,
  69. value1: 0,
  70. value2: 0,
  71. }
  72. },
  73. onLoad(options) {},
  74. methods: {
  75. toPage(url) {
  76. uni.navigateTo({
  77. url
  78. })
  79. },
  80. change() {
  81. }
  82. }
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. @import "./index.scss";
  87. </style>