index.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <view class="van-picker custom-class">
  3. <!-- parse <template is="toolbar" v-if="toolbarPosition === 'top'" :data="showToolbar, cancelButtonText, title, confirmButtonText"></template> -->
  4. <block name="toolbar" v-if="toolbarPosition === 'top'">
  5. <view v-if="showToolbar" class="van-picker__toolbar van-hairline--top-bottom toolbar-class">
  6. <view class="van-picker__cancel" hover-class="van-picker__cancel--hover" hover-stay-time="70" data-type="cancel" @tap="emit">
  7. {{ cancelButtonText }}
  8. </view>
  9. <view v-if="title" class="van-picker__title van-ellipsis">{{ title }}</view>
  10. <view class="van-picker__confirm" hover-class="van-picker__confirm--hover" hover-stay-time="70" data-type="confirm" @tap="emit">
  11. {{ confirmButtonText }}
  12. </view>
  13. </view>
  14. </block>
  15. <view v-if="loading" class="van-picker__loading">
  16. <loading color="#1989fa" />
  17. </view>
  18. <view class="van-picker__columns" :style="'height: ' + itemHeight * visibleItemCount + 'px'" @touchmove.stop.prevent="noop">
  19. <picker-column
  20. class="van-picker__column"
  21. :data-index="index"
  22. custom-class="column-class"
  23. :value-key="valueKey"
  24. :initial-options="isSimple(columns) ? item : item.values"
  25. :default-index="item.defaultIndex || defaultIndex"
  26. :item-height="itemHeight"
  27. :visible-item-count="visibleItemCount"
  28. active-class="active-class"
  29. @change="onChange($event, { index })"
  30. v-for="(item, index) in isSimple(columns) ? [columns] : columns"
  31. :key="index"
  32. ></picker-column>
  33. <view class="van-picker__mask" :style="'background-size: 100% ' + (itemHeight * visibleItemCount - itemHeight) / 2 + 'px'" />
  34. <view class="van-picker__frame van-hairline--top-bottom" :style="'height: ' + itemHeight + 'px'" />
  35. </view>
  36. <!-- parse <template is="toolbar" v-if="toolbarPosition === 'bottom'" :data="showToolbar, cancelButtonText, title, confirmButtonText"></template> -->
  37. <block name="toolbar" v-if="false" v-if="toolbarPosition === 'bottom'">
  38. <view v-if="showToolbar" class="van-picker__toolbar van-hairline--top-bottom toolbar-class">
  39. <view class="van-picker__cancel" hover-class="van-picker__cancel--hover" hover-stay-time="70" data-type="cancel" @tap="emit">
  40. {{ cancelButtonText }}
  41. </view>
  42. <view v-if="title" class="van-picker__title van-ellipsis">{{ title }}</view>
  43. <view class="van-picker__confirm" hover-class="van-picker__confirm--hover" hover-stay-time="70" data-type="confirm" @tap="emit">
  44. {{ confirmButtonText }}
  45. </view>
  46. </view>
  47. </block>
  48. </view>
  49. </template>
  50. <script module="isSimple" lang="wxs">
  51. function isSimple(columns) {
  52. return columns.length && !columns[0].values;
  53. }
  54. module.exports = isSimple;
  55. </script>
  56. <script>
  57. 'use strict';
  58. import pickerColumn from '../picker-column/index';
  59. import loading from '../loading/index';
  60. var __assign =
  61. (this && this.__assign) ||
  62. function () {
  63. __assign =
  64. Object.assign ||
  65. function (t) {
  66. for (var s, i = 1, n = arguments.length; i < n; i++) {
  67. s = arguments[i];
  68. for (var p in s) {
  69. if (Object.prototype.hasOwnProperty.call(s, p)) {
  70. t[p] = s[p];
  71. }
  72. }
  73. }
  74. return t;
  75. };
  76. return __assign.apply(this, arguments);
  77. };
  78. Object.defineProperty(exports, '__esModule', {
  79. value: true
  80. });
  81. var component_1 = require('../common/component');
  82. var shared_1 = require('./shared');
  83. component_1.VantComponent({
  84. classes: ['active-class', 'toolbar-class', 'column-class'],
  85. props: __assign(__assign({}, shared_1.pickerProps), {
  86. valueKey: {
  87. type: String,
  88. value: 'text'
  89. },
  90. toolbarPosition: {
  91. type: String,
  92. value: 'top'
  93. },
  94. defaultIndex: {
  95. type: Number,
  96. value: 0
  97. },
  98. columns: {
  99. type: Array,
  100. value: [],
  101. observer: function (columns) {
  102. if (columns === void 0) {
  103. columns = [];
  104. }
  105. this.simple = columns.length && !columns[0].values;
  106. this.children = this.zpSelectAllComponents('.van-picker__column');
  107. if (Array.isArray(this.children) && this.children.length) {
  108. this.setColumns().catch(function () {});
  109. }
  110. }
  111. }
  112. }),
  113. beforeCreate: function () {
  114. this.children = [];
  115. },
  116. methods: {
  117. noop: function () {},
  118. setColumns: function () {
  119. var that = this;
  120. var data = this;
  121. var columns = this.simple
  122. ? [
  123. {
  124. values: data.columns
  125. }
  126. ]
  127. : data.columns;
  128. var stack = columns.map(function (column, index) {
  129. return that.setColumnValues(index, column.values);
  130. });
  131. return Promise.all(stack);
  132. },
  133. emit: function (event) {
  134. var type = event.currentTarget.dataset.type;
  135. if (this.simple) {
  136. this.$emit(type, {
  137. value: this.getColumnValue(0),
  138. index: this.getColumnIndex(0)
  139. });
  140. } else {
  141. this.$emit(type, {
  142. value: this.getValues(),
  143. index: this.getIndexes()
  144. });
  145. }
  146. },
  147. onChange: function (event) {
  148. if (this.simple) {
  149. this.$emit('change', {
  150. picker: this,
  151. value: this.getColumnValue(0),
  152. index: this.getColumnIndex(0)
  153. });
  154. } else {
  155. this.$emit('change', {
  156. picker: this,
  157. value: this.getValues(),
  158. index: event.currentTarget.dataset.index
  159. });
  160. }
  161. },
  162. // get column instance by index
  163. getColumn: function (index) {
  164. return this.children[index];
  165. },
  166. // get column value by index
  167. getColumnValue: function (index) {
  168. var column = this.getColumn(index);
  169. return column && column.getValue();
  170. },
  171. // set column value by index
  172. setColumnValue: function (index, value) {
  173. var column = this.getColumn(index);
  174. if (column == null) {
  175. return Promise.reject(new Error('setColumnValue: 对应列不存在'));
  176. }
  177. return column.setValue(value);
  178. },
  179. // get column option index by column index
  180. getColumnIndex: function (columnIndex) {
  181. return (this.getColumn(columnIndex) || {}).data.currentIndex;
  182. },
  183. // set column option index by column index
  184. setColumnIndex: function (columnIndex, optionIndex) {
  185. var column = this.getColumn(columnIndex);
  186. if (column == null) {
  187. return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
  188. }
  189. return column.setIndex(optionIndex);
  190. },
  191. // get options of column by index
  192. getColumnValues: function (index) {
  193. return (this.children[index] || {}).data.options;
  194. },
  195. // set options of column by index
  196. setColumnValues: function (index, options, needReset) {
  197. if (needReset === void 0) {
  198. needReset = true;
  199. }
  200. var column = this.children[index];
  201. if (column == null) {
  202. return Promise.reject(new Error('setColumnValues: 对应列不存在'));
  203. }
  204. var isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
  205. if (isSame) {
  206. return Promise.resolve();
  207. }
  208. return column
  209. .set({
  210. options: options
  211. })
  212. .then(function () {
  213. if (needReset) {
  214. column.setIndex(0);
  215. }
  216. });
  217. },
  218. // get values of all columns
  219. getValues: function () {
  220. return this.children.map(function (child) {
  221. return child.getValue();
  222. });
  223. },
  224. // set values of all columns
  225. setValues: function (values) {
  226. var that = this;
  227. var stack = values.map(function (value, index) {
  228. return that.setColumnValue(index, value);
  229. });
  230. return Promise.all(stack);
  231. },
  232. // get indexes of all columns
  233. getIndexes: function () {
  234. return this.children.map(function (child) {
  235. return child.data.currentIndex;
  236. });
  237. },
  238. // set indexes of all columns
  239. setIndexes: function (indexes) {
  240. var that = this;
  241. var stack = indexes.map(function (optionIndex, columnIndex) {
  242. return that.setColumnIndex(columnIndex, optionIndex);
  243. });
  244. return Promise.all(stack);
  245. }
  246. }
  247. });
  248. </script>
  249. <style>
  250. @import './index.css';
  251. @import 'undefined';
  252. </style>