setting.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view>
  3. <view class="cmd">
  4. <!-- <view class="s_item" @click="go('')">
  5. <text class="title">账号信息</text>
  6. <text class="icon arrow">&#xe8f2;</text>
  7. </view>
  8. <view class="s_item" @click="go('')">
  9. <text class="title">通用</text>
  10. <text class="icon arrow">&#xe8f2;</text>
  11. </view>
  12. <view class="s_item" @click="go('')">
  13. <text class="title">消息通知</text>
  14. <text class="icon arrow">&#xe8f2;</text>
  15. </view>
  16. <view class="s_item" @click="go('')">
  17. <text class="title">帮助与反馈</text>
  18. <text class="icon arrow">&#xe8f2;</text>
  19. </view> -->
  20. <view class="s_item" @click="go('/pages/personal/editPassword')">
  21. <text class="title">修改密码</text>
  22. <text class="icon arrow">&#xe8f2;</text>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. go(url) {
  35. uni.navigateTo({ url: url });
  36. },
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. page {
  42. background-color: $pg;
  43. }
  44. </style>