index.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <template>
  2. <view>
  3. <van-picker
  4. class="van-area__picker"
  5. active-class="active-class"
  6. toolbar-class="toolbar-class"
  7. column-class="column-class"
  8. show-toolbar
  9. value-key="name"
  10. :title="title"
  11. :loading="loading"
  12. :columns="displayColumns"
  13. :item-height="itemHeight"
  14. :visible-item-count="visibleItemCount"
  15. :cancel-button-text="cancelButtonText"
  16. :confirm-button-text="confirmButtonText"
  17. @change="onChange"
  18. @confirm="onConfirm"
  19. @cancel="onCancel"
  20. />
  21. </view>
  22. </template>
  23. <script>
  24. 'use strict';
  25. var __assign =
  26. (this && this.__assign) ||
  27. function () {
  28. __assign =
  29. Object.assign ||
  30. function (t) {
  31. for (var s, i = 1, n = arguments.length; i < n; i++) {
  32. s = arguments[i];
  33. for (var p in s) {
  34. if (Object.prototype.hasOwnProperty.call(s, p)) {
  35. t[p] = s[p];
  36. }
  37. }
  38. }
  39. return t;
  40. };
  41. return __assign.apply(this, arguments);
  42. };
  43. Object.defineProperty(exports, '__esModule', {
  44. value: true
  45. });
  46. var component_1 = require('../common/component');
  47. var shared_1 = require('../picker/shared');
  48. var COLUMNSPLACEHOLDERCODE = '000000';
  49. component_1.VantComponent({
  50. classes: ['active-class', 'toolbar-class', 'column-class'],
  51. props: __assign(__assign({}, shared_1.pickerProps), {
  52. value: {
  53. type: String,
  54. observer: function (value) {
  55. this.code = value;
  56. this.setValues();
  57. }
  58. },
  59. areaList: {
  60. type: Object,
  61. value: {},
  62. observer: 'setValues'
  63. },
  64. columnsNum: {
  65. type: null,
  66. value: 3,
  67. observer: function (value) {
  68. this.setData({
  69. displayColumns: this.columns.slice(0, +value)
  70. });
  71. }
  72. },
  73. columnsPlaceholder: {
  74. type: Array,
  75. observer: function (val) {
  76. this.setData({
  77. typeToColumnsPlaceholder: {
  78. province: val[0] || '',
  79. city: val[1] || '',
  80. county: val[2] || ''
  81. }
  82. });
  83. }
  84. }
  85. }),
  86. data: {
  87. columns: [
  88. {
  89. values: []
  90. },
  91. {
  92. values: []
  93. },
  94. {
  95. values: []
  96. }
  97. ],
  98. displayColumns: [
  99. {
  100. values: []
  101. },
  102. {
  103. values: []
  104. },
  105. {
  106. values: []
  107. }
  108. ],
  109. typeToColumnsPlaceholder: {}
  110. },
  111. mounted: function () {
  112. var that = this;
  113. setTimeout(function () {
  114. that.setValues();
  115. }, 0);
  116. },
  117. methods: {
  118. getPicker: function () {
  119. if (this.picker == null) {
  120. this.picker = this.zpSelectComponent('.van-area__picker');
  121. }
  122. return this.picker;
  123. },
  124. onCancel: function (event) {
  125. this.emit('cancel', event.detail);
  126. },
  127. onConfirm: function (event) {
  128. var index = event.detail.index;
  129. var value = event.detail.value;
  130. value = this.parseOutputValues(value);
  131. this.emit('confirm', {
  132. value: value,
  133. index: index
  134. });
  135. },
  136. emit: function (type, detail) {
  137. detail.values = detail.value;
  138. delete detail.value;
  139. this.$emit(type, detail);
  140. },
  141. // parse output columns data
  142. parseOutputValues: function (values) {
  143. var columnsPlaceholder = this.columnsPlaceholder;
  144. return values.map(function (value, index) {
  145. // save undefined value
  146. if (!value) {
  147. return value;
  148. }
  149. value = JSON.parse(JSON.stringify(value));
  150. if (!value.code || value.name === columnsPlaceholder[index]) {
  151. value.code = '';
  152. value.name = '';
  153. }
  154. return value;
  155. });
  156. },
  157. onChange: function (event) {
  158. var that = this;
  159. var _a = event.detail;
  160. var index = _a.index;
  161. var picker = _a.picker;
  162. var value = _a.value;
  163. this.code = value[index].code;
  164. this.setValues().then(function () {
  165. that.$emit('change', {
  166. picker: picker,
  167. values: that.parseOutputValues(picker.getValues()),
  168. index: index
  169. });
  170. });
  171. },
  172. getConfig: function (type) {
  173. var areaList = this.areaList;
  174. return (areaList && areaList[type + '_list']) || {};
  175. },
  176. getList: function (type, code) {
  177. var typeToColumnsPlaceholder = this.typeToColumnsPlaceholder;
  178. var result = [];
  179. if (type !== 'province' && !code) {
  180. return result;
  181. }
  182. var list = this.getConfig(type);
  183. result = Object.keys(list).map(function (code) {
  184. return {
  185. code: code,
  186. name: list[code]
  187. };
  188. });
  189. if (code) {
  190. // oversea code
  191. if (code[0] === '9' && type === 'city') {
  192. code = '9';
  193. }
  194. result = result.filter(function (item) {
  195. return item.code.indexOf(code) === 0;
  196. });
  197. }
  198. if (typeToColumnsPlaceholder[type] && result.length) {
  199. // set columns placeholder
  200. var codeFill = type === 'province' ? '' : type === 'city' ? COLUMNSPLACEHOLDERCODE.slice(2, 4) : COLUMNSPLACEHOLDERCODE.slice(4, 6);
  201. result.unshift({
  202. code: '' + code + codeFill,
  203. name: typeToColumnsPlaceholder[type]
  204. });
  205. }
  206. return result;
  207. },
  208. getIndex: function (type, code) {
  209. var compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
  210. var list = this.getList(type, code.slice(0, compareNum - 2));
  211. // oversea code
  212. if (code[0] === '9' && type === 'province') {
  213. compareNum = 1;
  214. }
  215. code = code.slice(0, compareNum);
  216. for (var i = 0; i < list.length; i++) {
  217. if (list[i].code.slice(0, compareNum) === code) {
  218. return i;
  219. }
  220. }
  221. return 0;
  222. },
  223. setValues: function () {
  224. var that = this;
  225. var county = this.getConfig('county');
  226. var code = this.code;
  227. if (!code) {
  228. if (this.columnsPlaceholder.length) {
  229. code = COLUMNSPLACEHOLDERCODE;
  230. } else if (Object.keys(county)[0]) {
  231. code = Object.keys(county)[0];
  232. } else {
  233. code = '';
  234. }
  235. }
  236. var province = this.getList('province');
  237. var city = this.getList('city', code.slice(0, 2));
  238. var picker = this.getPicker();
  239. if (!picker) {
  240. return;
  241. }
  242. var stack = [];
  243. stack.push(picker.setColumnValues(0, province, false));
  244. stack.push(picker.setColumnValues(1, city, false));
  245. if (city.length && code.slice(2, 4) === '00') {
  246. code = city[0].code;
  247. }
  248. stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false));
  249. return Promise.all(stack)
  250. .catch(function () {})
  251. .then(function () {
  252. return picker.setIndexes([that.getIndex('province', code), that.getIndex('city', code), that.getIndex('county', code)]);
  253. })
  254. .catch(function () {});
  255. },
  256. getValues: function () {
  257. var picker = this.getPicker();
  258. return picker
  259. ? picker.getValues().filter(function (value) {
  260. return !!value;
  261. })
  262. : [];
  263. },
  264. getDetail: function () {
  265. var values = this.getValues();
  266. var area = {
  267. code: '',
  268. country: '',
  269. province: '',
  270. city: '',
  271. county: ''
  272. };
  273. if (!values.length) {
  274. return area;
  275. }
  276. var names = values.map(function (item) {
  277. return item.name;
  278. });
  279. area.code = values[values.length - 1].code;
  280. if (area.code[0] === '9') {
  281. area.country = names[1] || '';
  282. area.province = names[2] || '';
  283. } else {
  284. area.province = names[0] || '';
  285. area.city = names[1] || '';
  286. area.county = names[2] || '';
  287. }
  288. return area;
  289. },
  290. reset: function (code) {
  291. this.code = code || '';
  292. return this.setValues();
  293. }
  294. }
  295. });
  296. </script>
  297. <style>
  298. @import './index.css';
  299. </style>