|
@@ -219,10 +219,9 @@
|
|
|
border
|
|
|
resizable
|
|
|
stripe
|
|
|
- style="width: 100%;text-align:center;"
|
|
|
@selection-change="selectChange"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="50" />
|
|
|
+ <el-table-column type="selection" width="35" />
|
|
|
<el-table-column prop="id" label="ID" width="60" />
|
|
|
<el-table-column label="学校名称">
|
|
|
<template slot-scope="scope">
|
|
@@ -262,19 +261,29 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="domainName" width="190" label="学校域名" />
|
|
|
<el-table-column prop="updateTime" width="170" label="更新时间" />
|
|
|
- <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>
|
|
|
+ <!-- <el-tag :type="getTag(scope.row.enable)"> -->
|
|
|
+ {{ getStatus(scope.row.enable) }}
|
|
|
+ <!-- </el-tag> -->
|
|
|
</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column :context="_self" width="200" prop="" label="操作">
|
|
|
<div slot-scope="scope">
|
|
|
- <el-button size="mini" type="primary" @click="edit(scope.row)">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="edit(scope.row)"
|
|
|
+ >
|
|
|
<i class="el-icon-edit"></i> 编辑
|
|
|
</el-button>
|
|
|
- <el-button size="mini" type="primary" @click="setLogo(scope.row)">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="setLogo(scope.row)"
|
|
|
+ >
|
|
|
logo上传
|
|
|
</el-button>
|
|
|
</div>
|
|
@@ -693,10 +702,6 @@ export default {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
|
|
|
-.el-table th > .cell {
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
.el-upload {
|
|
|
width: 80px;
|
|
|
}
|