Merge branch 'master' of http://git.luyuan.tk/pplokijuhyg/deguodaigou into pplok
This commit is contained in:
@@ -1,170 +1,282 @@
|
||||
// pages/addaddress/addaddress.js
|
||||
import { request } from "../../utils/bin"
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
canshu: [],
|
||||
no: 0,
|
||||
userid:"",
|
||||
show: false,
|
||||
arealist:[],
|
||||
area:["请选择","请选择","请选择"]
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:0
|
||||
},
|
||||
}).then((res)=>{
|
||||
console.log(res)
|
||||
this.setData({
|
||||
arealist:res.data.result
|
||||
})
|
||||
console.log(this.data.arealist)
|
||||
})
|
||||
|
||||
},
|
||||
bindPickerChange(e) {
|
||||
console.log(e)
|
||||
},
|
||||
showPopup() {
|
||||
this.setData({ show: true });
|
||||
},
|
||||
|
||||
onClose() {
|
||||
this.setData({ show: false });
|
||||
},
|
||||
onMyEvent(e) {
|
||||
console.log(e)
|
||||
for (let i = 0; i < 8; i++) {
|
||||
if (i == e.currentTarget.dataset.no) {
|
||||
this.data.canshu[i] = e.detail
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
console.log(this.data.canshu)
|
||||
},
|
||||
choose(e){
|
||||
console.log(e.currentTarget.dataset.id,e.currentTarget.dataset.name,e.currentTarget.dataset)
|
||||
let type=parseInt(e.currentTarget.dataset.type)
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:e.currentTarget.dataset.id
|
||||
},
|
||||
}).then((res)=>{
|
||||
console.log(res)
|
||||
if(res.data.result.length){
|
||||
this.setData({
|
||||
arealist1:res.data.result
|
||||
})
|
||||
// this.data.area[type]=e.currentTarget.dataset.name
|
||||
|
||||
console.log(this.data.area,123)
|
||||
|
||||
}
|
||||
// for(let i in this.data.area){
|
||||
// if(i==type){
|
||||
// this.data.area[i]=e.currentTarget.dataset.name
|
||||
// }
|
||||
// }
|
||||
this.data.area[0]=e.currentTarget.dataset.name
|
||||
|
||||
console.log(this.data.area,this.data.arealist)
|
||||
})
|
||||
},
|
||||
save() {
|
||||
// wx.navigateTo({
|
||||
// url: "/pages/chooseaddr/chooseaddr"
|
||||
// })
|
||||
request({
|
||||
url: "User/validateOpenid",
|
||||
}).then((res)=>{
|
||||
console.log(res,1452)
|
||||
this.setData({
|
||||
userid:res.data.data.user_id
|
||||
})
|
||||
request({
|
||||
url: "User/addAddress",
|
||||
urldata:{
|
||||
user_id:this.data.userid
|
||||
},
|
||||
method:"POST",
|
||||
data: {
|
||||
address: "Wesrdtfyguhijkl",
|
||||
city: "339",
|
||||
consignee: "srdtfyguhijokl",
|
||||
country: 1,
|
||||
district: "361",
|
||||
is_default: 0,
|
||||
mobile: "19953879035",
|
||||
province: "338",
|
||||
twon: 0,
|
||||
user_id: "9",
|
||||
zipcode: "271103",
|
||||
}
|
||||
}).then((res)=>{
|
||||
console.log(res)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
},
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
// pages/addaddress/addaddress.js
|
||||
import { request } from "../../utils/bin"
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
canshu: [],
|
||||
no: 0,
|
||||
userid:"",
|
||||
show: false,
|
||||
arealist1:[],
|
||||
arealist2:[],
|
||||
arealist3:[],
|
||||
area:["请选择","请选择","请选择"],
|
||||
tagDis:[false,true,true],
|
||||
active:0,
|
||||
addressCity:"请选择 请选择 请选择",
|
||||
countrys:[],
|
||||
countryid:44,
|
||||
nowcountry:"中国",
|
||||
areaid:[]
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:0
|
||||
},
|
||||
|
||||
}).then((res)=>{
|
||||
// console.log(res)
|
||||
this.setData({
|
||||
arealist1:res.data.result
|
||||
})
|
||||
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.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 });
|
||||
},
|
||||
|
||||
onClose() {
|
||||
this.setData({ show: false });
|
||||
},
|
||||
onMyEvent(e) {
|
||||
// console.log(e)
|
||||
for (let i = 0; i < 8; i++) {
|
||||
if (i == e.currentTarget.dataset.no) {
|
||||
this.data.canshu[i] = e.detail
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// console.log(this.data.canshu)
|
||||
},
|
||||
choose1(e){
|
||||
// console.log(e.currentTarget.dataset.id,e.currentTarget.dataset.name,e.currentTarget.dataset)
|
||||
let type=parseInt(e.currentTarget.dataset.type)
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:e.currentTarget.dataset.id
|
||||
},
|
||||
}).then((res)=>{
|
||||
// console.log(res)
|
||||
this.setData({
|
||||
arealist2:res.data.result,
|
||||
active:1
|
||||
})
|
||||
// this.data.area[type]=e.currentTarget.dataset.name
|
||||
this.setData({
|
||||
tagDis:[false,false,true]
|
||||
})
|
||||
// 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
|
||||
// }
|
||||
// }
|
||||
this.setData({
|
||||
area:this.data.area
|
||||
})
|
||||
|
||||
// console.log(this.data.area,this.data.arealist)
|
||||
})
|
||||
},
|
||||
choose2(e){
|
||||
// console.log(e.currentTarget.dataset.id,e.currentTarget.dataset.name,e.currentTarget.dataset)
|
||||
let type=parseInt(e.currentTarget.dataset.type)
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:e.currentTarget.dataset.id
|
||||
},
|
||||
}).then((res)=>{
|
||||
|
||||
this.setData({
|
||||
arealist3:res.data.result,
|
||||
active:2,
|
||||
tagDis:[false,false,false]
|
||||
})
|
||||
|
||||
// this.data.area[type]=e.currentTarget.dataset.name
|
||||
|
||||
// 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
|
||||
// }
|
||||
// }
|
||||
|
||||
this.setData({
|
||||
area:this.data.area
|
||||
})
|
||||
|
||||
// console.log(this.data.area,this.data.arealist)
|
||||
console.log(this.data.arealist3+"001",this.data.active+"002",this.data.tagDis+"003")
|
||||
})
|
||||
|
||||
|
||||
},
|
||||
choose3(e){
|
||||
// console.log(e.currentTarget.dataset.id,e.currentTarget.dataset.name,e.currentTarget.dataset)
|
||||
let type=parseInt(e.currentTarget.dataset.type)
|
||||
request({
|
||||
url: "User/getArea",
|
||||
urldata:{
|
||||
parent_id:e.currentTarget.dataset.id
|
||||
},
|
||||
}).then((res)=>{
|
||||
// console.log(res)
|
||||
this.setData({
|
||||
arealist1:res.data.result,
|
||||
tagDis:[false,false,false],
|
||||
active:1
|
||||
})
|
||||
// this.data.area[type]=e.currentTarget.dataset.name
|
||||
|
||||
// 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
|
||||
// }
|
||||
// }}
|
||||
console.log(93)
|
||||
this.setData({
|
||||
area:this.data.area,
|
||||
show: false,
|
||||
addressCity:this.data.area[0]+this.data.area[1]+this.data.area[2]
|
||||
})
|
||||
console.log(this.data.active,94)
|
||||
// console.log(this.data.area,this.data.arealist)
|
||||
})
|
||||
},
|
||||
save() {
|
||||
// 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)
|
||||
this.setData({
|
||||
userid:res.data.data.user_id
|
||||
})
|
||||
request({
|
||||
url: "User/addAddress",
|
||||
urldata:{
|
||||
user_id:this.data.userid
|
||||
},
|
||||
method:"POST",
|
||||
data: {
|
||||
// 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: 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)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
},
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
})
|
||||
@@ -1,42 +1,42 @@
|
||||
<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>
|
||||
<!-- <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>
|
||||
</picker> -->
|
||||
<view bindtap="showPopup">
|
||||
<shuru left="城市信息" right="北京市 北京市 东城区" ifarrow="{{true}}" data-no="3"></shuru>
|
||||
</view>
|
||||
<van-popup show="{{ show }}" position="bottom" bind:close="onClose">
|
||||
<van-tabs class="tab" swipe-threshold="5">
|
||||
<van-tab title="{{area[0]}}">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist}}" bindtap="choose" data-type="0" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
<van-tab title="{{area[1]}}">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist1}}" data-type="1" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
<van-tab title="{{area[2]}}">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist2}}" data-type="2" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
</van-tabs>
|
||||
</van-popup>
|
||||
<shuru left="街道地址" right="街道地址" bindmyevent="onMyEvent" data-no="4"></shuru>
|
||||
<shuru left="邮政编码" right="邮政编码" bindmyevent="onMyEvent" data-no="5"></shuru>
|
||||
<shuru left="身份证号" right="可为空,部分商品需要" bindmyevent="onMyEvent" data-no="6"></shuru>
|
||||
<addradd text="保存地址" class="btn1" bindtap="save"></addradd>
|
||||
<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="{{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>
|
||||
</picker> -->
|
||||
<view bindtap="showPopup">
|
||||
<shuru left="城市信息" right="{{addressCity}}" ifarrow="{{true}}" data-no="3"></shuru>
|
||||
</view>
|
||||
<van-popup show="{{ show }}" position="bottom" bind:close="onClose" >
|
||||
<van-tabs class="tab" swipe-threshold="5" active="{{active}}">
|
||||
<van-tab title="{{area[0]}}" disabled="{{tagDis[0]}}">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist1}}" bindtap="choose1" data-type="0" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
<van-tab title="{{area[1]}}" disabled="{{tagDis[1]}}" bingtap="choose2">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist2}}" bindtap="choose2" data-type="1" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
<van-tab title="{{area[2]}}" disabled="{{tagDis[2]}}">
|
||||
<view class="choose">
|
||||
<view class="item" wx:for="{{arealist3}}" bindtap="choose3" data-type="2" data-id="{{item.id}}" data-name="{{item.name}}">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</van-tab>
|
||||
</van-tabs>
|
||||
</van-popup>
|
||||
<shuru left="街道地址" right="街道地址" bindmyevent="onMyEvent" data-no="4"></shuru>
|
||||
<shuru left="邮政编码" right="邮政编码" bindmyevent="onMyEvent" data-no="5"></shuru>
|
||||
<shuru left="身份证号" right="可为空,部分商品需要" bindmyevent="onMyEvent" data-no="6"></shuru>
|
||||
<addradd text="保存地址" class="btn1" bindtap="save"></addradd>
|
||||
</view>
|
||||
Reference in New Issue
Block a user