|
|
@@ -11,7 +11,7 @@
|
|
|
:tableColumns="teacherTableColumns"
|
|
|
:tableData="teacherList"
|
|
|
:tableRowClassName="tableRowClassName"
|
|
|
- @rowClick="HandleSelectTeacher"
|
|
|
+ @rowClick="(teacher)=> store.state.evaluationManageStepData.isAllowDeleteOrEdit ? HandleSelectTeacher(teacher) : ''"
|
|
|
></Table>
|
|
|
|
|
|
</div>
|
|
|
@@ -28,7 +28,8 @@
|
|
|
</TabSearch>
|
|
|
</div>
|
|
|
<div class="content_right operation_btn el_button">
|
|
|
- <el-button type="text" class="delete_item" plain @click="ClearTeachingRelationship">清空授课</el-button>
|
|
|
+ <el-button :class="[store.state.evaluationManageStepData.isAllowDeleteOrEdit ? 'delete_item' : 'is-disabled']"
|
|
|
+ @click="store.state.evaluationManageStepData.isAllowDeleteOrEdit ? ClearTeachingRelationship() : ''">清空授课</el-button>
|
|
|
<el-button class="custom_border_btn" @click="HandleExportExcel">批量导出</el-button>
|
|
|
<el-upload action="#"
|
|
|
:auto-upload="false"
|
|
|
@@ -36,7 +37,8 @@
|
|
|
@change="(file)=>HandleImportExcel(file)">
|
|
|
<el-button class="custom_border_btn"> 批量导入</el-button>
|
|
|
</el-upload>
|
|
|
- <el-button class="button_background" @click="FinishTeachingRelationship">完成</el-button>
|
|
|
+ <el-button :class="[store.state.evaluationManageStepData.isAllowDeleteOrEdit ? 'button_background' : 'is-disabled']"
|
|
|
+ @click="store.state.evaluationManageStepData.isAllowDeleteOrEdit ? FinishTeachingRelationship() : '' ">完成</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
@@ -56,6 +58,7 @@
|
|
|
{{ selectedTeacher?.teacherId ? `当前选中的教师:${selectedTeacher.teacherName} ${selectedTeacher.userAccount}` : '暂无选中的教师' }}
|
|
|
</span>
|
|
|
<el-switch v-model="isConfigMode"
|
|
|
+ :disabled="store.state.evaluationManageStepData.isAllowDeleteOrEdit? false : true"
|
|
|
style="--el-switch-on-color: #2E64FA"
|
|
|
active-text="选中教师配置任课关系" />
|
|
|
</div>
|
|
|
@@ -200,7 +203,7 @@ const route = useRoute()
|
|
|
const store = useStore()
|
|
|
|
|
|
// 配置模式开关
|
|
|
-const isConfigMode = ref(true);
|
|
|
+const isConfigMode = ref(false);
|
|
|
|
|
|
|
|
|
// 1. 查询参数 列表 配置
|