<view class="gui-form-item gui-border-b gui-bg-white">
<text class="gui-form-label">工作地点</text>
<view class="gui-form-body" style="position: relative;">
<input type="text" class="gui-form-input" v-model="formData.address" name="address"
disabled="disabled" placeholder="请选择工作地点" />
<view style="position: absolute;top: 0;left: 0;width: 480rpx;height: 80rpx;z-index: 99;"
@tap="chooseLocation"></view>
</view>
<text class="gui-form-icon gui-icons gui-text-center gui-color-gray"
@tap="chooseLocation"></text>
</view>
chooseLocation() {
var that = this
uni.chooseLocation({
success: (data) => {
that.formData.address = data.address + "【" + data.name + "】"
that.formData.longitude = data.longitude
that.formData.latitude = data.latitude
}
})
},
3 个回复
1***@qq.com - 一个人
找到原因了吗
我也遇到了这个问题
电脑端打不开 点击没有反应
是有的能打开有的不能打开
1***@qq.com
我也遇到了这个问题,求解
l***@liuguangtai.cn
看控制台有没有报错信息