|
@@ -216,15 +216,13 @@ export default {
|
|
|
<el-col xs={24} sm={24} md={8} lg={8} xl={8}>
|
|
|
<div class='info'>
|
|
|
<div class='info_title'>买家信息</div>
|
|
|
- {formData.saleStatus
|
|
|
- ? <div class='info_bottom'>
|
|
|
+ <div class='info_bottom'>
|
|
|
<div class='info_bottom_lt'>
|
|
|
- {this.formData.userPic ? <el-image
|
|
|
+ <el-image
|
|
|
style='width: 40px; height: 40px'
|
|
|
- src={this.$imageUrl + this.formData.userPic}
|
|
|
+ src={this.$imageUrl + this?.formData?.userPic}
|
|
|
>
|
|
|
- </el-image> : null
|
|
|
- }
|
|
|
+ </el-image>
|
|
|
</div>
|
|
|
<div class='info_bottom_rt'>
|
|
|
<div>微信昵称:{formData.buyerUserName}</div>
|
|
@@ -233,13 +231,13 @@ export default {
|
|
|
<div>收货人地址:{formData.address}</div>
|
|
|
<div>支付方式:{formData.payType === 'WECHAT' ? '微信支付' : ''}</div>
|
|
|
</div>
|
|
|
- </div> : null}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col xs={24} sm={24} md={8} lg={8} xl={8}>
|
|
|
<div class='info'>
|
|
|
<div class='info_title'>物流信息</div>
|
|
|
- {formData.logisticsNum ? <div class='info_bottom'>
|
|
|
+ <div class='info_bottom'>
|
|
|
<div class='info_bottom_rt'>
|
|
|
<div>
|
|
|
<el-radio-group value={formData.logisticsType}>
|
|
@@ -253,7 +251,7 @@ export default {
|
|
|
>查看物流
|
|
|
</el-button>
|
|
|
</div>
|
|
|
- </div> : null}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -322,11 +320,10 @@ export default {
|
|
|
.info_bottom_lt {
|
|
|
width: 40px;
|
|
|
height: 40px;
|
|
|
- //background-color: rgb(136, 235, 154);
|
|
|
}
|
|
|
|
|
|
.info_bottom_rt {
|
|
|
- padding: 10px 0 0 10px;
|
|
|
+ padding: 0 0 0 10px;
|
|
|
line-height: 30px;
|
|
|
|
|
|
.photoPZ {
|