|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="startPage">
|
|
<div class="startPage">
|
|
|
- <div class="sp-introduce" v-if="showIntroduce">
|
|
|
|
|
|
|
+ <div class="sp-introduce" v-show="showIntroduce" v-if="!showIntroduceType">
|
|
|
<!-- <span class="sp-i-personIcon"></span> -->
|
|
<!-- <span class="sp-i-personIcon"></span> -->
|
|
|
<img
|
|
<img
|
|
|
src="../../../../assets/icon/classroomObservation/aiImage2.png"
|
|
src="../../../../assets/icon/classroomObservation/aiImage2.png"
|
|
@@ -18,6 +18,24 @@
|
|
|
<span class="sp-i-icon2"></span> -->
|
|
<span class="sp-i-icon2"></span> -->
|
|
|
<div class="sp-i-btn" @click="showIntroduce = false">我已了解并关闭</div>
|
|
<div class="sp-i-btn" @click="showIntroduce = false">我已了解并关闭</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div class="sp-introduce" v-show="showIntroduce2" v-if="showIntroduceType">
|
|
|
|
|
+ <!-- <span class="sp-i-personIcon"></span> -->
|
|
|
|
|
+ <img
|
|
|
|
|
+ src="../../../../assets/icon/classroomObservation/aiImage2.png"
|
|
|
|
|
+ alt=""
|
|
|
|
|
+ />
|
|
|
|
|
+ <div class="sp-i-p-p">
|
|
|
|
|
+ <div class="sp-i-title">您好,欢迎使用课堂教学评价系统</div>
|
|
|
|
|
+ <div class="sp-i-brief">
|
|
|
|
|
+ <!-- 基于课堂录音和实录文稿进行分析,为您提供不同启发。 -->
|
|
|
|
|
+ 上传课堂实录视频或文件,生成课堂分析报告。
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- <span class="sp-i-icon1"></span>
|
|
|
|
|
+ <span class="sp-i-icon2"></span> -->
|
|
|
|
|
+ <div class="sp-i-btn" @click="closeShowIntroduce2()">我已了解并关闭</div>
|
|
|
|
|
+ </div>
|
|
|
<div class="sp-main">
|
|
<div class="sp-main">
|
|
|
<div class="sp_m_box">
|
|
<div class="sp_m_box">
|
|
|
<div class="sp_m_b_top">
|
|
<div class="sp_m_b_top">
|
|
@@ -126,9 +144,11 @@ export default {
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
- showIntroduce: true,
|
|
|
|
|
|
|
+ showIntroduce: false,
|
|
|
|
|
+ showIntroduce2:window.localStorage.getItem('showIntroduce2') !=='false',
|
|
|
inputValue: [],
|
|
inputValue: [],
|
|
|
- teacherList: []
|
|
|
|
|
|
|
+ teacherList: [],
|
|
|
|
|
+ showIntroduceType:this.$route.query["showIntroduceType"]
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
@@ -145,7 +165,11 @@ export default {
|
|
|
},
|
|
},
|
|
|
addNew(){
|
|
addNew(){
|
|
|
this.$parent.onClickAddNewVoiceprint();
|
|
this.$parent.onClickAddNewVoiceprint();
|
|
|
- }
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ closeShowIntroduce2(){
|
|
|
|
|
+ this.showIntroduce2 = false;
|
|
|
|
|
+ window.localStorage.setItem('showIntroduce2', 'false');
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|