Commit 09826e20 by 罗承锋

修复后台展示问题

parent 826729d5
......@@ -1206,10 +1206,10 @@
this.edit = false;
},
showDrawer(data,type) {
this.certificatePhoto.push(this.apis + data.idCardz.replace("manager", "app"));
this.certificatePhoto.push(this.apis + data.idCardf.replace("manager", "app"));
this.certificatePhoto.push(this.apis + data.idCardzs.replace("manager", "app"));
this.certificatePhoto.push(this.apis + data.studentCard.replace("manager", "app"));
this.certificatePhoto.push(this.apis + (data.idCardz != null ? data.idCardz.replace("manager", "app") : ""));
this.certificatePhoto.push(this.apis + (data.idCardf != null ? data.idCardf.replace("manager", "app") : ""));
this.certificatePhoto.push(this.apis + (data.idCardzs != null ? data.idCardzs.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')
......
......@@ -328,7 +328,7 @@
<p :style="pStyle">数据信息</p>
<a-row>
<a-col :span="12">
<p>预留字段1:</p>
<p>备注:{{orderInfo.msg}}</p>
</a-col>
<a-col :span="12">
<p>预留字段2:{{ orderInfo.orderRf2 }}</p>
......@@ -565,6 +565,7 @@ export default {
orderStatus: "", //订单状态
id: "",
idCard: "",
msg: ""
};
this.visible = false;
},
......@@ -602,6 +603,7 @@ export default {
orderStatus: data.orderStatus, //订单状态
id: data.id,
idCard: data.idCard,
msg: data.msg
};
this.visible = true;
},
......
......@@ -560,9 +560,9 @@
let url= "";
console.log(data);
if (data.serviceQrcode != undefined) {
url = this.baseuploadUrl()+"manager/ciop"+data.serviceQrcode.replace("enclosure", "");
url = this.baseuploadUrl()+"app/ciop"+data.serviceQrcode.replace("enclosure", "");
}else{
url = this.baseuploadUrl()+"manager/";
url = this.baseuploadUrl()+"app/";
}
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