wxc-tab-page

Weex tab 页面滑动切换组件

随手滑动的效果依赖于 BindingX 特性,使用前请确定你的App 是否安装

0.6.1 版本新增 沉浸式全屏的 FullPage 效果的 tabPage,详细可见下面文档。

规则

  • 允许对头部进行配置,支持 Binding 手势跟随效果
  • 常用于 Tab 切换页面,目前支持icon、text、iconFont形式的顶栏,详细可见config.js
  • Android 由于 点击事件和滑动手势冲突约束,需在子元素上绑定对应事件,可通过wxc-pan-item解决此问题,同时记得在wxcPanItemPan回调中处理 Android 事件
  • 支持居中形式 Tab,将 tabStyles 中的 leftOffset 配置合适的值即可

    Demo

wxc-tab-page 顶部标签页 - 图1 wxc-tab-page 顶部标签页 - 图2; wxc-tab-page 顶部标签页 - 图3 wxc-tab-page 顶部标签页 - 图4

使用方法

  1. <template>
  2. <wxc-tab-page ref="wxc-tab-page"
  3. :tab-titles="tabTitles"
  4. :tab-styles="tabStyles"
  5. title-type="icon"
  6. :tab-page-height="tabPageHeight"
  7. @wxcTabPageCurrentTabSelected="wxcTabPageCurrentTabSelected">
  8. <list v-for="(v,index) in tabList"
  9. :key="index"
  10. class="item-container"
  11. :style="{ height: (tabPageHeight - tabStyles.height) + 'px' }">
  12. <cell class="border-cell"></cell>
  13. <cell v-for="(demo,key) in v"
  14. class="cell"
  15. :key="key">
  16. <wxc-pan-item :ext-id="'1-' + (v) + '-' + (key)"
  17. url="https://h5.m.taobao.com/trip/ticket/detail/index.html?scenicId=2675"
  18. @wxcPanItemPan="wxcPanItemPan">
  19. <div class="content">
  20. <text>{{key}}</text>
  21. </div>
  22. </wxc-pan-item>
  23. </cell>
  24. </list>
  25. </wxc-tab-page>
  26. </template>
  27. <style scoped>
  28. .item-container {
  29. width: 750px;
  30. background-color: #f2f3f4;
  31. }
  32. .border-cell {
  33. background-color: #f2f3f4;
  34. width: 750px;
  35. height: 24px;
  36. align-items: center;
  37. justify-content: center;
  38. border-bottom-width: 1px;
  39. border-style: solid;
  40. border-color: #e0e0e0;
  41. }
  42. .cell {
  43. background-color: #ffffff;
  44. }
  45. .content{
  46. width:750px;
  47. height:300px;
  48. border-bottom-width:1px;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. </style>
  53. <script>
  54. const dom = weex.requireModule('dom');
  55. import { WxcTabPage, WxcPanItem, Utils, BindEnv } from 'weex-ui';
  56. // https://github.com/alibaba/weex-ui/blob/master/example/tab-page/config.js
  57. import Config from './config'
  58. export default {
  59. components: { WxcTabPage, WxcPanItem },
  60. data: () => ({
  61. tabTitles: Config.tabTitles,
  62. tabStyles: Config.tabStyles,
  63. tabList: [],
  64. demoList: [1, 2, 3, 4, 5, 6, 7, 8, 9],
  65. tabPageHeight: 1334
  66. }),
  67. created () {
  68. this.tabPageHeight = Utils.env.getPageHeight();
  69. this.tabList = [...Array(this.tabTitles.length).keys()].map(i => []);
  70. Vue.set(this.tabList, 0, this.demoList);
  71. },
  72. methods: {
  73. wxcTabPageCurrentTabSelected (e) {
  74. const self = this;
  75. const index = e.page;
  76. /* Unloaded tab analog data request */
  77. if (!Utils.isNonEmptyArray(self.tabList[index])) {
  78. setTimeout(() => {
  79. Vue.set(self.tabList, index, self.demoList);
  80. }, 100);
  81. }
  82. },
  83. wxcPanItemPan (e) {
  84. if (BindEnv.supportsEBForAndroid()) {
  85. this.$refs['wxc-tab-page'].bindExp(e.element);
  86. }
  87. }
  88. }
  89. };
  90. </script>

更详细代码可以参考 demo

可配置参数

Prop Type Required Default Description
tab-titles Array Y [] 顶部 显示配置
title-type String N icon 顶部类型 icon/text/iconFont (注1)
tab-styles Array N [] 顶部 样式配置
tab-page-height Number N 1334 Tab page 页面的高度
is-tab-view Boolean N true 当设置为false,同时 tab 配置 url 参数即可跳出
pan-dist Number N 200 滚动多少切换上下一屏幕
duration Number N 300 页面切换动画的时间
timing-function String N - 页面切换动画函数
title-use-slot Boolean N false 使用 slot 配置头部导航 (注2)
wrap-bg-color String N #F2F3F4 页面背景颜色
need-slider Boolean N true 设置是否可以手势滑动

注1:使用 iconFont

  • 在 Weex Ui 0.3.8以后,我们可以使用 iconFont 来代替原有 tab title 中的图片配置,像下面这个配置即可:
    1. // https://github.com/alibaba/weex-ui/blob/master/example/tab-bar/config.js#L67
    2. // '&#xe608;' -> '\ue608'
    3. tabTitles: [
    4. {
    5. title: 'Home',
    6. codePoint: '\ue608'
    7. },
    8. {
    9. title: 'Message',
    10. codePoint: '\ue752',
    11. badge: 5
    12. }
    13. // ....
    14. ],
    15. // https://github.com/alibaba/weex-ui/blob/master/example/tab-page/config.js#L87
    16. tabIconFontStyles: {
    17. bgColor: '#FFFFFF',
    18. titleColor: '#666666',
    19. activeTitleColor: '#3D3D3D',
    20. activeBgColor: '#FFFFFF',
    21. isActiveTitleBold: true,
    22. width: 160,
    23. height: 120,
    24. fontSize: 24,
    25. textPaddingLeft: 10,
    26. textPaddingRight: 10,
    27. iconFontSize: 50,
    28. iconFontMarginBottom: 8,
    29. iconFontColor: '#333333',
    30. activeIconFontColor: 'red',
    31. iconFontUrl: '//at.alicdn.com/t/font_501019_mauqv15evc1pp66r.ttf'
    32. }

注1:自定义头部导航块

  • 当使用slot的方式配置头部导航的时候,需要确保原有简单配置已经不能满足现有需求情况下再使用,可以传入参数:title-use-slot="true",同时在wxc-tab-page组件内部传入如下slot对应节点即可
  • 可以通过遍历到方式来生成,同时根据wxcTabPageCurrentTabSelected来确定当前的选择页,自己管理颜色即可。
    111

    222

    333
    Click to copy

主动触发设置页面

  1. // 直接在wxc-tab-page上面绑定ref="wxc-tab-page",然后调用即可
  2. this.$refs['wxc-tab-page'].setPage(2)
  3. // 如果想设置无动画跳转,可以这样使用(中间参数用于设置url,设置null即可)
  4. this.$refs['wxc-tab-page'].setPage(2,null,false);

事件回调

  1. @wxcTabPageCurrentTabSelected="wxcTabPageCurrentTabSelected"

沉浸式全屏的 FullPage 的使用

  • 引入:import { WxcFullPage} from 'weex-ui';
  • 参数形式和 wxcTabPage 保持一致,详细可见 【demo】
  • 建议隐藏头部导航栏使用,同时可以结合 wxc-slide-nav 使用

    wxc-pan-item 的使用

weex-ui V0.6.0 版本以上,为了减少打包体积,Binding 相关判断由 Utils.env 转移到 BindEnv

参数

Prop Type Required Default Description
url String N - url跳转链接,自己处理可以不传

使用

  1. // 组件使用
  2. <wxc-pan-item
  3. :url="url"
  4. @wxcPanItemClicked="wxcPanItemClicked"
  5. @wxcPanItemPan="wxcPanItemPan">
  6. <your-item>....</your-item>
  7. </pan-item>
  8. // 引用
  9. import { WxcPanItem, BindEnv } from 'weex-ui';
  10. //回调
  11. wxcPanItemPan (e) {
  12. if (BindEnv.supportsEBForAndroid()) {
  13. this.$refs['wxc-tab-page'].bindExp(e.element);
  14. }
  15. }

Please feel free to use and contribute to the development.

原文: https://alibaba.github.io/weex-ui/#/cn/packages/wxc-tab-page/