Commit 5b90eb2d by 胡锦波

1. up

parent a6dd8cb2
...@@ -47,13 +47,21 @@ ...@@ -47,13 +47,21 @@
> >
<el-table-column type="selection"></el-table-column> <el-table-column type="selection"></el-table-column>
<el-table-column label="姓名" width="140px"> <el-table-column
label="姓名"
min-width="70px"
max-width="140px"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.name || "-" }}</span> <span>{{ scope.row.name || "-" }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="手机号" width="160px"> <el-table-column
label="手机号"
min-width="120px"
max-width="160px"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.mobile || "-" }}</span> <span>{{ scope.row.mobile || "-" }}</span>
</template> </template>
...@@ -73,7 +81,11 @@ ...@@ -73,7 +81,11 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="状态" width="140px"> <el-table-column
label="状态"
min-width="70px"
max-width="140px"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span <span
:class="scope.row.joined ? 'joined' : 'waiting'" :class="scope.row.joined ? 'joined' : 'waiting'"
...@@ -90,6 +102,8 @@ ...@@ -90,6 +102,8 @@
label="操作" label="操作"
width="100" width="100"
align="center" align="center"
min-width="70px"
max-width="100px"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<mg-button <mg-button
......
...@@ -348,20 +348,6 @@ ...@@ -348,20 +348,6 @@
cursor: pointer; cursor: pointer;
} }
.tabs {
text-align: center;
margin: 30px 0;
margin-top: -10px;
.el-radio-group {
width: 350px;
.el-radio-button {
width: 175px;
}
}
}
.item { .item {
display: flex; display: flex;
align-items: center; align-items: center;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment