|
@@ -46,7 +46,7 @@
|
|
|
:label-class-name="'address-column'"></el-table-column>
|
|
|
<el-table-column prop="submission_time" label="提交时间" width="450"></el-table-column>
|
|
|
<el-table-column prop="remarks" label="备注" width="450"></el-table-column>
|
|
|
- <el-table-column label="操作" width="310">
|
|
|
+ <el-table-column label="操作" width="345">
|
|
|
<template slot-scope="{ row }">
|
|
|
<button @click="ajax_move_to_approved(row.userid, row.companyNumber)"
|
|
|
style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 25px;">通过</button>
|
|
@@ -76,7 +76,7 @@
|
|
|
<el-table-column prop="submission_time" label="提交时间" width="350" />
|
|
|
<el-table-column prop="remarks" label="备注" width="350" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="300" />
|
|
|
- <el-table-column prop="open_organization" label="开通组织" width="360">
|
|
|
+ <el-table-column prop="open_organization" label="开通组织" width="395">
|
|
|
<template slot="default" slot-scope="scope">{{ scope.row.open_organization }}</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -100,7 +100,7 @@
|
|
|
<el-table-column prop="submission_time" label="提交时间" width="300" />
|
|
|
<el-table-column prop="remarks" label="备注" width="400" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="400" />
|
|
|
- <el-table-column label="操作" width="310">
|
|
|
+ <el-table-column label="操作" width="345">
|
|
|
<template slot-scope="{ row }">
|
|
|
<button @click="ajax__move_to_pending_from_rejected(row.userid, row.companyNumber)"
|
|
|
style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 25px;">移动至待审核</button>
|
|
@@ -127,7 +127,7 @@
|
|
|
<el-table-column prop="submission_time" label="提交时间" width="350" />
|
|
|
<el-table-column prop="remarks" label="备注" width="350" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="400" />
|
|
|
- <el-table-column label="操作" width="310" prop="status">
|
|
|
+ <el-table-column label="操作" width="345" prop="status">
|
|
|
<template slot="default" slot-scope="scope">
|
|
|
<!-- 根据状态值显示不同颜色的按钮 -->
|
|
|
<el-button :type="getButtonType(scope.row.status)" :disabled="false" style="border-radius: 5px; padding: 4px 12px; font-size: 14px;">
|
|
@@ -179,8 +179,8 @@ export default {
|
|
|
currentApprovedPage: 1,
|
|
|
currentRefusedPage: 1,
|
|
|
currentAllPage: 1,
|
|
|
- pageSize: 5, // 每页显示的条目数
|
|
|
- pageSizeOptions: [5, 10, 25, 50], // 可选的页大小
|
|
|
+ pageSize: 10, // 每页显示的条目数
|
|
|
+ pageSizeOptions: [10, 25, 50], // 可选的页大小
|
|
|
// 待审核数据
|
|
|
tableData: [ {
|
|
|
company: "北京科技有限公司",
|
|
@@ -739,13 +739,17 @@ export default {
|
|
|
|
|
|
<style scoped>
|
|
|
.content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: stretch;
|
|
|
width: 100%;
|
|
|
- /* position: relative; */
|
|
|
}
|
|
|
|
|
|
/* 表格容器样式 */
|
|
|
.table_container{
|
|
|
- width: 97%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100%;
|
|
|
padding: 30px;
|
|
|
}
|
|
|
|
|
@@ -811,6 +815,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.el-table {
|
|
|
+ width: 100%;
|
|
|
border: 1px solid #dcdfe6;
|
|
|
|
|
|
/* 设置表格边框 */
|
|
@@ -853,6 +858,20 @@ export default {
|
|
|
float: left;
|
|
|
}
|
|
|
|
|
|
+/* 文字移入鼠标呈现手掌样式 */
|
|
|
+.examine_title1 a{
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.examine_title2 a{
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.examine_title3 a{
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.examine_title4 a{
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
.examine_title1 p,
|
|
|
.examine_title2 p,
|
|
|
.examine_title3 p,
|