SanHQin 6 months ago
parent
commit
47811c201e

+ 169 - 0
src/components/pages/classroomObservation/components/addNewTeacherVoiceprintDialog.vue

@@ -0,0 +1,169 @@
+<template>
+  <div>
+    <el-dialog
+      :center="true"
+      :visible.sync="dialogVisible"
+      width="600px"
+      class="addTemplateDialog"
+    >
+      <!-- <div v-if="showDialog == true" class="a-dialog" v-el-drag-dialog> -->
+      <div class="a-d-top">
+        <div class="a-d-topTit"><div>新增声纹</div></div>
+  
+        <div class="a-d-t-right">
+          <span @click.stop="close()">×</span>
+        </div>
+      </div>
+      <div class="a_box">
+				<div class="a_b_form">
+					<div class="a_b_f_item"></div>
+				</div>
+				<div class="a_b_bottom">
+					<div class="a_b_b_top">
+						<span>请使用正常语速朗读以上内容</span>
+					</div>
+					<div class="a_b_b_bottom">
+						<div class="a_b_b_b_btn">
+							<svg width="16" height="22" viewBox="0 0 16 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00009 13.8098C10.5962 13.8098 12.6876 11.6655 12.6876 9.00351V5.30633C12.6876 2.64436 10.5962 0.5 8.00009 0.5C5.40393 0.5 3.31259 2.64436 3.31259 5.30633V9.00351C3.31259 11.6655 5.40393 13.8098 8.00009 13.8098ZM4.75489 5.30633C4.75489 3.45774 6.1972 1.97887 8.00009 1.97887C9.80297 1.97887 11.2453 3.45774 11.2453 5.30633V9.00351C11.2453 10.8521 9.80297 12.331 8.00009 12.331C6.1972 12.331 4.75489 10.8521 4.75489 9.00351V5.30633ZM15.5 10.1132C15.5 9.70651 15.1755 9.37377 14.7788 9.37377C14.4183 9.37377 14.0938 9.66954 14.0577 10.0393C13.5529 13.034 11.0288 15.2892 8 15.2892C4.97115 15.2892 2.44712 13.034 1.94231 10.0393C1.90625 9.66954 1.58173 9.37377 1.22115 9.37377C0.824519 9.37377 0.5 9.70651 0.5 10.1132V10.2241C1.07692 13.6995 3.85337 16.3984 7.27885 16.7311V19.9223H4.15379C3.72896 19.9223 3.38456 20.2755 3.38456 20.7111C3.38456 21.1467 3.72896 21.4998 4.15379 21.4998H11.8461C12.2709 21.4998 12.6153 21.1467 12.6153 20.7111C12.6153 20.2755 12.2709 19.9223 11.8461 19.9223H8.72115V16.7311C12.1466 16.3984 14.9231 13.6995 15.4639 10.2611C15.4639 10.2426 15.473 10.2149 15.482 10.1872L15.482 10.1871C15.491 10.1594 15.5 10.1317 15.5 10.1132Z" fill="white"/>
+</svg>
+点击录制
+						</div>
+					</div>
+				</div>
+      </div>
+      <!-- </div> -->
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      userId: this.$route.query["userid"],
+			form: {
+				name: "",
+			},
+			textAreaVale:"夏天来喽,又能吃上西瓜啦!我真的太喜欢在空调房吃西瓜了,这种感觉真的超爽!红彤彤的果肉和黑色的籽,西瓜就是夏天的标志。每次切开一个大大的西瓜,忍不住就想大口大口地吃,尤其在炎热的午后,这时候来一块冰镇西瓜,简直是人间美味,清凉透底!我也喜欢把西瓜切成小块,用小叉子一块一块品尝,仿佛在享受一场夏日盛宴,每一口都充满了甜蜜和清凉,仿佛所有的烦恼都被这清爽的滋味一扫而空。有时候我也会呼朋唤友,让朋友们来家里玩,大家围坐在一起吃着瓜,聊着天,笑声不断,再没有比这更惬意的日子了!这样的时光总让人觉得生活是如此美好。夏天来喽,又能吃上西瓜了,这种简单的快乐,真是让人难以抗拒!",
+		}
+  },
+
+
+  methods:{
+		open(){
+			this.dialogVisible = true;
+		},
+	}
+};
+</script>
+
+<style scoped>
+.a-d-top {
+  /* background: #adadad; */
+  display: flex;
+  flex-direction: row;
+  flex-wrap: nowrap;
+  align-items: center;
+  justify-content: space-between;
+  height: 54px;
+  border-radius: 8px 8px 0 0;
+  user-select: none;
+  border-bottom: 1px #ccc solid;
+}
+
+.a-d-topTit {
+  width: auto;
+  height: 32px;
+  display: flex;
+  align-items: center;
+  font-family: PingFang SC;
+  box-sizing: border-box;
+  /* padding: 5px; */
+  line-height: 22px;
+	font-size: 18px;
+  justify-content: center;
+  /* text-align: left; */
+}
+.a-d-t-right {
+  width: 40px;
+  height: 40px;
+  margin-right: 10px;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  color: black !important;
+}
+
+.a-d-t-right > span {
+  width: 25px;
+  height: 25px;
+  border-radius: 25px;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  /* align-items: center; */
+  font-size: 22px;
+  color: #fff;
+  /* background-color: #adadad; */
+  cursor: pointer;
+  /* background-color: #e6e6e6; */
+  color: #adadad;
+}
+
+.addTemplateDialog >>> .el-dialog {
+  min-width: 600px;
+
+  height: 700px;
+  box-shadow: 0px 0 8px 0px #555555;
+  border-radius: 8px;
+  background-color: #fff;
+  /* top: 0px; */
+  /* margin: 0 auto; */
+  overflow: hidden;
+}
+.addTemplateDialog >>> .el-dialog__body {
+  height: 100%;
+  min-width: 600px;
+  flex-shrink: 0;
+  box-sizing: border-box;
+  padding-bottom: 50px;
+  padding-top: 10px;
+}
+.addTemplateDialog >>> .el-dialog__header {
+  display: none;
+}
+
+.a_box{
+	width: 100%;
+	height: 100%;
+	box-sizing: border-box;
+	padding: 20px 0;
+}
+
+.a_b_form{
+	width: 100%;
+	height: calc(100% - 70px);
+	background-color: yellow;
+}
+
+.a_b_bottom{
+	width: 100%;
+	height: 70px;
+	background-color: red;
+}
+
+.a_b_b_top{
+	width: 100%;
+	height: 15px;
+	background-color: blue;
+	display: flex;
+	align-items: center;
+	justify-content: center;
+	font-size: 14px;
+}
+
+
+</style>

