地址终于完了233
This commit is contained in:
@@ -16,7 +16,11 @@ Page({
|
||||
area:["请选择","请选择","请选择"],
|
||||
tagDis:[false,true,true],
|
||||
active:0,
|
||||
addressCity:"北京市 北京市 北京市"
|
||||
addressCity:"请选择 请选择 请选择",
|
||||
countrys:[],
|
||||
countryid:44,
|
||||
nowcountry:"中国",
|
||||
areaid:[]
|
||||
},
|
||||
|
||||
/**
|
||||
@@ -37,9 +41,28 @@ Page({
|
||||
console.log(this.data.arealist)
|
||||
})
|
||||
|
||||
request({
|
||||
url: "User/getCountry",
|
||||
}).then((res)=>{
|
||||
let country=[]
|
||||
console.log(res,10000)
|
||||
for(let i=0;i<res.data.result.length;i++){
|
||||
country[i]=res.data.result[i].name
|
||||
}
|
||||
this.setData({
|
||||
countrys:country
|
||||
})
|
||||
})
|
||||
|
||||
},
|
||||
bindPickerChange(e) {
|
||||
// console.log(e)
|
||||
console.log(e.detail.value)
|
||||
let nowcountry=this.data.countrys[e.detail.value]
|
||||
this.setData({
|
||||
countryid:e.detail.value+1,
|
||||
nowcountry:nowcountry
|
||||
})
|
||||
console.log(nowcountry,"zxc")
|
||||
},
|
||||
showPopup() {
|
||||
this.setData({ show: true });
|
||||
@@ -79,6 +102,7 @@ Page({
|
||||
})
|
||||
// console.log(this.data.area,123)
|
||||
this.data.area[0]=e.currentTarget.dataset.name
|
||||
this.data.areaid[0]=e.currentTarget.dataset.id
|
||||
// for(let i in this.data.area){
|
||||
// if(i==type){
|
||||
// this.data.area[i]=e.currentTarget.dataset.name
|
||||
@@ -112,6 +136,7 @@ Page({
|
||||
// console.log(this.data.area,123)
|
||||
|
||||
this.data.area[1]=e.currentTarget.dataset.name
|
||||
this.data.areaid[1]=e.currentTarget.dataset.id
|
||||
// for(let i in this.data.area){
|
||||
// if(i==type){
|
||||
// this.data.area[i]=e.currentTarget.dataset.name
|
||||
@@ -148,6 +173,7 @@ Page({
|
||||
// console.log(this.data.area,123)
|
||||
|
||||
this.data.area[2]=e.currentTarget.dataset.name
|
||||
this.data.areaid[2]=e.currentTarget.dataset.id
|
||||
// for(let i in this.data.area){
|
||||
// if(i==type){
|
||||
// this.data.area[i]=e.currentTarget.dataset.name
|
||||
@@ -167,10 +193,14 @@ Page({
|
||||
// wx.navigateTo({
|
||||
// url: "/pages/chooseaddr/chooseaddr"
|
||||
// })
|
||||
console.log(this.data.canshu)
|
||||
console.log(this.data.countryid)
|
||||
console.log(this.data.area)
|
||||
console.log(this.data.areaid)
|
||||
request({
|
||||
url: "User/validateOpenid",
|
||||
}).then((res)=>{
|
||||
// console.log(res,1452)
|
||||
console.log(res,1452)
|
||||
this.setData({
|
||||
userid:res.data.data.user_id
|
||||
})
|
||||
@@ -181,20 +211,21 @@ Page({
|
||||
},
|
||||
method:"POST",
|
||||
data: {
|
||||
address: "Wesrdtfyguhijkl",
|
||||
city: "339",
|
||||
consignee: "srdtfyguhijokl",
|
||||
country: 1,
|
||||
district: "361",
|
||||
// address: this.data.canshu[4],
|
||||
city: this.data.areaid[1],
|
||||
consignee: this.data.canshu[0],
|
||||
country: this.data.countryid,
|
||||
address: this.data.canshu[4],
|
||||
is_default: 0,
|
||||
mobile: "19953879035",
|
||||
province: "338",
|
||||
twon: 0,
|
||||
user_id: "9",
|
||||
zipcode: "271103",
|
||||
mobile: this.data.canshu[1],
|
||||
province: this.data.areaid[0],
|
||||
twon: this.data.areaid[2],
|
||||
user_id:this.data.userid,
|
||||
zipcode: this.data.canshu[5],
|
||||
idcard: this.data.canshu[6],
|
||||
}
|
||||
}).then((res)=>{
|
||||
// console.log(res)
|
||||
console.log(res)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<view class="addaddress">
|
||||
<shuru left="收件人" right="姓名需和身份证一致" bindmyevent="onMyEvent" data-no="0"></shuru>
|
||||
<shuru left="手机号" right="请填入常用的手机号码" bindmyevent="onMyEvent" data-no="1"></shuru>
|
||||
<picker bindchange="bindPickerChange" value="{{item.item_id?item.item_id:0}}" range="{{info.goods.goods_spec_list?info.goods.goods_spec_list:['默认规格']}}">
|
||||
<shuru left="国家" right="CN中国大陆" ifarrow="{{true}}" data-no="2"></shuru>
|
||||
<picker bindchange="bindPickerChange" value="{{index}}" range="{{countrys}}">
|
||||
<shuru left="国家" right="{{nowcountry}}" ifarrow="{{true}}" data-no="2"></shuru>
|
||||
</picker>
|
||||
<!-- <picker bindchange="bindPickerChange" value="{{item.item_id?item.item_id:0}}" range="{{info.goods.goods_spec_list?info.goods.goods_spec_list:['默认规格']}}">
|
||||
<shuru left="城市信息" right="北京市 北京市 东城区" ifarrow="{{true}}" data-no="3"></shuru>
|
||||
|
||||
Reference in New Issue
Block a user