2323-02-25
功能完善
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
<text class="mobile">{{ addressData.phoneNumber }}</text>
|
<text class="mobile">{{ addressData.phoneNumber }}</text>
|
||||||
</view>
|
</view>
|
||||||
<text
|
<text
|
||||||
class="address">{{ addressData.province }}-{{ addressData.city }}-{{ addressData.region }}-{{ addressData.detailAddress }}</text>
|
class="address">{{ addressData.region }}-{{ addressData.detailAddress }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="cen" v-else>
|
<view class="cen" v-else>
|
||||||
<text>请设置收货地址</text>
|
<text>请设置收货地址</text>
|
||||||
|
|||||||
@@ -184,7 +184,7 @@
|
|||||||
};
|
};
|
||||||
let data = await Api.apiCall('post', Api.index.sendCodes, params);
|
let data = await Api.apiCall('post', Api.index.sendCodes, params);
|
||||||
if (data) {
|
if (data) {
|
||||||
|
console.log('验证码---data', data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toLoginCode() {
|
toLoginCode() {
|
||||||
@@ -705,7 +705,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.welcome {
|
.welcome {
|
||||||
margin-top: 150px;
|
margin-top: 50px;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 50upx;
|
left: 50upx;
|
||||||
top: -90upx;
|
top: -90upx;
|
||||||
|
|||||||
@@ -7,17 +7,19 @@
|
|||||||
<text class="mobile">{{ item.phoneNumber }}</text>
|
<text class="mobile">{{ item.phoneNumber }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="address-box">
|
<view class="address-box">
|
||||||
<text v-if="item.defaultStatus == 1" class="tag">默认</text>
|
<!-- <text v-if="item.defaultStatus == 1" class="tag">默认</text> -->
|
||||||
<text class="address">{{ item.region }}-{{ item.detailAddress }}</text>
|
<text class="address">{{ item.region }}-{{ item.detailAddress }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="display: flex;flex-direction: row;width: 100%;justify-content: flex-end;">
|
<view class="" style="display: flex;flex-direction: row;width: 100%;justify-content: flex-end;">
|
||||||
<view class="" style="width: 20%;display: flex;align-items: center;justify-content: center;" @click="addAddress('edit', item)">
|
<view class="" style="width: 20%;display: flex;align-items: center;justify-content: center;"
|
||||||
|
@click="addAddress('edit', item)">
|
||||||
<text class="yticon icon-bianji"></text>
|
<text class="yticon icon-bianji"></text>
|
||||||
<text style="font-size: 30upx;margin-left: 10upx;">编辑</text>
|
<text style="font-size: 30upx;margin-left: 10upx;">编辑</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="width: 20%;display: flex;align-items: center;justify-content: center;" @click="delAddress(item)">
|
<view class="" style="width: 20%;display: flex;align-items: center;justify-content: center;"
|
||||||
|
@click="delAddress(item)">
|
||||||
<text class="yticon icon-iconfontshanchu1"></text>
|
<text class="yticon icon-iconfontshanchu1"></text>
|
||||||
<text style="font-size: 30upx;">删除</text>
|
<text style="font-size: 30upx;">删除</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -27,7 +29,7 @@
|
|||||||
重要:添加和修改地址回调仅增加了一条数据做演示,实际开发中将回调改为请求后端接口刷新一下列表即可
|
重要:添加和修改地址回调仅增加了一条数据做演示,实际开发中将回调改为请求后端接口刷新一下列表即可
|
||||||
</text>-->
|
</text>-->
|
||||||
|
|
||||||
<button class="add-btn" @click="addAddress('add')">新增地址</button>
|
<button v-if="addressList.length==0" class="add-btn" @click="addAddress('add')">新增地址</button>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -57,6 +59,8 @@ components: {
|
|||||||
async getListAddress() {
|
async getListAddress() {
|
||||||
let params = {};
|
let params = {};
|
||||||
this.addressList = await Api.apiCall('get', Api.goods.listAddress, params);
|
this.addressList = await Api.apiCall('get', Api.goods.listAddress, params);
|
||||||
|
console.log("addressList>>>>>", this.addressList);
|
||||||
|
console.log("addressList>>>>>", this.addressList.length);
|
||||||
},
|
},
|
||||||
//选择地址
|
//选择地址
|
||||||
checkAddress(item) {
|
checkAddress(item) {
|
||||||
@@ -85,7 +89,9 @@ components: {
|
|||||||
// let params = {
|
// let params = {
|
||||||
// id: item.id
|
// id: item.id
|
||||||
// }
|
// }
|
||||||
let data = await Api.apiCall('post', Api.goods.deleteAddress, {id: item.id});
|
let data = await Api.apiCall('post', Api.goods.deleteAddress, {
|
||||||
|
id: item.id
|
||||||
|
});
|
||||||
if (data) {
|
if (data) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '删除成功',
|
title: '删除成功',
|
||||||
@@ -107,9 +113,11 @@ components: {
|
|||||||
page {
|
page {
|
||||||
padding-bottom: 120upx;
|
padding-bottom: 120upx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -118,16 +126,19 @@ page {
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.address-box {
|
.address-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin: 10upx 0;
|
margin: 10upx 0;
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
font-size: 24upx;
|
font-size: 24upx;
|
||||||
color: $base-color;
|
color: $base-color;
|
||||||
@@ -138,19 +149,23 @@ page {
|
|||||||
padding: 4upx 10upx;
|
padding: 4upx 10upx;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.address {
|
.address {
|
||||||
font-size: 28upx;
|
font-size: 28upx;
|
||||||
color: $font-color-light;
|
color: $font-color-light;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.u-box {
|
.u-box {
|
||||||
font-size: 32upx;
|
font-size: 32upx;
|
||||||
color: $font-color-000;
|
color: $font-color-000;
|
||||||
|
|
||||||
// margin-top: 16upx;
|
// margin-top: 16upx;
|
||||||
.name {
|
.name {
|
||||||
margin-right: 30upx;
|
margin-right: 30upx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-bianji {
|
.icon-bianji {
|
||||||
// display: flex;
|
// display: flex;
|
||||||
// align-items: center;
|
// align-items: center;
|
||||||
|
|||||||
@@ -37,10 +37,10 @@
|
|||||||
<text class="input">王宫村服务站</text>
|
<text class="input">王宫村服务站</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="row default-row">
|
<!-- <view class="row default-row">
|
||||||
<text class="tit">设为默认</text>
|
<text class="tit">设为默认</text>
|
||||||
<switch :checked="addressData.defaultStatus" color="#fa436a" @change="switchChange" />
|
<switch :checked="addressData.defaultStatus" color="#fa436a" @change="switchChange" />
|
||||||
</view>
|
</view> -->
|
||||||
<button class="add-btn" @click="confirm">提交</button>
|
<button class="add-btn" @click="confirm">提交</button>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
city: '',
|
city: '',
|
||||||
region: '',
|
region: '',
|
||||||
detailAddress: '王宫村服务站',
|
detailAddress: '王宫村服务站',
|
||||||
defaultStatus: 0,
|
defaultStatus: 1,
|
||||||
def: false
|
def: false
|
||||||
},
|
},
|
||||||
lotusAddressData: {
|
lotusAddressData: {
|
||||||
|
|||||||
Reference in New Issue
Block a user