|
@@ -4,23 +4,16 @@
|
|
<view class='line'>
|
|
<view class='line'>
|
|
<image src='@/static/images/line.jpg' v-if="addressList.length"></image>
|
|
<image src='@/static/images/line.jpg' v-if="addressList.length"></image>
|
|
</view>
|
|
</view>
|
|
- <radio-group class="radio-group" @change="radioChange" v-if="addressList.length">
|
|
|
|
|
|
+ <radio-group class="radio-group" @change="radioChange" v-if="addressList.length">
|
|
<view class='item' v-for="(item,index) in addressList" :key="index">
|
|
<view class='item' v-for="(item,index) in addressList" :key="index">
|
|
<view class='address'>
|
|
<view class='address'>
|
|
<view class='consignee'>{{$t(`收货人`)}}:{{item.realName}}<text class='phone'>{{item.phone}}</text></view>
|
|
<view class='consignee'>{{$t(`收货人`)}}:{{item.realName}}<text class='phone'>{{item.phone}}</text></view>
|
|
<view>{{$t(`收货地址`)}}:{{item.province}}{{item.city}}{{item.district}}{{item.detail}}</view>
|
|
<view>{{$t(`收货地址`)}}:{{item.province}}{{item.city}}{{item.district}}{{item.detail}}</view>
|
|
</view>
|
|
</view>
|
|
<view class='operation acea-row row-between-wrapper'>
|
|
<view class='operation acea-row row-between-wrapper'>
|
|
- <!-- #ifndef MP -->
|
|
|
|
- <radio class="radio" :value="index.toString()" :checked="item.defaultState ===2">
|
|
|
|
- <text>{{$t(`设为默认`)}}</text>
|
|
|
|
|
|
+ <radio class="radio" :value="index" :checked="item.defaultState ===2">
|
|
|
|
+ <text>设为默认</text>
|
|
</radio>
|
|
</radio>
|
|
- <!-- #endif -->
|
|
|
|
- <!-- #ifdef MP -->
|
|
|
|
- <radio class="radio" :value="index" :checked="item.defaultState ===2">
|
|
|
|
- <text>{{$t(`设为默认`)}}</text>
|
|
|
|
- </radio>
|
|
|
|
- <!-- #endif -->
|
|
|
|
<view class='acea-row row-middle'>
|
|
<view class='acea-row row-middle'>
|
|
<view @click='editAddress(item.id)'><text class='iconfont icon-bianji'></text>{{$t(`编辑`)}}</view>
|
|
<view @click='editAddress(item.id)'><text class='iconfont icon-bianji'></text>{{$t(`编辑`)}}</view>
|
|
<view @click='delAddress(index)'><text class='iconfont icon-shanchu'></text>{{$t(`删除`)}}</view>
|
|
<view @click='delAddress(index)'><text class='iconfont icon-shanchu'></text>{{$t(`删除`)}}</view>
|
|
@@ -446,4 +439,8 @@
|
|
.address-management .footer .addressBnt.wxbnt {
|
|
.address-management .footer .addressBnt.wxbnt {
|
|
background-color: #fe960f;
|
|
background-color: #fe960f;
|
|
}
|
|
}
|
|
|
|
+ .bg-color{
|
|
|
|
+ background-color: #B42A3E !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
</style>
|
|
</style>
|