index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <div>
  3. <div
  4. class="navigator-container"
  5. ref="navigato">
  6. <ul
  7. class="tab-list"
  8. ref="tabList">
  9. <li class="tab-item"
  10. :class="{'link-avtive': $route.name === item.routeName}"
  11. v-for="(item, index) in navList"
  12. :key="index"
  13. @click="_selectNav(item)">
  14. <img
  15. :src="$route.name === item.routeName ? item.active : item.default"
  16. alt="">
  17. <p class="tab-name">{{ item.title }}</p>
  18. </li>
  19. </ul>
  20. </div>
  21. <keep-alive>
  22. <router-view v-if="$route.meta.keepAlive"/>
  23. </keep-alive>
  24. <router-view v-if="!$route.meta.keepAlive"/>
  25. </div>
  26. </template>
  27. <script>
  28. import BScroll from 'better-scroll'
  29. export default {
  30. data () {
  31. return {
  32. currentTabIndex: 0, // 当前默认tab
  33. scroll: null,
  34. navList: [
  35. {
  36. id: 0,
  37. title: '省钱',
  38. default: require('./image/ic_save_0@2x.png'),
  39. active: require('./image/ic_save_1@2x.png'),
  40. routeName: 'MarketingSave'
  41. },
  42. {
  43. id: 1,
  44. title: '返钱',
  45. default: require('./image/ic_return_0@2x.png'),
  46. active: require('./image/ic_return_1@2x.png'),
  47. routeName: 'MarketingReturn'
  48. },
  49. {
  50. id: 2,
  51. title: '赚钱',
  52. default: require('./image/ic_make_0@2x.png'),
  53. active: require('./image/ic_make_1@2x.png'),
  54. routeName: 'MarketingMake'
  55. }
  56. ]
  57. }
  58. },
  59. mounted () {
  60. this.funInitBScroll(0)
  61. this._initTabListWidth()
  62. const timer = setTimeout(() => {
  63. clearTimeout(timer)
  64. this._adjust(this.currentTabIndex)
  65. }, 500)
  66. },
  67. activated () {
  68. if (this.$route.meta.isUseCache) {
  69. if (this.scroll) {
  70. this.scroll.refresh()
  71. }
  72. }
  73. },
  74. methods: {
  75. funInitBScroll (index) {
  76. const options = {
  77. probeType: 1,
  78. click: true,
  79. startX: this.initTranslate(index),
  80. scrollY: false,
  81. scrollX: true,
  82. scrollbar: false,
  83. startY: 0,
  84. freeScroll: false,
  85. mouseWheel: true,
  86. bounce: true,
  87. zoom: false
  88. }
  89. this.scroll = new BScroll(this.$refs.navigato, options)
  90. },
  91. _selectNav (item) {
  92. if (item === undefined) {
  93. return
  94. }
  95. // this.$emit('funChange', item.id)
  96. this.$router.replace({ name: item.routeName })
  97. },
  98. selectNav (item) {
  99. if (item === undefined) {
  100. return
  101. }
  102. this.currentTabIndex = item.id
  103. this._adjust(item.id)
  104. },
  105. _initTabListWidth () {
  106. const tabList = this.$refs.tabList
  107. const items = tabList.children
  108. let width = 0
  109. for (let i = 0; i < items.length; i++) {
  110. width += items[i].clientWidth
  111. }
  112. tabList.style.width = (width + 1) + 'px'
  113. },
  114. initTranslate (tabId) {
  115. const viewportWidth = this.$refs.navigato.clientWidth
  116. const tabListWidth = this.$refs.tabList.clientWidth
  117. const minTranslate = Math.min(0, viewportWidth - tabListWidth)
  118. const middleTranslate = viewportWidth / 2
  119. const items = this.$refs.tabList.children
  120. let width = 0
  121. this.navList.every((item, index) => {
  122. if (item.id === tabId) {
  123. return false
  124. }
  125. width += items[index].clientWidth
  126. return true
  127. })
  128. let translate = middleTranslate - width
  129. translate = Math.max(minTranslate, Math.min(0, translate))
  130. return translate
  131. },
  132. // 导航类目超过一屏在使用
  133. _adjust (tabId) {
  134. this.scroll.scrollTo(this.initTranslate(tabId), 0, 300)
  135. }
  136. },
  137. beforeRouteLeave (to, from, next) {
  138. if (['Mine'].findIndex(item => item === to.name) > -1) {
  139. from.meta.isUseCache = true
  140. }
  141. next()
  142. }
  143. }
  144. </script>
  145. <style lang='scss' scoped>
  146. .navigator-container {
  147. width: 100%;
  148. padding: 10px 0;
  149. white-space: nowrap;
  150. overflow: hidden;
  151. .tab-list {
  152. font-size: 0;
  153. }
  154. .tab-item {
  155. display: inline-block;
  156. width: 125px;
  157. height: 36px;
  158. text-align: center;
  159. vertical-align: middle;
  160. font-size: 0;
  161. &.link-avtive {
  162. img {
  163. width: 36px;
  164. height: 36px;
  165. }
  166. p {
  167. font-size: 26px;
  168. color: #1F314A;
  169. }
  170. }
  171. img {
  172. display: inline-block;
  173. vertical-align: middle;
  174. width: 24px;
  175. height: 24px;
  176. }
  177. p {
  178. display: inline-block;
  179. vertical-align: middle;
  180. font-size: 14px;
  181. color: #8B8B8B;
  182. line-height: 36px;
  183. }
  184. }
  185. }
  186. </style>