From 7c124560b27add087b4aa8fc457de1e84f950d9c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Tue, 23 Nov 2021 15:19:33 +0800
Subject: [PATCH] 样式 (1:搜索按钮放入右侧,2:隐藏表格显影按钮,3:页码改为(15,30,50,100))
---
public/papersApply.html | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/public/papersApply.html b/public/papersApply.html
index 9607aa9..a1b23e6 100644
--- a/public/papersApply.html
+++ b/public/papersApply.html
@@ -12,13 +12,13 @@
justify-content: center;
flex-direction: column;
}
-
+
.excelPrint {
width: 100%;
text-align: center;
margin-top: 50px;
}
-
+
.print {
/* position: absolute;
left: 47%;
@@ -31,7 +31,7 @@
background-color: #1D5CE4;
letter-spacing: 4px;
}
-
+
.user-info-table {
margin-top: 30px;
width: 90%;
@@ -39,28 +39,28 @@
border: 1px solid #000;
background-color: #fff;
}
-
+
.user-info-tr {
height: 50px;
font-size: 14px;
}
-
+
.avatar {
width: 140px;
height: 190px;
}
-
+
.title {
margin-top: 20px;
font-size: 28px;
font-weight: 500;
}
-
+
.avatar {
width: 140px;
height: 190px;
}
-
+
.my-picture {
width: 150px;
/* height: 200px; */
@@ -86,7 +86,7 @@
</div>
</div>
<script>
- var getData = function(name) {
+ var getData = function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
@@ -96,7 +96,7 @@
var name = JSON.parse(getData("data")).name;
// console.log(JSON.parse(getData("data")), 111);
- axios.get('http://223.82.109.183:2080/api/apply/getApplyDetailList?examId=' + id).then(function(res) {
+ axios.get('http://223.82.109.183:2080/api/apply/getApplyDetailList?examId=' + id).then(function (res) {
// axios.get('http://localhost:81/apply/getApplyDetailList?examId=' + id).then(function(res) {
var data = res.data;
var list = data.applyList;
@@ -108,7 +108,7 @@
<td width="60px">性别</td>
<td width="120px">准考证号</td>
<td width="160px">身份证号</td>
- <td width="300px">单位名称</td>
+ <td width="300px">企业名称</td>
<td width="100px">报考证件</td>
<td width="200px">报名时间</td>
</tr>`
@@ -117,7 +117,7 @@
str += `
<tr class="user-info-tr">
<td>${list[k].realName}</td>
- <td>${list[k].sex==1?"男":(data.sex==2?"女":"")}</td>
+ <td>${list[k].sex == 1 ? "男" : (data.sex == 2 ? "女" : "")}</td>
<td>${list[k].candidateNo}</td>
<td>${list[k].idCardNo}</td>
<td>${list[k].deptName}</td>
--
Gitblit v1.9.3