From bd09ddbe5eae5e780393d37b72b4da6d4e92fdb8 Mon Sep 17 00:00:00 2001 From: LiuWenHaoU <964324856@qq.com> Date: Mon, 18 May 2020 00:15:17 +0800 Subject: [PATCH] 部分修改及新增功能 --- SunshineLnsMinApp/templeteDist/wuxDist/multi-picker-view/index.wxml | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/SunshineLnsMinApp/templeteDist/wuxDist/multi-picker-view/index.wxml b/SunshineLnsMinApp/templeteDist/wuxDist/multi-picker-view/index.wxml new file mode 100644 index 0000000..c144a1f --- /dev/null +++ b/SunshineLnsMinApp/templeteDist/wuxDist/multi-picker-view/index.wxml @@ -0,0 +1,26 @@ +<wux-spin nested spinning="{{ loading }}"> + <view class="wux-class {{ prefixCls }}" data-picker-value="{{ inputValue }}"> + <wux-picker-view + wx:for="{{ cols }}" + wx:for-item="col" + wx:key="index" + prefixCls="{{ pickerPrefixCls }}" + value="{{ inputValue[index] }}" + controlled + itemHeight="{{ itemHeight }}" + itemStyle="{{ itemStyle }}" + indicatorStyle="{{ indicatorStyle }}" + indicatorClass="{{ indicatorClass }}" + maskStyle="{{ maskStyle }}" + maskClass="{{ maskClass }}" + labelAlign="{{ labelAlign }}" + defaultFieldNames="{{ fieldNames }}" + options="{{ col }}" + data-index="{{ index }}" + style="{{ 'width: ' + 100 / cols.length + '%' }}" + bind:beforeChange="onBeforeChange" + bind:valueChange="onValueChange" + bind:scrollChange="onScrollChange" + /> + </view> +</wux-spin> \ No newline at end of file -- Gitblit v1.8.0