+ 5 - 1
src/components/pages/classroomObservation/components/analysisItem.vue

@@ -125,7 +125,9 @@
 				<!-- <mdView :text="data.jsonData.result" /> -->
 				<!-- {{ data.jsonData.result }} -->
 			</div>
-			<mdView :text="data.jsonData.content" />
+
+			<eChartTemplate style="width: 100%;height: 400px;" :data="data.jsonData.eChartData" v-if="data.jsonData.eChartData"/>
+			<mdView :text="data.jsonData.content"/>
 			<div v-for="(item, index) in data.jsonData.dataFileList" :key="item.uid">
 				<div v-if="imgTypeList.includes(checkFileType(item.url))">
 					<img style="max-width: 100%" :src="item.url" alt="" />
@@ -158,12 +160,14 @@
 import mdView from "./mdView.vue";
 import pieChart from "./pieChart.vue";
 import { v4 as uuidv4 } from "uuid";
+import eChartTemplate from "./eChartTemplate";
 // import editNameDialog from './editNameDialog.vue'
 export default {
 	emits: ["delItem", "editItem", "saveItem"],
 	components: {
 		mdView,
 		pieChart,
+		eChartTemplate
 		// editNameDialog
 	},
 	props: {

+ 110 - 9
src/components/pages/classroomObservation/components/chatArea.vue

@@ -149,6 +149,29 @@
               </div>
             </div>
 
+            <!-- <div class="ca-b-o-h-l-btn">
+              <div class="ca-b-o-h-b-l-text" @click.stop="showTeacherVoiceprintBox = !showTeacherVoiceprintBox">{{choseTeacherVoiceprint?choseTeacherVoiceprint.name+'的':'教师'}}声纹</div>
+              <div class="ca_teacherVoiceprintBox" style="cursor: default;" v-click-outside="()=>showTeacherVoiceprintBox = !showTeacherVoiceprintBox" v-if="showTeacherVoiceprintBox">
+                <div class="ca_tvb_itemHead" @click.stop="test()">
+                  <svg
+                    width="12"
+                    height="12"
+                    viewBox="0 0 12 12"
+                    fill="none"
+                    xmlns="http://www.w3.org/2000/svg"
+                  >
+                    <path d="M5.33337 2H6.66671V10H5.33337V2Z" fill="#3681FC" />
+                    <path
+                      d="M10 5.33301V6.66634H2V5.33301H10Z"
+                      fill="#3681FC"
+                    />
+                  </svg>
+                  添加声纹
+                </div>
+                <div :class="['ca_tvb_item',(choseTeacherVoiceprint&&choseTeacherVoiceprint.id==item.id)?'ca_tvb_itemActive':'']" v-for="item in teacherVoiceprintList" :key="item.id" @click.stop="choseTeacherVoiceprintFn(item)">{{ item.name }}</div>
+              </div>
+            </div> -->
+
             <div
               class="ca-b-o-h-l-btn"
               @click.stop="uploadRecording()"
@@ -441,6 +464,7 @@
       </div>
       <!-- <el-progress style="width:80%" :text-inside="true" :stroke-width="24" :percentage="progressData.value"></el-progress> -->
     </div>
+		<addNewTeacherVoiceprintDialog ref="addNewTeacherVoiceprintDialogRef"/>
   </div>
 </template>
 
@@ -456,6 +480,7 @@ const lamejs = require("lamejs");
 import vpdf from "./vpdf";
 import _ from "lodash";
 import Papa from "papaparse";
+import addNewTeacherVoiceprintDialog from "./addNewTeacherVoiceprintDialog.vue";
 // const recorder = new Recorder({
 // 	sampleBits: 16, // 采样位数,支持 8 或 16,默认是16
 // 	sampleRate: 48000, // 采样率,支持 11025、16000、22050、24000、44100、48000,根据浏览器默认值,我的chrome是48000
@@ -578,7 +603,8 @@ export default {
     transcription,
     tape,
     EditorBar,
-    vpdf
+    vpdf,
+		addNewTeacherVoiceprintDialog
   },
   directives: {
     "click-outside": clickOutside // 注册自定义指令
@@ -664,7 +690,18 @@ export default {
       },
       chatList: [],
       actionTypesMap: {},
-      jobContext: null
+      jobContext: null,
+			showTeacherVoiceprintBox:false,
+			choseTeacherVoiceprint:null,
+			teacherVoiceprintList:[
+				{id:0,name:"李正红"},
+				{id:1,name:"李大壮"},
+				{id:2,name:"李小米"},
+				{id:3,name:"李儒文"},
+				{id:4,name:"覃某某"},
+				{id:5,name:"覃彤彤"},
+
+			],
     };
   },
   computed: {
@@ -1728,11 +1765,11 @@ ${JSON.stringify(_list)}
       }
       let iiframe = this.$refs["iiframe"];
       let _this = this;
-			// this.uploadFile(_file,{changeText:false,flag:true})
+      // this.uploadFile(_file,{changeText:false,flag:true})
       // return console.log(_file);
-			
-			console.log("将转录的文件👇")
-			console.log(_file)
+
+      console.log("将转录的文件👇");
+      console.log(_file);
 
       iiframe.contentWindow.window.document.getElementById(
         "languageOptions"
@@ -1885,7 +1922,7 @@ ${JSON.stringify(_list)}
               // 	console.log("这hi是一个txt文件")
               // } else if(otherRegex.test(data.Location)){
               //
-							console.log(data.Location)
+              console.log(data.Location);
               if (audioRegex.test(data.Location)) {
                 if (changeText) _this.wavFileGetText(file);
                 _this.$emit("changeAudioUrl", data);
@@ -2150,7 +2187,7 @@ ${JSON.stringify(_list)}
             while (i.cells.length > 7) {
               i.removeChild(i.lastElementChild);
             }
-            const actionTypeCell = i.cells[6] && i.removeChild(i.cells[6]);
+            const actionTypeCell = i.cells[6];
             _editorBarDataContentRows.push(i.outerHTML);
             if (index == 0) return;
             if (i.cells[3].textContent != "") {
@@ -2335,6 +2372,7 @@ ${JSON.stringify(_list)}
         url: ""
       };
       this.audioUrl = "";
+			this.choseTeacherVoiceprint = null;
     },
     async loadActionTypesMap() {
       const res = await this.ajax.post(
@@ -2597,7 +2635,20 @@ ${JSON.stringify(_list)}
       for (let i = 0; i < string.length; i++) {
         view.setUint8(offset + i, string.charCodeAt(i));
       }
-    }
+    },
+		addNewTeacherVoiceprintBtn(){
+			this.showTeacherVoiceprintBox = false;
+			this.$refs.addNewTeacherVoiceprintDialogRef.open();
+		},
+		choseTeacherVoiceprintFn(item){
+			if(this.choseTeacherVoiceprint && item.id == this.choseTeacherVoiceprint.id)return this.choseTeacherVoiceprint = null;
+			this.showTeacherVoiceprintBox = false;
+			this.choseTeacherVoiceprint = item;
+			console.log("选择声纹")
+		},
+		test(){
+			console.log(this.editorBarData)
+		}
   },
   mounted() {}
 };
