|
@@ -11,7 +11,7 @@
|
|
|
:inline="true"
|
|
|
:model="formSearch"
|
|
|
label-position="right"
|
|
|
- label-width="100px"
|
|
|
+ label-width="100"
|
|
|
>
|
|
|
<el-row :gutter="5">
|
|
|
<el-form-item label="顶级机构" class="pull-left">
|
|
@@ -217,43 +217,39 @@
|
|
|
@selection-change="selectChange"
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" />
|
|
|
- <el-table-column width="80" label="ID">
|
|
|
+ <el-table-column width="50" label="ID">
|
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="100" label="中心代码">
|
|
|
+ <el-table-column width="150" label="中心代码">
|
|
|
<span slot-scope="scope">{{ scope.row.code }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="200" label="中心名称">
|
|
|
+ <el-table-column width="150" label="中心名称">
|
|
|
<span slot-scope="scope">{{ scope.row.name }}</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column width="100" label="负责人">
|
|
|
<span slot-scope="scope">{{ scope.row.contacts }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="150" label="联系方式">
|
|
|
+ <el-table-column width="120" label="联系方式">
|
|
|
<span slot-scope="scope">{{ scope.row.telephone }}</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column width="170" label="更新时间">
|
|
|
<span slot-scope="scope">{{ scope.row.updateTime }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="100" label="状态">
|
|
|
+ <el-table-column width="70" label="状态">
|
|
|
<span slot-scope="scope">
|
|
|
<el-tag :type="getTag(scope.row.enable)">
|
|
|
{{ getStatus(scope.row.enable) }}
|
|
|
</el-tag>
|
|
|
</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column :context="_self" label="操作" width="150">
|
|
|
- <div
|
|
|
- slot-scope="scope"
|
|
|
- style="display: flex; flex-direction: column;"
|
|
|
- >
|
|
|
+ <el-table-column :context="_self" label="操作">
|
|
|
+ <div slot-scope="scope">
|
|
|
<el-button size="mini" type="primary" @click="edit(scope.row);">
|
|
|
- <i class="el-icon-edit"></i> 修改
|
|
|
+ <i class="el-icon-edit"></i> 编辑
|
|
|
</el-button>
|
|
|
- <span style="line-height: 5px"> </span>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
- type="info"
|
|
|
+ type="primary"
|
|
|
@click="toExamSite(scope.row);"
|
|
|
>
|
|
|
考点设置
|