|
@@ -261,9 +261,8 @@ export default {
|
|
|
<el-radio label='DELIVERY'>物流</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
- <div>快递单号:{this?.formData?.esOrderInfo?.logisticsNo}</div>
|
|
|
- <div>快递公司:{this?.formData?.esOrderInfo?.logisticsName}</div>
|
|
|
- <el-button type='primary' size='small' onClick={() => {
|
|
|
+ {this?.formData?.esOrderInfo?.logisticsType=="DELIVERY"?<div>快递单号:{this?.formData?.esOrderInfo?.logisticsNo}</div>:null}
|
|
|
+ {this?.formData?.esOrderInfo?.logisticsType=="DELIVERY"?<el-button type='primary' size='small' onClick={() => {
|
|
|
this.$router.push({
|
|
|
name: 'orderManagement',
|
|
|
params: {
|
|
@@ -273,7 +272,7 @@ export default {
|
|
|
},
|
|
|
})
|
|
|
}}>查看物流
|
|
|
- </el-button>
|
|
|
+ </el-button>:null}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|