@@ -2817,6 +2868,56 @@ ${JSON.stringify(_list)}
   border-radius: 15px;
   background-color: white;
   cursor: pointer;
+  position: relative;
+}
+
+.ca_teacherVoiceprintBox {
+  width: auto;
+  height: auto;
+  background-color: #fff;
+  padding: 10px;
+  position: absolute;
+  bottom: calc(100% + 5px);
+  border-radius: 4px;
+  left: 0;
+  box-shadow: 0px 2px 4px -1px #0000001f;
+
+  box-shadow: 0px 4px 5px 0px #00000014;
+
+  box-shadow: 0px 1px 10px 0px #0000000d;
+}
+
+.ca_teacherVoiceprintBox > div {
+  width: 100px;
+  padding: 8px;
+  margin-top: 10px;
+  border-radius: 4px;
+  background-color: #fff;
+  transition: 0.3s;
+  cursor: pointer;
+}
+
+.ca_teacherVoiceprintBox > div:hover {
+  background-color: #f3f7fd;
+}
+
+.ca_tvb_itemHead{
+	width: 100%;
+	display: flex;
+	align-items: center;
+	justify-content: center;
+	color: #3681FC;
+	margin-top: 0 !important;
+	border: solid 1px #3681FC;
+}
+
+.ca_tvb_itemHead>svg{
+	margin-right: 5px;
+}
+
+.ca_tvb_itemActive{
+	color: #3681FC;
+	background-color: #f3f7fd !important;
 }
 
 .ca-b-o-h-right {

+ 17 - 15
src/components/pages/classroomObservation/components/messageArea.vue

@@ -544,7 +544,7 @@ export default {
               // } else if (_result.Type == 2) {
               //   this.$refs.analysis2[0].getReport(_result.id);
               // }
-							this.$refs[`analysis${_result.Type}`][0].getReport(_result.id);
+              this.$refs[`analysis${_result.Type}`][0].getReport(_result.id);
               this.$message.success("添加成功");
               resolve();
             } else {
@@ -625,7 +625,7 @@ export default {
 
           this.dataList.push(...currency);
           this.bmData = _bmData;
-					this.dialogTagList = _dialogTagList;
+          this.dialogTagList = _dialogTagList;
           this.$emit("changeTranscription", {
             transcriptionData: this.bmData.jsonData.transcriptionData
               ? this.bmData.jsonData.transcriptionData
@@ -964,9 +964,9 @@ export default {
           type: "warning"
         })
           .then(() => {
-            this.$refs.analysis0.getReport();
-            this.$refs.analysis1.getReport();
-            this.$refs.analysis2.getReport();
+            this.$refs["analysis0"][0].getReport();
+            this.$refs["analysis1"][0].getReport();
+            this.$refs["analysis2"][0].getReport();
             this.$message.success("一键分析成功");
             // this.$refs.analysis3.getReport();
           })
@@ -975,9 +975,9 @@ export default {
             console.log("取消生成报告");
           });
       } else {
-        this.$refs.analysis0.getReport();
-        this.$refs.analysis1.getReport();
-        this.$refs.analysis2.getReport();
+        this.$refs["analysis0"][0].getReport();
+        this.$refs["analysis1"][0].getReport();
+        this.$refs["analysis2"][0].getReport();
         this.$message.success("一键分析成功");
       }
     },
@@ -1052,6 +1052,8 @@ export default {
     updateMessageTranscription({ transcriptionData, editorBarData }, fn) {
       this.bmData.jsonData["transcriptionData"] = transcriptionData;
       this.bmData.jsonData["editorBarData"] = editorBarData;
+      console.log("👇");
+      console.log(editorBarData);
       this.saveData(this.bmData).then(res => {
         this.$message.success("保存成功");
         fn ? fn() : "";
@@ -1062,7 +1064,7 @@ export default {
       this.$refs.bindingFormDialogRef.open(_data.jsonData);
     },
     getDialogTagDataList() {
-			console.log("获取模块分析列表");
+      console.log("获取模块分析列表");
       let params = {
         uid: this.userId
       };
@@ -1071,8 +1073,8 @@ export default {
         .then(res => {
           let _result = res.data[0];
           this.dialogTagDataList = _result;
-					// console.log(_result)
-					this.$forceUpdate();
+          // console.log(_result)
+          this.$forceUpdate();
         })
         .catch(e => {
           this.$message.error("获取模块分析列表失败");
@@ -1080,10 +1082,10 @@ export default {
     },
     changeAnalysisName(data) {
       this.dialogTagList.find(i => i.value == data.type).name = data.name;
-			this.bmData.jsonData["dialogTagList"] = this.dialogTagList;
-			this.saveData(this.bmData).then(res => {
-				// this.$message.success("修改名称成功");
-			})
+      this.bmData.jsonData["dialogTagList"] = this.dialogTagList;
+      this.saveData(this.bmData).then(res => {
+        // this.$message.success("修改名称成功");
+      });
     },
     init() {
       console.log("初始化");