From 05150461ca543e3eff7f869a24f4813e47bd4d8c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Tue, 03 Aug 2021 14:59:50 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_enterprises
---
public/papers.html | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/public/papers.html b/public/papers.html
index 09d177a..93b2421 100644
--- a/public/papers.html
+++ b/public/papers.html
@@ -38,6 +38,11 @@
width: 140px;
height: 190px;
}
+
+ .my-picture {
+ width: 150px;
+ /* height: 200px; */
+ }
</style>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
@@ -113,8 +118,10 @@
return null;
};
var id = JSON.parse(getData("data")).id;
+ var examType = JSON.parse(getData("data")).examType;
+ // console.log(JSON.parse(getData("data")), 111);
- axios.get('http://192.168.0.114:81/apply/getApplyInfo?id=' + id).then(function(res) {
+ axios.get('http://192.168.0.114:81/apply/getApplyInfo?id=' + id + "&applyExamType=" + examType).then(function(res) {
var data = res.data.data;
var str = `<span class="title">${data.examName}</span>
<span class="title">准考证信息</span>
@@ -125,7 +132,7 @@
<td width="150px">身份证号</td>
<td width="150px">${data.idCardNo}</td>
<td rowspan="4" align="center" width="150px"">
- 照片
+ <img class="my-picture" src="${data.myPicture}" />
</td>
</tr>
--
Gitblit v1.9.3