修改地址中逻辑错误bug

master
lemon橪 2021-09-09 15:02:44 +08:00
parent a78dca1a0c
commit 4c7663d671
4 changed files with 11 additions and 13 deletions

View File

@ -2,8 +2,8 @@
"name" : "lili商城",
"appid" : "__UNI__C100675",
"description" : "",
"versionName" : "4.0.41",
"versionCode" : 4000041,
"versionName" : "4.0.42",
"versionCode" : 4000042,
"transformPx" : false,
"app-plus" : {
"compatible" : {

View File

@ -149,13 +149,7 @@ export default {
delete this.form.___path;
addAddress(this.form).then((res) => {
if (res.data.success) {
if (this.routerVal.type == "order") {
uni.navigateBack();
} else {
uni.redirectTo({
url: `/pages/mine/address/addressManage`,
});
}
uni.navigateBack();
}
});
} else {

View File

@ -75,7 +75,6 @@ export default {
this.routerVal = val;
},
onShow() {
console.log("onshow");
this.addressList = [];
this.getAddressList();
},

View File

@ -60,7 +60,7 @@ export default {
text: "确定要删除该收货人信息吗?",
},
removeId: "", //id
routerVal: "",
routerVal: "",
params: {
pageNumber: 1,
pageSize: 1000,
@ -77,11 +77,16 @@ export default {
onLoad: function (val) {
this.routerVal = val;
},
onPullDownRefresh() {
//
this.addressList = [];
this.getAddressList();
},
/**
* 进入页面检测当前账户是否登录
*/
onShow() {
let that = this
let that = this;
if (this.$options.filters.isLogin("auth")) {
this.getAddressList();
} else {
@ -168,5 +173,5 @@ export default {
</script>
<style lang="scss" scoped>
@import './address.scss';
@import "./address.scss";
</style>