|
|
@@ -64,7 +64,7 @@
|
|
|
<el-table-column prop="tenantCode" label="学校编号" width="80" fixed="left" align="center" show-overflow-tooltip />
|
|
|
<el-table-column prop="tenantName" label="学校名称" min-width="160" fixed="left" align="center" show-overflow-tooltip>
|
|
|
<template #default="{row}">
|
|
|
- <span @click="GoTeach(row)" class="text_color_blue" :class="row.status == 0 ? 'disabled_text' : ''">{{ row.tenantName }}</span>
|
|
|
+ <span @click="GoTeach(row)" :class="row.status == 0 || !permissions.includes('UserInfo') ? '' : 'text_color_blue'">{{ row.tenantName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="abbreviation" label="学校简称" width="120" align="center" show-overflow-tooltip>
|
|
|
@@ -390,6 +390,9 @@ const Refresh = () => {
|
|
|
.button_editor.text_color_orange {
|
|
|
color: #FB9F34;
|
|
|
}
|
|
|
+.button_delete {
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
.button_editor.text_color_red {
|
|
|
color: #F56C6C;
|
|
|
}
|
|
|
@@ -398,7 +401,7 @@ const Refresh = () => {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
.disabled_text {
|
|
|
- color: #666;
|
|
|
+ color: #ccc;
|
|
|
cursor: not-allowed;
|
|
|
}
|
|
|
</style>
|