| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <picker @change="bindPickerChange" @columnchange="columnchange" :range="array" range-key="name" :value="value" mode="multiSelector"><slot></slot></picker>
- </template>
- <script>
- const req = require('../../../utils/request.js');
- // import AllAddress from './data.js';
- let selectVal = ['', '', ''];
- export default {
- data() {
- return {
- value: [0, 0,0],
- ids:[],
- array: [],
- index: 0,
- allAddressData:[]
- };
- },
- created() {
- this.getReqAreaList();
- },
- methods: {
- getReqAreaList() {
- req.reqAreaList(data => {
- this.allAddressData=data.areas;
- console.log('地址数据====', data);
- this.initSelect();
- });
- },
- // 初始化地址选项
- initSelect() {
- this.updateSourceDate() // 更新源数据
- .updateAddressDate() // 更新结果数据
- .updateIdsDate()
- .$forceUpdate(); // 触发双向绑定
- },
- // 地址控件改变控件
- columnchange(d) {
- this.updateSelectIndex(d.detail.column, d.detail.value) // 更新选择索引
- .updateSourceDate() // 更新源数据
- .updateAddressDate()
- .updateIdsDate()// 更新结果数据
- .$forceUpdate(); // 触发双向绑定
- },
- /**
- * 更新源数据
- * */
- updateSourceDate() {
- this.array = [];
- if(this.allAddressData.length > 0){
- this.array[0] = this.allAddressData.map(obj => {
- return {
- name: obj.name,
- id: obj.id
- };
- });
- this.array[1] = this.allAddressData[this.value[0]].children.map(obj => {
- return {
- name: obj.name,
- id: obj.id
- };
- });
- this.array[2] = this.allAddressData[this.value[0]].children[this.value[1]].children.map(obj => {
- return {
- name: obj.name,
- id: obj.id
- };
- });
- }
- return this;
- },
- /**
- * 更新索引
- * */
- updateSelectIndex(column, value) {
- let arr = JSON.parse(JSON.stringify(this.value));
- arr[column] = value;
- if (column === 0) {
- arr[1] = 0;
- // arr[2] = 0;
- }
- if (column === 1) {
- arr[2] = 0;
- }
- this.value = arr;
- return this;
- },
- /**
- * 更新结果数据
- * */
- updateAddressDate() {
- selectVal[0] = this.array[0][this.value[0]].name+' ';
- selectVal[1] = this.array[1][this.value[1]].name+' ';
- selectVal[2] = this.array[2][this.value[2]].name+' ';
- return this;
- },
- updateIdsDate() {
- this.ids[0] = this.array[0][this.value[0]].id;
- this.ids[1] = this.array[1][this.value[1]].id;
- this.ids[2] = this.array[2][this.value[2]].id;
- return this;
- },
- /**
- * 点击确定
- * */
- bindPickerChange(e) {
- this.$emit('change', {
- index: this.value,
- data: selectVal,
- ids:this.ids
- });
- return this;
- }
- }
- };
- </script>
- <style></style>
|