|
@@ -130,6 +130,7 @@
|
|
|
@changeAudioUrl="changeAudioUrl"
|
|
|
@updateTranscription="updateTranscription"
|
|
|
:fileId="fileId"
|
|
|
+ :createTime="createTime"
|
|
|
:fileIdId="fileIdId"
|
|
|
/>
|
|
|
</div>
|
|
@@ -142,6 +143,7 @@
|
|
|
@changeChatAreaAudioUrl="changeChatAreaAudioUrl"
|
|
|
@changeTranscription="changeTranscription"
|
|
|
@changeOptionData="changeOptionData"
|
|
|
+ @updateTime="updateTime"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -180,6 +182,7 @@ export default {
|
|
|
title: "12月19日会议录音",
|
|
|
loading: false,
|
|
|
dialogVisibleShare: false,
|
|
|
+ createTime:new Date().toLocaleString().replaceAll('/','-'),
|
|
|
tid: "",
|
|
|
fileId: "",
|
|
|
fileIdId: "",
|
|
@@ -387,6 +390,9 @@ export default {
|
|
|
}
|
|
|
console.log(this.optionData);
|
|
|
},
|
|
|
+ updateTime(time){
|
|
|
+ this.createTime = time;
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getCourseList().then((_) => {
|