|
@@ -18,7 +18,7 @@
|
|
|
@edit="onEdit"
|
|
|
/>
|
|
|
<div class="addr-null"
|
|
|
- v-show="isShowAddrNull"
|
|
|
+ v-if="isShowAddrNull"
|
|
|
>
|
|
|
<img src="@/assets/images/home/addr-null.png" alt="">
|
|
|
<div class="addr-null-title">暂无地址~</div>
|
|
@@ -161,8 +161,6 @@ export default {
|
|
|
return v1;
|
|
|
});
|
|
|
this.list.push(...arr);//把arr数组解构放到list列表渲染
|
|
|
- console.log(this.list.length);
|
|
|
- console.log(this.isShowAddrNull);
|
|
|
if(this.list.length != 0){
|
|
|
this.isShowAddrNull = false;
|
|
|
}else{
|
|
@@ -221,7 +219,6 @@ export default {
|
|
|
width: 72px;
|
|
|
height: 17px;
|
|
|
font-size: 18px;
|
|
|
- font-family: Source Han Sans CN;
|
|
|
font-weight: 500;
|
|
|
color: #1A1A1A;
|
|
|
line-height: 16px;
|
|
@@ -232,7 +229,6 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 15px;
|
|
|
font-size: 15px;
|
|
|
- font-family: Source Han Sans CN;
|
|
|
font-weight: 500;
|
|
|
color: #333333;
|
|
|
line-height: 6px;
|
|
@@ -242,7 +238,6 @@ export default {
|
|
|
width: 247px;
|
|
|
height: 13px;
|
|
|
font-size: 13px;
|
|
|
- font-family: Source Han Sans CN;
|
|
|
font-weight: 400;
|
|
|
color: #999999;
|
|
|
line-height: 13px;
|
|
@@ -252,7 +247,6 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 22px;
|
|
|
font-size: 15px;
|
|
|
- font-family: DIN;
|
|
|
font-weight: 500;
|
|
|
color: #333333;
|
|
|
line-height: 12px;
|
|
@@ -278,7 +272,6 @@ export default {
|
|
|
border-radius: 15px;
|
|
|
text-align: center;
|
|
|
font-size: 10px;
|
|
|
- font-family: Source Han Sans CN;
|
|
|
font-weight: 400;
|
|
|
color: #333333;
|
|
|
line-height: 15px;
|
|
@@ -298,7 +291,6 @@ export default {
|
|
|
width: 107px;
|
|
|
height: 17px;
|
|
|
font-size: 18px;
|
|
|
- font-family: Source Han Sans CN;
|
|
|
font-weight: 500;
|
|
|
color: #1A1A1A;
|
|
|
line-height: 26px;
|
|
@@ -309,8 +301,9 @@ export default {
|
|
|
height: 102px;
|
|
|
box-sizing: border-box;
|
|
|
position: fixed;
|
|
|
- left: 130px;
|
|
|
+ left: 50%;
|
|
|
top: 150px;
|
|
|
+ transform: translateX(-50%);
|
|
|
text-align: center;
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|