Commit 09826e20 by 罗承锋

修复后台展示问题

parent 826729d5
...@@ -1206,10 +1206,10 @@ ...@@ -1206,10 +1206,10 @@
this.edit = false; this.edit = false;
}, },
showDrawer(data,type) { showDrawer(data,type) {
this.certificatePhoto.push(this.apis + data.idCardz.replace("manager", "app")); this.certificatePhoto.push(this.apis + (data.idCardz != null ? data.idCardz.replace("manager", "app") : ""));
this.certificatePhoto.push(this.apis + data.idCardf.replace("manager", "app")); this.certificatePhoto.push(this.apis + (data.idCardf != null ? data.idCardf.replace("manager", "app") : ""));
this.certificatePhoto.push(this.apis + data.idCardzs.replace("manager", "app")); this.certificatePhoto.push(this.apis + (data.idCardzs != null ? data.idCardzs.replace("manager", "app") : ""));
this.certificatePhoto.push(this.apis + data.studentCard.replace("manager", "app")); this.certificatePhoto.push(this.apis + (data.studentCard != null ? data.studentCard.replace("manager", "app") : ""));
/* this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png') /* this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png')
this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png') this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png')
this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png') this.certificatePhoto.push('http://yrym.winsun-aly.com/gdtel-xyzx-hhr/images/yrym-ruanyan-logo.png')
......
...@@ -328,7 +328,7 @@ ...@@ -328,7 +328,7 @@
<p :style="pStyle">数据信息</p> <p :style="pStyle">数据信息</p>
<a-row> <a-row>
<a-col :span="12"> <a-col :span="12">
<p>预留字段1:</p> <p>备注:{{orderInfo.msg}}</p>
</a-col> </a-col>
<a-col :span="12"> <a-col :span="12">
<p>预留字段2:{{ orderInfo.orderRf2 }}</p> <p>预留字段2:{{ orderInfo.orderRf2 }}</p>
...@@ -565,6 +565,7 @@ export default { ...@@ -565,6 +565,7 @@ export default {
orderStatus: "", //订单状态 orderStatus: "", //订单状态
id: "", id: "",
idCard: "", idCard: "",
msg: ""
}; };
this.visible = false; this.visible = false;
}, },
...@@ -602,6 +603,7 @@ export default { ...@@ -602,6 +603,7 @@ export default {
orderStatus: data.orderStatus, //订单状态 orderStatus: data.orderStatus, //订单状态
id: data.id, id: data.id,
idCard: data.idCard, idCard: data.idCard,
msg: data.msg
}; };
this.visible = true; this.visible = true;
}, },
......
...@@ -560,9 +560,9 @@ ...@@ -560,9 +560,9 @@
let url= ""; let url= "";
console.log(data); console.log(data);
if (data.serviceQrcode != undefined) { if (data.serviceQrcode != undefined) {
url = this.baseuploadUrl()+"manager/ciop"+data.serviceQrcode.replace("enclosure", ""); url = this.baseuploadUrl()+"app/ciop"+data.serviceQrcode.replace("enclosure", "");
}else{ }else{
url = this.baseuploadUrl()+"manager/"; url = this.baseuploadUrl()+"app/";
} }
if (!(data.serviceQrcode == null || data.serviceQrcode=="")) { if (!(data.serviceQrcode == null || data.serviceQrcode=="")) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment