2023年6月15日 修改评课量表
This commit is contained in:
parent
a9c3e4d204
commit
a902f5e710
|
@ -5,7 +5,7 @@
|
|||
<a-row :gutter="24">
|
||||
<a-col :lg="8">
|
||||
<a-form-item label="学期">
|
||||
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam.xqxn" dictCode="kc_xqxn_history,title,title"/>
|
||||
<j-dict-select-tag ref="xqDictTag" placeholder="请选择学期" v-model:value="queryParam.xqxn" dictCode="kc_xqxn_history,title,title,true order by start_time desc"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!--<template v-if="toggleSearchStatus">-->
|
||||
|
@ -43,7 +43,9 @@
|
|||
<a-table-column title="学期" data-index="xqxn"/>
|
||||
<a-table-column title="学院" data-index="dwmc"/>
|
||||
<a-table-column title="教工号" data-index="upuserid"/>
|
||||
<a-table-column title="教师姓名" data-index="upuser"/>
|
||||
<a-table-column title="职称" data-index="tksf"/>
|
||||
<a-table-column title="课程名称" data-index="kcmc"/>
|
||||
<a-table-column title="评价日期" data-index="upDate"/>
|
||||
<!-- <a-table-column title="评价量表" data-index="sourceName"/> -->
|
||||
<!-- 一般听课表、线上听课表、同行评价表
|
||||
|
@ -56,6 +58,7 @@
|
|||
<span v-else-if="text == '4'">同行评价表</span>
|
||||
</template>
|
||||
</a-table-column>
|
||||
<a-table-column title="数据来源" data-index="sourceName"/>
|
||||
</a-table>
|
||||
</div>
|
||||
<a-modal :visible="isShowAllLive" width="80%" style="top: 20px" title="直播" :ok-button-props="{ style: { display: 'none' } }" cancelText="关闭" @cancel="() => (isShowAllLive = false,showAllLiveRef.close())">
|
||||
|
@ -117,6 +120,19 @@ const ipagination = ref(
|
|||
}
|
||||
);
|
||||
|
||||
const xqDictTag = ref();
|
||||
|
||||
watch(() => xqDictTag.value?.dictOptions,(d) => {
|
||||
if(d){
|
||||
queryParam.value.xqxn = d[0]?.value
|
||||
nextTick(() => {
|
||||
loadData();
|
||||
})
|
||||
}
|
||||
},{
|
||||
deep:true,
|
||||
immediate:true,
|
||||
});
|
||||
|
||||
function loadData(){
|
||||
loading.value = true;
|
||||
|
|
Loading…
Reference in New Issue