|
@@ -62,7 +62,7 @@
|
|
|
<div class='info_title'>卖家信息</div>
|
|
|
<div class='info_bottom'>
|
|
|
<div class='info_bottom_lt'>
|
|
|
- <el-image style='width: 40px; height: 40px' :src="orderDetail.sellUrl"></el-image>
|
|
|
+ <el-image v-if="orderDetail.sellUrl" style='width: 40px; height: 40px' :src="orderDetail.sellUrl"></el-image>
|
|
|
</div>
|
|
|
<div class='info_bottom_rt'>
|
|
|
<div>昵称:{{orderDetail.sellName}}</div>
|
|
@@ -77,7 +77,7 @@
|
|
|
<div class='info_title'>买家信息</div>
|
|
|
<div class='info_bottom'>
|
|
|
<div class='info_bottom_lt'>
|
|
|
- <el-image style='width: 40px; height: 40px' :src="orderDetail.wechatUserUrl">
|
|
|
+ <el-image v-if="orderDetail.wechatUserUrl" style='width: 40px; height: 40px' :src="orderDetail.wechatUserUrl">
|
|
|
</el-image>
|
|
|
</div>
|
|
|
<div class='info_bottom_rt'>
|
|
@@ -134,7 +134,7 @@
|
|
|
</div>
|
|
|
</zj-page-fill>
|
|
|
<div v-if="~['WAIT'].indexOf(orderDetail.status)" style="box-sizing: border-box; padding: 10px; text-align: right;">
|
|
|
- <el-button size="small" @click="faqituikuan">确定</el-button>
|
|
|
+ <el-button type="primary" size="small" @click="faqituikuan">确定</el-button>
|
|
|
</div>
|
|
|
</zj-page-container>
|
|
|
</template>
|