...
|
...
|
@@ -224,49 +224,55 @@ |
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="name"
|
|
|
label="姓名"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="gender"
|
|
|
label="性别"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="nationality"
|
|
|
label="国籍"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="certType"
|
|
|
label="证件类型"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="ceterNo"
|
|
|
label="证件编辑"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="gareer"
|
|
|
label="职务"
|
|
|
width="150">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
prop="meno"
|
|
|
label="备注"
|
|
|
width="350">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<div class="block">
|
|
|
<el-pagination
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
:current-page="currentPage"
|
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
|
:page-size="pageSize"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
</el-row>
|
|
|
<!--对话提示框-->
|
|
|
<el-row>
|
|
|
<el-dialog
|
...
|
...
|
@@ -458,6 +464,10 @@ background-color: white; |
|
|
flightDate: '20160502',
|
|
|
}],
|
|
|
centerDialogVisible:false,
|
|
|
labelPosition:'left',
|
|
|
currentPage: 1,
|
|
|
pageSize:10,
|
|
|
total:0,
|
|
|
msg:undefined
|
|
|
}
|
|
|
},
|
...
|
...
|
@@ -491,11 +501,12 @@ background-color: white; |
|
|
},
|
|
|
// 分页
|
|
|
handleSizeChange(val) {
|
|
|
console.log(`每页 ${val} 条`);
|
|
|
this.pageSize=val;
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
console.log(`当前页: ${val}`);
|
|
|
},
|
|
|
this.currentPage=val;
|
|
|
this.submitForm();
|
|
|
}
|
|
|
},
|
|
|
mounted(){
|
|
|
this.defaultData();
|
...
|
...
|
|