AddressPicker.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.showLoading({
  30. title:'加载中'
  31. })
  32. uni.$u.http.post('/api/Publics/area').then(res => {
  33. uni.hideLoading()
  34. this.AllAddress=res.data
  35. this.init()
  36. }).catch(err=>{
  37. uni.hideLoading()
  38. })
  39. },
  40. // 初始化地址选项
  41. init() {
  42. this.array = new Array(this.level);
  43. for(let i = 0; i<this.array.length;i++){
  44. if(i==0){
  45. this.array[i] = this.AllAddress
  46. } else {
  47. this.array[i] = [];
  48. if (this.array[i-1][0].children != null) {
  49. this.array[i] = this.array[i-1][0].children;
  50. }
  51. }
  52. }
  53. this.$forceUpdate()
  54. },
  55. // 地址控件改变控件
  56. columnchange(e) {
  57. let aIndex = JSON.parse(JSON.stringify(e.detail.column+1));//第几组
  58. let j = e.detail.value;//索引值
  59. // console.log('e.detail',e.detail)
  60. // console.log('选择:第'+ aIndex +'组,索引值为第' +j +'个 值为'+this.array[aIndex-1][j].name);
  61. for(let i=aIndex; i<this.array.length; i++){
  62. //选的第几组 和索引值
  63. //1、选第一组 children 默认第二组的第一个,第三组的值为第二组的第一个children
  64. //2、选第二组 children 默认第三组的值为第二组的选中的children第一个值
  65. this.array[i] = [];
  66. console.log('this.array[i] ',i,)
  67. if(e.detail.column === 0 && i===2){
  68. if (this.array[i-1][0].children != null) {
  69. this.array[i] = this.array[i-1][0].children;
  70. }
  71. }else{
  72. if (this.array[i-1][j].children != null) {
  73. this.array[i] = this.array[i-1][j].children;
  74. }
  75. }
  76. // console.log('this.array[i] ',this.array[i] )
  77. }
  78. this.$forceUpdate();
  79. },
  80. //点击确定
  81. pickerChange(e) {
  82. var result = [];
  83. for(let i=0; i<this.array.length; i++){
  84. result.push({
  85. name: this.array[i][e.target.value[i]].name,
  86. id: this.array[i][e.target.value[i]].id
  87. })
  88. };
  89. this.$emit('change', {
  90. data: result
  91. })
  92. }
  93. }
  94. }
  95. </script>
  96. <style>
  97. </style>