AddressPicker.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <picker @change="pickerChange" @columnchange="columnchange" :range="array" range-key="name" :value="value" mode="multiSelector">
  3. <slot></slot>
  4. </picker>
  5. </template>
  6. <script>
  7. // import AllAddress from './AddressData.js'
  8. export default {
  9. data() {
  10. return{
  11. value: [],
  12. array: [],
  13. index: 0,
  14. AllAddress:[]
  15. }
  16. },
  17. props:{
  18. level:{ //级数
  19. type: Number,
  20. default: 3
  21. }
  22. },
  23. created() {
  24. console.log('请求地址')
  25. this.getAllAddress()
  26. },
  27. methods:{
  28. getAllAddress(){
  29. uni.$u.http.post('/api/Publics/area').then(res => {
  30. this.AllAddress=res.data
  31. this.init()
  32. })
  33. },
  34. // 初始化地址选项
  35. init() {
  36. this.array = new Array(this.level);
  37. for(let i = 0; i<this.array.length;i++){
  38. if(i==0){
  39. this.array[i] = this.AllAddress
  40. } else {
  41. this.array[i] = [];
  42. if (this.array[i-1][0].children != null) {
  43. this.array[i] = this.array[i-1][0].children;
  44. }
  45. }
  46. }
  47. this.$forceUpdate()
  48. },
  49. // 地址控件改变控件
  50. columnchange(e) {
  51. let aIndex = JSON.parse(JSON.stringify(e.detail.column+1));//第几组
  52. let j = e.detail.value;//索引值
  53. // console.log('e.detail',e.detail)
  54. // console.log('选择:第'+ aIndex +'组,索引值为第' +j +'个 值为'+this.array[aIndex-1][j].name);
  55. for(let i=aIndex; i<this.array.length; i++){
  56. //选的第几组 和索引值
  57. //1、选第一组 children 默认第二组的第一个,第三组的值为第二组的第一个children
  58. //2、选第二组 children 默认第三组的值为第二组的选中的children第一个值
  59. this.array[i] = [];
  60. console.log('this.array[i] ',i,)
  61. if(e.detail.column === 0 && i===2){
  62. if (this.array[i-1][0].children != null) {
  63. this.array[i] = this.array[i-1][0].children;
  64. }
  65. }else{
  66. if (this.array[i-1][j].children != null) {
  67. this.array[i] = this.array[i-1][j].children;
  68. }
  69. }
  70. // console.log('this.array[i] ',this.array[i] )
  71. }
  72. this.$forceUpdate();
  73. },
  74. //点击确定
  75. pickerChange(e) {
  76. var result = [];
  77. for(let i=0; i<this.array.length; i++){
  78. result.push({
  79. name: this.array[i][e.target.value[i]].name,
  80. id: this.array[i][e.target.value[i]].id
  81. })
  82. };
  83. this.$emit('change', {
  84. data: result
  85. })
  86. }
  87. }
  88. }
  89. </script>
  90. <style>
  91. </style>