|
@@ -33,6 +33,7 @@
|
|
|
<el-col :span="24" class="printList" ref="print">
|
|
|
<div>
|
|
|
<p>
|
|
|
+ <span class="textOver xuhao">序号</span>
|
|
|
<span class="textOver one">姓名</span>
|
|
|
<span class="textOver two">性别</span>
|
|
|
<span class="textOver three">民族</span>
|
|
@@ -46,6 +47,7 @@
|
|
|
<span class="textOver twlve">签名</span>
|
|
|
</p>
|
|
|
<p class="list" v-for="(item, index) in list" :key="index">
|
|
|
+ <span class="textOver xuhao">{{ index }}</span>
|
|
|
<span class="textOver one">{{ item.name }}</span>
|
|
|
<span class="textOver two">{{ item.gender }}</span>
|
|
|
<span class="textOver three">{{ item.nation }}</span>
|
|
@@ -127,11 +129,14 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
p {
|
|
|
+ .xuhao {
|
|
|
+ width: 40px;
|
|
|
+ }
|
|
|
.one {
|
|
|
width: 150px;
|
|
|
}
|
|
|
.two {
|
|
|
- width: 50px;
|
|
|
+ width: 40px;
|
|
|
}
|
|
|
.three {
|
|
|
width: 90px;
|
|
@@ -149,7 +154,7 @@ export default {
|
|
|
width: 70px;
|
|
|
}
|
|
|
.eight {
|
|
|
- width: 120px;
|
|
|
+ width: 110px;
|
|
|
}
|
|
|
.nine {
|
|
|
width: 70px;
|
|
@@ -158,7 +163,7 @@ export default {
|
|
|
width: 90px;
|
|
|
}
|
|
|
.twlve {
|
|
|
- width: 72.5px;
|
|
|
+ width: 50px;
|
|
|
}
|
|
|
}
|
|
|
}
|