Commit 5b90eb2d by 胡锦波

1. up

parent a6dd8cb2
......@@ -47,13 +47,21 @@
>
<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">
<span>{{ scope.row.name || "-" }}</span>
</template>
</el-table-column>
<el-table-column label="手机号" width="160px">
<el-table-column
label="手机号"
min-width="120px"
max-width="160px"
>
<template slot-scope="scope">
<span>{{ scope.row.mobile || "-" }}</span>
</template>
......@@ -73,7 +81,11 @@
</template>
</el-table-column>
<el-table-column label="状态" width="140px">
<el-table-column
label="状态"
min-width="70px"
max-width="140px"
>
<template slot-scope="scope">
<span
:class="scope.row.joined ? 'joined' : 'waiting'"
......@@ -90,6 +102,8 @@
label="操作"
width="100"
align="center"
min-width="70px"
max-width="100px"
>
<template slot-scope="scope">
<mg-button
......
......@@ -348,20 +348,6 @@
cursor: pointer;
}
.tabs {
text-align: center;
margin: 30px 0;
margin-top: -10px;
.el-radio-group {
width: 350px;
.el-radio-button {
width: 175px;
}
}
}
.item {
display: flex;
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