safe-manage.vue 807 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="safe-manage">
  3. <custom-nav :title="title"></custom-nav>
  4. <view class="content">
  5. <!-- <navigator url="../change-bind/change-bind" class="app-item">
  6. <text>手机换绑</text>
  7. <text class="cuIcon-right"></text>
  8. </navigator> -->
  9. <navigator url="../address-manage/address-manage" class="app-item">
  10. <text>地址管理</text>
  11. <text class="cuIcon-right"></text>
  12. </navigator>
  13. <navigator url="../apply-return/apply-return" class="app-item">
  14. <text>申请退货</text>
  15. <text class="cuIcon-right"></text>
  16. </navigator>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. title: '安全中心'
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss">
  30. .safe-manage {
  31. @include page();
  32. }
  33. </style>