| | |
| | | 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> |
| | |
| | | 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> |
| | |
| | | <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> |
| | | |