/* ***************************地址选择器start*************************** */ // 点击所在地区弹出选择框 selectDistrict: function (e) { let that = this if (that.data.addressMenuIsShow) { return } let tarName = e.currentTarget.dataset.tarname; that.setData({ tarName:tarName }) that.startAddressAnimation(true) console.log(e); }, // 执行动画 startAddressAnimation: function (isShow) { let that = this if (isShow) { that.animation.translateY(0 + 'vh').step() } else { that.animation.translateY(100 + 'vh').step() } that.setData({ animationAddressMenu: that.animation.export(), addressMenuIsShow: isShow, }) }, // 点击地区选择取消按钮 cityCancel: function (e) { this.startAddressAnimation(false) }, // 点击地区选择确定按钮 citySure: function (e) { let that = this let city = that.data.city let value = that.data.value