|
@@ -159,7 +159,7 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
<el-image
|
|
|
- v-if="certificates != ''"
|
|
|
+ v-if="certificates != null"
|
|
|
:src="certificates"
|
|
|
:preview-src-list="[certificates]"
|
|
|
:style="{ width: '100px', height: '100px' }"
|
|
@@ -484,7 +484,7 @@ export default {
|
|
|
orderTypeOptions:[],
|
|
|
payTypeOptions:[],
|
|
|
statusOptions:[],
|
|
|
- certificates:'',
|
|
|
+ certificates:null,
|
|
|
orderStatus:null,
|
|
|
order:null,
|
|
|
user:{},
|
|
@@ -714,7 +714,7 @@ export default {
|
|
|
},
|
|
|
getOrder(orderId){
|
|
|
this.orderId=orderId;
|
|
|
- this.certificates = '';
|
|
|
+ this.certificates = null;
|
|
|
getStoreOrder(orderId).then(response => {
|
|
|
this.order = response.order;
|
|
|
if(response.order.certificates != null){
|