| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 | 
							- import { VantComponent } from '../common/component';
 
- import { pickerProps } from '../picker/shared';
 
- import { requestAnimationFrame } from '../common/utils';
 
- const COLUMNSPLACEHOLDERCODE = '000000';
 
- VantComponent({
 
-   classes: ['active-class', 'toolbar-class', 'column-class'],
 
-   props: Object.assign(Object.assign({}, pickerProps), {
 
-     value: {
 
-       type: String,
 
-       observer(value) {
 
-         this.code = value;
 
-         this.setValues();
 
-       },
 
-     },
 
-     areaList: {
 
-       type: Object,
 
-       value: {},
 
-       observer: 'setValues',
 
-     },
 
-     columnsNum: {
 
-       type: null,
 
-       value: 3,
 
-       observer(value) {
 
-         this.setData({
 
-           displayColumns: this.data.columns.slice(0, +value),
 
-         });
 
-       },
 
-     },
 
-     columnsPlaceholder: {
 
-       type: Array,
 
-       observer(val) {
 
-         this.setData({
 
-           typeToColumnsPlaceholder: {
 
-             province: val[0] || '',
 
-             city: val[1] || '',
 
-             county: val[2] || '',
 
-           },
 
-         });
 
-       },
 
-     },
 
-   }),
 
-   data: {
 
-     columns: [{ values: [] }, { values: [] }, { values: [] }],
 
-     displayColumns: [{ values: [] }, { values: [] }, { values: [] }],
 
-     typeToColumnsPlaceholder: {},
 
-   },
 
-   mounted() {
 
-     requestAnimationFrame(() => {
 
-       this.setValues();
 
-     });
 
-   },
 
-   methods: {
 
-     getPicker() {
 
-       if (this.picker == null) {
 
-         this.picker = this.selectComponent('.van-area__picker');
 
-       }
 
-       return this.picker;
 
-     },
 
-     onCancel(event) {
 
-       this.emit('cancel', event.detail);
 
-     },
 
-     onConfirm(event) {
 
-       const { index } = event.detail;
 
-       let { value } = event.detail;
 
-       value = this.parseOutputValues(value);
 
-       this.emit('confirm', { value, index });
 
-     },
 
-     emit(type, detail) {
 
-       detail.values = detail.value;
 
-       delete detail.value;
 
-       this.$emit(type, detail);
 
-     },
 
-     // parse output columns data
 
-     parseOutputValues(values) {
 
-       const { columnsPlaceholder } = this.data;
 
-       return values.map((value, index) => {
 
-         // save undefined value
 
-         if (!value) return value;
 
-         value = JSON.parse(JSON.stringify(value));
 
-         if (!value.code || value.name === columnsPlaceholder[index]) {
 
-           value.code = '';
 
-           value.name = '';
 
-         }
 
-         return value;
 
-       });
 
-     },
 
-     onChange(event) {
 
-       const { index, picker, value } = event.detail;
 
-       this.code = value[index].code;
 
-       this.setValues().then(() => {
 
-         this.$emit('change', {
 
-           picker,
 
-           values: this.parseOutputValues(picker.getValues()),
 
-           index,
 
-         });
 
-       });
 
-     },
 
-     getConfig(type) {
 
-       const { areaList } = this.data;
 
-       return (areaList && areaList[`${type}_list`]) || {};
 
-     },
 
-     getList(type, code) {
 
-       const { typeToColumnsPlaceholder } = this.data;
 
-       let result = [];
 
-       if (type !== 'province' && !code) {
 
-         return result;
 
-       }
 
-       const list = this.getConfig(type);
 
-       result = Object.keys(list).map((code) => ({
 
-         code,
 
-         name: list[code],
 
-       }));
 
-       if (code != null) {
 
-         // oversea code
 
-         if (code[0] === '9' && type === 'city') {
 
-           code = '9';
 
-         }
 
-         result = result.filter((item) => item.code.indexOf(code) === 0);
 
-       }
 
-       if (typeToColumnsPlaceholder[type] && result.length) {
 
-         // set columns placeholder
 
-         const codeFill =
 
-           type === 'province'
 
-             ? ''
 
-             : type === 'city'
 
-             ? COLUMNSPLACEHOLDERCODE.slice(2, 4)
 
-             : COLUMNSPLACEHOLDERCODE.slice(4, 6);
 
-         result.unshift({
 
-           code: `${code}${codeFill}`,
 
-           name: typeToColumnsPlaceholder[type],
 
-         });
 
-       }
 
-       return result;
 
-     },
 
-     getIndex(type, code) {
 
-       let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
 
-       const list = this.getList(type, code.slice(0, compareNum - 2));
 
-       // oversea code
 
-       if (code[0] === '9' && type === 'province') {
 
-         compareNum = 1;
 
-       }
 
-       code = code.slice(0, compareNum);
 
-       for (let i = 0; i < list.length; i++) {
 
-         if (list[i].code.slice(0, compareNum) === code) {
 
-           return i;
 
-         }
 
-       }
 
-       return 0;
 
-     },
 
-     setValues() {
 
-       const county = this.getConfig('county');
 
-       let { code } = this;
 
-       if (!code) {
 
-         if (this.data.columnsPlaceholder.length) {
 
-           code = COLUMNSPLACEHOLDERCODE;
 
-         } else if (Object.keys(county)[0]) {
 
-           code = Object.keys(county)[0];
 
-         } else {
 
-           code = '';
 
-         }
 
-       }
 
-       const province = this.getList('province');
 
-       const city = this.getList('city', code.slice(0, 2));
 
-       const picker = this.getPicker();
 
-       if (!picker) {
 
-         return;
 
-       }
 
-       const stack = [];
 
-       const indexes = [];
 
-       const { columnsNum } = this.data;
 
-       if (columnsNum >= 1) {
 
-         stack.push(picker.setColumnValues(0, province, false));
 
-         indexes.push(this.getIndex('province', code));
 
-       }
 
-       if (columnsNum >= 2) {
 
-         stack.push(picker.setColumnValues(1, city, false));
 
-         indexes.push(this.getIndex('city', code));
 
-         if (city.length && code.slice(2, 4) === '00') {
 
-           [{ code }] = city;
 
-         }
 
-       }
 
-       if (columnsNum === 3) {
 
-         stack.push(
 
-           picker.setColumnValues(
 
-             2,
 
-             this.getList('county', code.slice(0, 4)),
 
-             false
 
-           )
 
-         );
 
-         indexes.push(this.getIndex('county', code));
 
-       }
 
-       return Promise.all(stack)
 
-         .catch(() => {})
 
-         .then(() => picker.setIndexes(indexes))
 
-         .catch(() => {});
 
-     },
 
-     getValues() {
 
-       const picker = this.getPicker();
 
-       return picker ? picker.getValues().filter((value) => !!value) : [];
 
-     },
 
-     getDetail() {
 
-       const values = this.getValues();
 
-       const area = {
 
-         code: '',
 
-         country: '',
 
-         province: '',
 
-         city: '',
 
-         county: '',
 
-       };
 
-       if (!values.length) {
 
-         return area;
 
-       }
 
-       const names = values.map((item) => item.name);
 
-       area.code = values[values.length - 1].code;
 
-       if (area.code[0] === '9') {
 
-         area.country = names[1] || '';
 
-         area.province = names[2] || '';
 
-       } else {
 
-         area.province = names[0] || '';
 
-         area.city = names[1] || '';
 
-         area.county = names[2] || '';
 
-       }
 
-       return area;
 
-     },
 
-     reset(code) {
 
-       this.code = code || '';
 
-       return this.setValues();
 
-     },
 
-   },
 
- });
 
 
  |