u-tabs.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <template>
  2. <view class="u-tabs" :style="{
  3. background: bgColor
  4. }">
  5. <!-- $u.getRect()对组件根节点无效,因为写了.in(this),故这里获取内层接点尺寸 -->
  6. <view :id="id">
  7. <scroll-view scroll-x class="u-scroll-view" :scroll-left="scrollLeft" scroll-with-animation>
  8. <view class="u-scroll-box" :class="{'u-tabs-scorll-flex': !isScroll}">
  9. <view class="u-tab-item u-line-1" :id="'u-tab-item-' + index" v-for="(item, index) in list" :key="index" @tap="clickTab(index)"
  10. :style="[tabItemStyle(index)]">
  11. {{ item[name] || item['name']}}
  12. </view>
  13. <view v-if="showBar" class="u-tab-bar" :style="[tabBarStyle]"></view>
  14. </view>
  15. </scroll-view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. /**
  21. * tabs 标签
  22. * @description 该组件,是一个tabs标签组件,在标签多的时候,可以配置为左右滑动,标签少的时候,可以禁止滑动。 该组件的一个特点是配置为滚动模式时,激活的tab会自动移动到组件的中间位置。
  23. * @tutorial https://www.uviewui.com/components/tabs.html
  24. * @property {Boolean} is-scroll tabs是否可以左右拖动(默认true)
  25. * @property {Array} list 标签数组,元素为对象,如[{name: '推荐'}]
  26. * @property {String Number} current 指定哪个tab为激活状态(默认0)
  27. * @property {String Number} height 导航栏的高度,单位rpx(默认80)
  28. * @property {String Number} font-size tab文字大小,单位rpx(默认30)
  29. * @property {String Number} duration 滑块移动一次所需的时间,单位秒(默认0.5)
  30. * @property {String} active-color 滑块和激活tab文字的颜色(默认#2979ff)
  31. * @property {String} inactive-color tabs文字颜色(默认#303133)
  32. * @property {String Number} bar-width 滑块宽度,单位rpx(默认40)
  33. * @property {Object} active-item-style 活动tabs item的样式,对象形式
  34. * @property {Object} bar-style 底部滑块的样式,对象形式
  35. * @property {Boolean} show-bar 是否显示底部的滑块(默认true)
  36. * @property {String Number} bar-height 滑块高度,单位rpx(默认6)
  37. * @property {String Number} item-width 标签的宽度(默认auto)
  38. * @property {String Number} gutter 单个tab标签的左右内边距之和,单位rpx(默认40)
  39. * @property {String} bg-color tabs导航栏的背景颜色(默认#ffffff)
  40. * @property {String} name 组件内部读取的list参数中的属性名,见官网说明(默认name)
  41. * @property {Boolean} bold 激活选项的字体是否加粗(默认true)
  42. * @event {Function} change 点击标签时触发
  43. * @example <u-tabs ref="tabs" :list="list" :is-scroll="false"></u-tabs>
  44. */
  45. export default {
  46. name: "u-tabs",
  47. props: {
  48. // 导航菜单是否需要滚动,如只有2或者3个的时候,就不需要滚动了,此时使用flex平分tab的宽度
  49. isScroll: {
  50. type: Boolean,
  51. default: true
  52. },
  53. //需循环的标签列表
  54. list: {
  55. type: Array,
  56. default () {
  57. return [];
  58. }
  59. },
  60. // 当前活动tab的索引
  61. current: {
  62. type: [Number, String],
  63. default: 0
  64. },
  65. // 导航栏的高度和行高
  66. height: {
  67. type: [String, Number],
  68. default: 80
  69. },
  70. // 字体大小
  71. fontSize: {
  72. type: [String, Number],
  73. default: 30
  74. },
  75. // 过渡动画时长, 单位ms
  76. duration: {
  77. type: [String, Number],
  78. default: 0.5
  79. },
  80. // 选中项的主题颜色
  81. activeColor: {
  82. type: String,
  83. default: '#2979ff'
  84. },
  85. // 未选中项的颜色
  86. inactiveColor: {
  87. type: String,
  88. default: '#303133'
  89. },
  90. // 菜单底部移动的bar的宽度,单位rpx
  91. barWidth: {
  92. type: [String, Number],
  93. default: 40
  94. },
  95. // 移动bar的高度
  96. barHeight: {
  97. type: [String, Number],
  98. default: 6
  99. },
  100. // 单个tab的左或有内边距(左右相同)
  101. gutter: {
  102. type: [String, Number],
  103. default: 30
  104. },
  105. // 导航栏的背景颜色
  106. bgColor: {
  107. type: String,
  108. default: '#ffffff'
  109. },
  110. // 读取传入的数组对象的属性
  111. name: {
  112. type: String,
  113. default: 'name'
  114. },
  115. // 活动tab字体是否加粗
  116. bold: {
  117. type: Boolean,
  118. default: true
  119. },
  120. // 当前活动tab item的样式
  121. activeItemStyle: {
  122. type: Object,
  123. default() {
  124. return {}
  125. }
  126. },
  127. // 是否显示底部的滑块
  128. showBar: {
  129. type: Boolean,
  130. default: true
  131. },
  132. // 底部滑块的自定义样式
  133. barStyle: {
  134. type: Object,
  135. default() {
  136. return {}
  137. }
  138. },
  139. // 标签的宽度
  140. itemWidth: {
  141. type: [Number, String],
  142. default: 'auto'
  143. }
  144. },
  145. data() {
  146. return {
  147. scrollLeft: 0, // 滚动scroll-view的左边滚动距离
  148. tabQueryInfo: [], // 存放对tab菜单查询后的节点信息
  149. componentWidth: 0, // 屏幕宽度,单位为px
  150. scrollBarLeft: 0, // 移动bar需要通过translateX()移动的距离
  151. parentLeft: 0, // 父元素(tabs组件)到屏幕左边的距离
  152. id: this.$u.guid(), // id值
  153. currentIndex: this.current,
  154. barFirstTimeMove: true, // 滑块第一次移动时(页面刚生成时),无需动画,否则给人怪异的感觉
  155. };
  156. },
  157. watch: {
  158. // 监听tab的变化,重新计算tab菜单的布局信息,因为实际使用中菜单可能是通过
  159. // 后台获取的(如新闻app顶部的菜单),获取返回需要一定时间,所以list变化时,重新获取布局信息
  160. list(n, o) {
  161. // list变动时,重制内部索引,否则可能导致超出数组边界的情况
  162. if(n.length !== o.length) this.currentIndex = 0;
  163. // 用$nextTick等待视图更新完毕后再计算tab的局部信息,否则可能因为tab还没生成就获取,就会有问题
  164. this.$nextTick(() => {
  165. this.init();
  166. });
  167. },
  168. current: {
  169. immediate: true,
  170. handler(nVal, oVal) {
  171. // 视图更新后再执行移动操作
  172. this.$nextTick(() => {
  173. this.currentIndex = nVal;
  174. this.scrollByIndex();
  175. });
  176. }
  177. },
  178. },
  179. computed: {
  180. // 移动bar的样式
  181. tabBarStyle() {
  182. let style = {
  183. width: this.barWidth + 'rpx',
  184. transform: `translate(${this.scrollBarLeft}px, -100%)`,
  185. // 滑块在页面渲染后第一次滑动时,无需动画效果
  186. 'transition-duration': `${this.barFirstTimeMove ? 0 : this.duration }s`,
  187. 'background-color': this.activeColor,
  188. height: this.barHeight + 'rpx',
  189. // 设置一个很大的值,它会自动取能用的最大值,不用高度的一半,是因为高度可能是单数,会有小数出现
  190. 'border-radius': `${this.barHeight / 2}px`
  191. };
  192. Object.assign(style, this.barStyle);
  193. return style;
  194. },
  195. // tab的样式
  196. tabItemStyle() {
  197. return (index) => {
  198. let style = {
  199. height: this.height + 'rpx',
  200. 'line-height': this.height + 'rpx',
  201. 'font-size': this.fontSize + 'rpx',
  202. 'transition-duration': `${this.duration}s`,
  203. padding: this.isScroll ? `0 ${this.gutter}rpx` : '',
  204. flex: this.isScroll ? 'auto' : '1',
  205. width: this.$u.addUnit(this.itemWidth)
  206. };
  207. // 字体加粗
  208. if (index == this.currentIndex && this.bold) style.fontWeight = 'bold';
  209. if (index == this.currentIndex) {
  210. style.color = this.activeColor;
  211. // 给选中的tab item添加外部自定义的样式
  212. style = Object.assign(style, this.activeItemStyle);
  213. } else {
  214. style.color = this.inactiveColor;
  215. }
  216. return style;
  217. }
  218. }
  219. },
  220. methods: {
  221. // 设置一个init方法,方便多处调用
  222. async init() {
  223. // 获取tabs组件的尺寸信息
  224. let tabRect = await this.$uGetRect('#' + this.id);
  225. // tabs组件距离屏幕左边的宽度
  226. this.parentLeft = tabRect.left;
  227. // tabs组件的宽度
  228. this.componentWidth = tabRect.width;
  229. this.getTabRect();
  230. },
  231. // 点击某一个tab菜单
  232. clickTab(index) {
  233. // 点击当前活动tab,不触发事件
  234. if(index == this.currentIndex) return ;
  235. // 发送事件给父组件
  236. this.$emit('change', index);
  237. },
  238. // 查询tab的布局信息
  239. getTabRect() {
  240. // 创建节点查询
  241. let query = uni.createSelectorQuery().in(this);
  242. // 历遍所有tab,这里是执行了查询,最终使用exec()会一次性返回查询的数组结果
  243. for (let i = 0; i < this.list.length; i++) {
  244. // 只要size和rect两个参数
  245. query.select(`#u-tab-item-${i}`).fields({
  246. size: true,
  247. rect: true
  248. });
  249. }
  250. // 执行查询,一次性获取多个结果
  251. query.exec(
  252. function(res) {
  253. this.tabQueryInfo = res;
  254. // 初始化滚动条和移动bar的位置
  255. this.scrollByIndex();
  256. }.bind(this)
  257. );
  258. },
  259. // 滚动scroll-view,让活动的tab处于屏幕的中间位置
  260. scrollByIndex() {
  261. // 当前活动tab的布局信息,有tab菜单的width和left(为元素左边界到父元素左边界的距离)等信息
  262. let tabInfo = this.tabQueryInfo[this.currentIndex];
  263. if (!tabInfo) return;
  264. // 活动tab的宽度
  265. let tabWidth = tabInfo.width;
  266. // 活动item的左边到tabs组件左边的距离,用item的left减去tabs的left
  267. let offsetLeft = tabInfo.left - this.parentLeft;
  268. // 将活动的tabs-item移动到屏幕正中间,实际上是对scroll-view的移动
  269. let scrollLeft = offsetLeft - (this.componentWidth - tabWidth) / 2;
  270. this.scrollLeft = scrollLeft < 0 ? 0 : scrollLeft;
  271. // 当前活动item的中点点到左边的距离减去滑块宽度的一半,即可得到滑块所需的移动距离
  272. let left = tabInfo.left + tabInfo.width / 2 - this.parentLeft;
  273. // 计算当前活跃item到组件左边的距离
  274. this.scrollBarLeft = left - uni.upx2px(this.barWidth) / 2;
  275. // 第一次移动滑块的时候,barFirstTimeMove为true,放到延时中将其设置false
  276. // 延时是因为scrollBarLeft作用于computed计算时,需要一个过程需,否则导致出错
  277. if(this.barFirstTimeMove == true) {
  278. setTimeout(() => {
  279. this.barFirstTimeMove = false;
  280. }, 100)
  281. }
  282. }
  283. },
  284. mounted() {
  285. this.init();
  286. }
  287. };
  288. </script>
  289. <style lang="scss" scoped>
  290. @import "../../libs/css/style.components.scss";
  291. view,
  292. scroll-view {
  293. box-sizing: border-box;
  294. }
  295. /* #ifndef APP-NVUE */
  296. ::-webkit-scrollbar,
  297. ::-webkit-scrollbar,
  298. ::-webkit-scrollbar {
  299. display: none;
  300. width: 0 !important;
  301. height: 0 !important;
  302. -webkit-appearance: none;
  303. background: transparent;
  304. }
  305. /* #endif */
  306. .u-scroll-box {
  307. position: relative;
  308. /* #ifdef MP-TOUTIAO */
  309. white-space: nowrap;
  310. /* #endif */
  311. }
  312. /* #ifdef H5 */
  313. // 通过样式穿透,隐藏H5下,scroll-view下的滚动条
  314. scroll-view ::v-deep ::-webkit-scrollbar {
  315. display: none;
  316. width: 0 !important;
  317. height: 0 !important;
  318. -webkit-appearance: none;
  319. background: transparent;
  320. }
  321. /* #endif */
  322. .u-scroll-view {
  323. width: 100%;
  324. white-space: nowrap;
  325. position: relative;
  326. }
  327. .u-tab-item {
  328. position: relative;
  329. /* #ifndef APP-NVUE */
  330. display: inline-block;
  331. /* #endif */
  332. text-align: center;
  333. transition-property: background-color, color;
  334. }
  335. .u-tab-bar {
  336. position: absolute;
  337. bottom: 0;
  338. }
  339. .u-tabs-scorll-flex {
  340. @include vue-flex;
  341. justify-content: space-between;
  342. }
  343. </style>