account-settings.vue 570 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="setPass">
  3. <nav-bar title="账户设置" @click-left="$router.back()"/>
  4. <order-type-list :obj-cell="ObjCellLink" />
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. data () {
  10. return {
  11. ObjCellLink: {
  12. list: [
  13. {
  14. isLink: true,
  15. title: '修改密码',
  16. value: '',
  17. to: '/forgotPW'
  18. }
  19. ],
  20. isInset: false,
  21. top: '15vw'
  22. }
  23. }
  24. }
  25. }
  26. </script>
  27. <style scoped lang="scss">
  28. .setPass {
  29. min-height: 100vh;
  30. background: #fff;
  31. }
  32. </style>