|
@@ -90,7 +90,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="orderTit">套餐说明</view>
|
|
|
- <text lines="1" class="infoBox1">{{
|
|
|
+ <text lines="1" class="infoBox1">{{ showData.month_fee_limit != '0' ? '低消:' + showData.month_fee_limit+'元,':'' }}{{ showData.month_limit != '0' ? '合约:' + showData.month_limit + '月,':'' }}{{
|
|
|
showData.info.describe
|
|
|
}}</text>
|
|
|
</view>
|
|
@@ -382,6 +382,8 @@
|
|
|
<script>
|
|
|
import wPicker from "@/components/w-picker/w-picker.vue";
|
|
|
// import mixin1 from "@/util/mixin1.js";
|
|
|
+import http from "@/https/request.js"
|
|
|
+import { isString } from "util"
|
|
|
var unpackTimeId = null;
|
|
|
var total_micro_second = 0; // 总毫秒数
|
|
|
export default {
|
|
@@ -446,6 +448,9 @@ export default {
|
|
|
stock_num: 0,
|
|
|
batch_no: "",
|
|
|
is_offer: 0,
|
|
|
+ month_limit:"0",
|
|
|
+ month_fee_limit:"0",
|
|
|
+ amount_charge:"0",
|
|
|
info: {
|
|
|
id: 305466,
|
|
|
mobile_id: 305467,
|
|
@@ -1090,34 +1095,71 @@ export default {
|
|
|
},
|
|
|
// 根据经纬度查询城市
|
|
|
loAcquire(longitude, latitude) {
|
|
|
- let this_ = this;
|
|
|
- this.myAmapFun.reverseGeocoder({
|
|
|
- location: {
|
|
|
- latitude: latitude,
|
|
|
- longitude: longitude,
|
|
|
- },
|
|
|
- success: function (res) {
|
|
|
- console.log("解析地址成功");
|
|
|
- console.log(res);
|
|
|
- // 根据名称筛选id
|
|
|
- this_.cityId(
|
|
|
- res.result.address_component.province,
|
|
|
- res.result.address_component.city,
|
|
|
- res.result.address_component.district
|
|
|
- );
|
|
|
- },
|
|
|
- fail: function (res) {
|
|
|
- uni.showToast({
|
|
|
- title: "定位失败",
|
|
|
- duration: 2000,
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
- console.log(res);
|
|
|
- },
|
|
|
- complete: function (res) {
|
|
|
- console.log(res);
|
|
|
- },
|
|
|
- });
|
|
|
+ let this_ = this;
|
|
|
+
|
|
|
+ http('https://restapi.amap.com/v3/geocode/regeo',"GET",{
|
|
|
+ key: "08dceab59cbce678d07e89924e376f53",
|
|
|
+ location: longitude + ',' + latitude,
|
|
|
+ output: "JSON"
|
|
|
+ })
|
|
|
+ .then(res=>{
|
|
|
+ console.log('amap')
|
|
|
+ console.log(res)
|
|
|
+ if(res.statusCode == 200){
|
|
|
+ if(res.data.status == 1){
|
|
|
+ console.log({
|
|
|
+ province:res.data.regeocode.addressComponent.province,
|
|
|
+ city:res.data.regeocode.addressComponent.city,
|
|
|
+ district:res.data.regeocode.addressComponent.district,
|
|
|
+ });
|
|
|
+ let province = res.data.regeocode.addressComponent.province;
|
|
|
+ let city = res.data.regeocode.addressComponent.city;
|
|
|
+ let district = res.data.regeocode.addressComponent.district;
|
|
|
+ if(!isString(city)){
|
|
|
+ city = province;
|
|
|
+ }
|
|
|
+ uni.setStorage({
|
|
|
+ key: 'address',
|
|
|
+ data: JSON.stringify({
|
|
|
+ district:district,
|
|
|
+ city:city,
|
|
|
+ province:province,
|
|
|
+ })
|
|
|
+ });
|
|
|
+ this_.cityId(province,city,district);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+ // let this_ = this;
|
|
|
+ // this.myAmapFun.reverseGeocoder({
|
|
|
+ // location: {
|
|
|
+ // latitude: latitude,
|
|
|
+ // longitude: longitude,
|
|
|
+ // },
|
|
|
+ // success: function (res) {
|
|
|
+ // console.log("解析地址成功");
|
|
|
+ // console.log(res);
|
|
|
+ // // 根据名称筛选id
|
|
|
+ // this_.cityId(
|
|
|
+ // res.result.address_component.province,
|
|
|
+ // res.result.address_component.city,
|
|
|
+ // res.result.address_component.district
|
|
|
+ // );
|
|
|
+ // },
|
|
|
+ // fail: function (res) {
|
|
|
+ // uni.showToast({
|
|
|
+ // title: "定位失败",
|
|
|
+ // duration: 2000,
|
|
|
+ // icon: "none",
|
|
|
+ // });
|
|
|
+ // console.log(res);
|
|
|
+ // },
|
|
|
+ // complete: function (res) {
|
|
|
+ // console.log(res);
|
|
|
+ // },
|
|
|
+ // });
|
|
|
},
|
|
|
// 根据名称筛选id
|
|
|
cityId(province, city, district) {
|