fix: 修复暂无收货地址判断错误问题
parent
d256fd3559
commit
9192f32bbb
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="address">
|
<view class="address">
|
||||||
<u-empty class="empty" v-if="this.addressList == 0" text="暂无收货地址" mode="address"></u-empty>
|
<u-empty class="empty" v-if="this.addressList.length === 0" text="暂无收货地址" mode="address"></u-empty>
|
||||||
<view class="list" >
|
<view class="list" >
|
||||||
<view class="item c-content" v-for="(item, index) in addressList" :key="index">
|
<view class="item c-content" v-for="(item, index) in addressList" :key="index">
|
||||||
<view class="basic">
|
<view class="basic">
|
||||||
|
@ -50,7 +50,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
addressList: [], //地址列表
|
addressList: [], //地址列表
|
||||||
showAction: false, //是否显示下栏框
|
showAction: false, //是否显示下栏框
|
||||||
|
|
||||||
removeList: [
|
removeList: [
|
||||||
{
|
{
|
||||||
text: "确定",
|
text: "确定",
|
||||||
|
@ -88,7 +88,7 @@ export default {
|
||||||
onShow() {
|
onShow() {
|
||||||
if (this.$options.filters.tipsToLogin()) {
|
if (this.$options.filters.tipsToLogin()) {
|
||||||
this.getAddressList();
|
this.getAddressList();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//获取地址列表
|
//获取地址列表
|
||||||
|
|
Loading…
Reference in New Issue