|
@@ -69,7 +69,7 @@
|
|
|
<el-table-column show-overflow-tooltip prop="company_name" label="组织名称" width="200" />
|
|
|
<el-table-column show-overflow-tooltip prop="company_number" label="组织编号" width="200" />
|
|
|
<el-table-column show-overflow-tooltip prop="name" label="姓名" width="200" />
|
|
|
- <el-table-column show-overflow-tooltip prop="account" label="账户" width="220" />
|
|
|
+ <el-table-column show-overflow-tooltip prop="account" label="账户" width="250" />
|
|
|
<el-table-column fixed="right" label="操作" width="250">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-button link type="text" size="small" @click="ajax__open_stop(row.userid)">停用</el-button>
|
|
@@ -204,9 +204,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- onSubmit() {
|
|
|
- console.log('submit!');
|
|
|
- },
|
|
|
// 移动按钮,将isOrgFormVisible区域显示
|
|
|
run() {
|
|
|
this.isOrgFormVisible = true;
|
|
@@ -242,14 +239,7 @@ export default {
|
|
|
this.up_page = false;
|
|
|
this.down_page = true;
|
|
|
},
|
|
|
- // 处理每页条目数量变化
|
|
|
- handleSizeChange(val) {
|
|
|
- console.log(`每页 ${val} 条`);
|
|
|
- },
|
|
|
- // 处理当前页变化
|
|
|
- handleCurrentChange(val) {
|
|
|
- console.log(`当前页: ${val}`);
|
|
|
- },
|
|
|
+
|
|
|
// 页码扩展按钮
|
|
|
handlePageChange(page) {
|
|
|
this.currentPage = page;
|
|
@@ -486,9 +476,8 @@ body{
|
|
|
.button_top{
|
|
|
width: 450px;
|
|
|
/* border: 1px solid red; */
|
|
|
- height: 60px;
|
|
|
+ height: 35px;
|
|
|
margin-left: 120px;
|
|
|
- margin-top: 30px;
|
|
|
letter-spacing: 2px; /* 设置字母间距为 2 像素 */
|
|
|
}
|
|
|
.button_top a{
|
|
@@ -530,7 +519,7 @@ body{
|
|
|
color: black;
|
|
|
font-weight: bold;
|
|
|
margin-left: -890px;
|
|
|
- margin-top: 80px;
|
|
|
+ margin-top: 53px;
|
|
|
float: left;
|
|
|
}
|
|
|
|
|
@@ -589,6 +578,10 @@ body{
|
|
|
.el-checkbox:last-of-type {
|
|
|
margin-right: 28px; /* 自定义你的间距 */
|
|
|
}
|
|
|
+.el-checkbox span{
|
|
|
+ margin-left: 40px;
|
|
|
+}
|
|
|
+
|
|
|
.checkbox-left {
|
|
|
flex-direction: row-reverse; /* 选择框在右侧 */
|
|
|
display: flex; /* 使用 Flexbox */
|
|
@@ -607,9 +600,6 @@ body{
|
|
|
bottom: 0; /* 距离底部 */
|
|
|
left: 5%; /* 调整下划线的水平位置,设置为10% */
|
|
|
}
|
|
|
-.el-checkbox span{
|
|
|
- margin-left: 40px;
|
|
|
-}
|
|
|
/* 组织名称 */
|
|
|
.checkbox-company {
|
|
|
margin-top: 60px; /* 可选:设置顶部间距 */
|
|
@@ -725,7 +715,7 @@ body{
|
|
|
.Pagetion {
|
|
|
width: auto;
|
|
|
height: 60px;
|
|
|
- margin-top: 30px;
|
|
|
+ /* margin-top: 30px; */
|
|
|
margin-left: 200px;
|
|
|
float: left;
|
|
|
}
|
|
@@ -757,4 +747,14 @@ body{
|
|
|
border: 1px solid rgb(225, 225, 225);
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
}
|
|
|
+.el-table .el-table__cell {
|
|
|
+ padding: 12px 0;
|
|
|
+ min-width: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ vertical-align: middle;
|
|
|
+ position: relative;
|
|
|
+ text-align: left;
|
|
|
+ height: 80px;
|
|
|
+}
|
|
|
</style>
|