Index.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <a-card :bordered="false" :bodyStyle="{ padding: '16px 0', height: '100%' }" :style="{ height: '100%' }">
  3. <div class="account-settings-info-main" :class="device">
  4. <div class="account-settings-info-left">
  5. <a-menu
  6. :mode="device == 'mobile' ? 'horizontal' : 'inline'"
  7. :style="{ border: '0', width: device == 'mobile' ? '560px' : 'auto'}"
  8. :defaultSelectedKeys="defaultSelectedKeys"
  9. type="inner"
  10. @openChange="onOpenChange"
  11. >
  12. <a-menu-item key="/account/settings/base">
  13. <router-link :to="{ name: 'BaseSettings' }">
  14. 基本设置
  15. </router-link>
  16. </a-menu-item>
  17. <a-menu-item key="/account/settings/security">
  18. <router-link :to="{ name: 'SecuritySettings' }">
  19. 安全设置
  20. </router-link>
  21. </a-menu-item>
  22. <a-menu-item key="/account/settings/custom">
  23. <router-link :to="{ name: 'CustomSettings' }">
  24. 个性化
  25. </router-link>
  26. </a-menu-item>
  27. <a-menu-item key="/account/settings/binding">
  28. <router-link :to="{ name: 'BindingSettings' }">
  29. 账户绑定
  30. </router-link>
  31. </a-menu-item>
  32. <a-menu-item key="/account/settings/notification">
  33. <router-link :to="{ name: 'NotificationSettings' }">
  34. 新消息通知
  35. </router-link>
  36. </a-menu-item>
  37. </a-menu>
  38. </div>
  39. <div class="account-settings-info-right">
  40. <div class="account-settings-info-title">
  41. <span>{{ $route.meta.title }}</span>
  42. </div>
  43. <route-view></route-view>
  44. </div>
  45. </div>
  46. </a-card>
  47. </template>
  48. <script>
  49. import PageLayout from '@/components/layout/PageLayout'
  50. import RouteView from "@/components/layout/RouteView"
  51. import { mapState } from 'vuex'
  52. export default {
  53. components: {
  54. RouteView,
  55. PageLayout
  56. },
  57. data () {
  58. return {
  59. // horizontal inline
  60. mode: 'inline',
  61. openKeys: [],
  62. defaultSelectedKeys: [],
  63. // cropper
  64. preview: {},
  65. option: {
  66. img: '/avatar2.jpg',
  67. info: true,
  68. size: 1,
  69. outputType: 'jpeg',
  70. canScale: false,
  71. autoCrop: true,
  72. // 只有自动截图开启 宽度高度才生效
  73. autoCropWidth: 180,
  74. autoCropHeight: 180,
  75. fixedBox: true,
  76. // 开启宽度和高度比例
  77. fixed: true,
  78. fixedNumber: [1, 1]
  79. },
  80. pageTitle: ''
  81. }
  82. },
  83. computed: {
  84. ...mapState({
  85. device: state => state.app.device,
  86. })
  87. },
  88. created () {
  89. this.updateMenu()
  90. },
  91. methods: {
  92. onOpenChange (openKeys) {
  93. this.openKeys = openKeys
  94. },
  95. updateMenu () {
  96. let routes = this.$route.matched.concat()
  97. this.defaultSelectedKeys = [ routes.pop().path ]
  98. }
  99. },
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .account-settings-info-main {
  104. width: 100%;
  105. display: flex;
  106. height: 100%;
  107. overflow: auto;
  108. &.mobile {
  109. display: block;
  110. .account-settings-info-left {
  111. border-right: unset;
  112. border-bottom: 1px solid #e8e8e8;
  113. width: 100%;
  114. height: 48px;
  115. overflow-x: hidden;
  116. overflow-y: auto;
  117. }
  118. .account-settings-info-right {
  119. padding: 20px 40px;
  120. }
  121. }
  122. .account-settings-info-left {
  123. border-right: 1px solid #e8e8e8;
  124. width: 224px;
  125. }
  126. .account-settings-info-right {
  127. flex: 1 1;
  128. padding: 8px 40px;
  129. .account-settings-info-title {
  130. color: rgba(0,0,0,.85);
  131. font-size: 20px;
  132. font-weight: 500;
  133. line-height: 28px;
  134. margin-bottom: 12px;
  135. }
  136. .account-settings-info-view {
  137. padding-top: 12px;
  138. }
  139. }
  140. }
  141. </style>