|
@@ -217,9 +217,15 @@
|
|
|
:src="require('../../../../assets/icon/classroomObservation/videoFile.svg')"
|
|
|
fit="cover"
|
|
|
></el-image>
|
|
|
+ <div class="m_m_fi_videBtn">
|
|
|
+ <img v-if="!progressData.stop" :src="require('../../../../assets/icon/classroomObservation/stopIcon.png')" @click.stop="stopUploadVideo()">
|
|
|
+ <img v-if="progressData.stop" :src="require('../../../../assets/icon/classroomObservation/startIcon.png')" @click.stop="startUploadVideo()">
|
|
|
+ <img :src="require('../../../../assets/icon/classroomObservation/delFile.svg')" @click.stop="delUploadVideo()">
|
|
|
+ </div>
|
|
|
<div class="m_m_fi_progress">
|
|
|
<div>{{ progressData.value }}%</div>
|
|
|
- <span>上传中...</span>
|
|
|
+ <span v-if="!progressData.stop">上传中...</span>
|
|
|
+ <span v-else>已暂停</span>
|
|
|
<div class="m_m_fi_p_bar">
|
|
|
<div :style="{width:progressData.value+'%'}"></div>
|
|
|
</div>
|
|
@@ -274,19 +280,22 @@
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
- <previewVideoDialog ref="previewVideoDialogRef"/>
|
|
|
+ <previewVideoDialog ref="previewVideoDialogRef" />
|
|
|
+ <uploadFile v-if="progressData.uploadVideo" ref="uploadFileRef" @progressUpdate="videoProgressUpdate" @delUpload="videoDelUpload" @success="updateVideoSuccess" @startUpload="videoStartUpload"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import previewVideoDialog from './previewVideoDialog.vue';
|
|
|
import wordcloudEChart from './wordcloudEChart.vue'
|
|
|
+import uploadFile from './uploadFile.vue';
|
|
|
import { v4 as uuidv4 } from "uuid";
|
|
|
export default {
|
|
|
emits: ["saveData", "saveImage", "saveVideo","delImage","saveNephogram"],
|
|
|
components:{
|
|
|
previewVideoDialog,
|
|
|
- wordcloudEChart
|
|
|
+ wordcloudEChart,
|
|
|
+ uploadFile
|
|
|
},
|
|
|
props: {
|
|
|
data: {
|
|
@@ -366,14 +375,19 @@ export default {
|
|
|
{ value: "其他", label: "其他" },
|
|
|
],
|
|
|
progressData:{
|
|
|
+ stop:false,
|
|
|
uploadVideo:false,
|
|
|
value:0,
|
|
|
+ status:"",
|
|
|
+ key:"",
|
|
|
+ uploadid:"",
|
|
|
}
|
|
|
};
|
|
|
},
|
|
|
watch:{
|
|
|
imageList(){
|
|
|
this.$forceUpdate();
|
|
|
+ this.progressData.uploadVideo = false;
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -455,59 +469,128 @@ export default {
|
|
|
input.onchange = () => {
|
|
|
this.progressData.uploadVideo = true;
|
|
|
// this.uploadVideoLoading = true;
|
|
|
+ this.progressData.stop = false;
|
|
|
+ this.progressData.status = "";
|
|
|
+ this.progressData.value = 0;
|
|
|
let file = input.files[0];
|
|
|
- var credentials = {
|
|
|
- accessKeyId: "AKIATLPEDU37QV5CHLMH",
|
|
|
- secretAccessKey: "Q2SQw37HfolS7yeaR1Ndpy9Jl4E2YZKUuuy2muZR",
|
|
|
- }; //秘钥形式的登录上传
|
|
|
- window.AWS.config.update(credentials);
|
|
|
- window.AWS.config.region = "cn-northwest-1"; //设置区域
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.$refs.uploadFileRef.awsupload({
|
|
|
+ file:file,
|
|
|
+ folderName:this.tid
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // this.progressData.uploadVideo = true;
|
|
|
+ // // this.uploadVideoLoading = true;
|
|
|
+ // this.progressData.stop = false;
|
|
|
+ // let file = input.files[0];
|
|
|
+ // var credentials = {
|
|
|
+ // accessKeyId: "AKIATLPEDU37QV5CHLMH",
|
|
|
+ // secretAccessKey: "Q2SQw37HfolS7yeaR1Ndpy9Jl4E2YZKUuuy2muZR",
|
|
|
+ // }; //秘钥形式的登录上传
|
|
|
+ // window.AWS.config.update(credentials);
|
|
|
+ // window.AWS.config.region = "cn-northwest-1"; //设置区域
|
|
|
|
|
|
- var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
|
|
|
- var _this = this;
|
|
|
+ // var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
|
|
|
+ // var _this = this;
|
|
|
|
|
|
- if (file) {
|
|
|
- var params = {
|
|
|
- Key:
|
|
|
- file.name.split(".")[0] +
|
|
|
- new Date().getTime() +
|
|
|
- "." +
|
|
|
- file.name.split(".")[file.name.split(".").length - 1],
|
|
|
- ContentType: file.type,
|
|
|
- Body: file,
|
|
|
- "Access-Control-Allow-Credentials": "*",
|
|
|
- ACL: "public-read",
|
|
|
- }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
|
|
|
- var options = {
|
|
|
- partSize: 2048 * 1024 * 1024,
|
|
|
- queueSize: 2,
|
|
|
- leavePartsOnError: true,
|
|
|
- };
|
|
|
+ // if (file) {
|
|
|
+ // var params = {
|
|
|
+ // Key:
|
|
|
+ // file.name.split(".")[0] +
|
|
|
+ // new Date().getTime() +
|
|
|
+ // "." +
|
|
|
+ // file.name.split(".")[file.name.split(".").length - 1],
|
|
|
+ // ContentType: file.type,
|
|
|
+ // Body: file,
|
|
|
+ // "Access-Control-Allow-Credentials": "*",
|
|
|
+ // ACL: "public-read",
|
|
|
+ // }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
|
|
|
+ // var options = {
|
|
|
+ // partSize: 2048 * 1024 * 1024,
|
|
|
+ // queueSize: 2,
|
|
|
+ // leavePartsOnError: true,
|
|
|
+ // };
|
|
|
|
|
|
- bucket
|
|
|
- .upload(params, options)
|
|
|
- .on("httpUploadProgress", function (evt) {
|
|
|
- //这里可以写进度条
|
|
|
- // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
|
|
|
- _this.progressData.value = parseInt((evt.loaded * 100) / evt.total)
|
|
|
- })
|
|
|
- .send(function (err, data) {
|
|
|
- if (err) {
|
|
|
- _this.$message.error("上传失败");
|
|
|
- } else {
|
|
|
- _this.$emit('saveVideo',{
|
|
|
- name: data.key,
|
|
|
- status: "success",
|
|
|
- uid: "1",
|
|
|
- url: data.Location,
|
|
|
- })
|
|
|
- }
|
|
|
- _this.progressData.uploadVideo = false;
|
|
|
- _this.progressData.value = 0;
|
|
|
- // _this.uploadVideoLoading = false;
|
|
|
- });
|
|
|
- }
|
|
|
- };
|
|
|
+ // bucket
|
|
|
+ // .upload(params, options)
|
|
|
+ // .on("httpUploadProgress", function (evt) {
|
|
|
+ // //这里可以写进度条
|
|
|
+ // // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
|
|
|
+ // _this.progressData.value = parseInt((evt.loaded * 100) / evt.total)
|
|
|
+ // })
|
|
|
+ // .send(function (err, data) {
|
|
|
+ // if (err) {
|
|
|
+ // _this.$message.error("上传失败");
|
|
|
+ // } else {
|
|
|
+ // _this.$emit('saveVideo',{
|
|
|
+ // name: data.key,
|
|
|
+ // status: "success",
|
|
|
+ // uid: "1",
|
|
|
+ // url: data.Location,
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // _this.progressData.uploadVideo = false;
|
|
|
+ // _this.progressData.value = 0;
|
|
|
+ // _this.progressData.stop = false;
|
|
|
+ // // _this.uploadVideoLoading = false;
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+ },
|
|
|
+ videoStartUpload({key,uploadid}){
|
|
|
+ this.progressData.uploadid = uploadid;
|
|
|
+ this.progressData.key = key;
|
|
|
+ this.progressData.status = "start"
|
|
|
+ },
|
|
|
+ updateVideoSuccess(res){
|
|
|
+ if(!res.data)return;
|
|
|
+ this.progressData.uploadVideo = false;
|
|
|
+ this.progressData.stop = false;
|
|
|
+ this.progressData.uploadid = "";
|
|
|
+ this.progressData.status = "";
|
|
|
+ this.progressData.value = 0;
|
|
|
+ let {data} = res;
|
|
|
+ this.$refs.uploadFileRef.file = null;
|
|
|
+ this.$emit('saveVideo',{
|
|
|
+ name: data.Key,
|
|
|
+ status: "success",
|
|
|
+ uid: "qgt",
|
|
|
+ url: data.Location,
|
|
|
+ })
|
|
|
+ console.log("👇")
|
|
|
+ console.log(data)
|
|
|
+ this.$message.success("上传成功")
|
|
|
+ },
|
|
|
+ videoProgressUpdate(data){
|
|
|
+ if(data.status=="processing"){
|
|
|
+ this.progressData.value = data.percent;
|
|
|
+ this.progressData.status = data.status;
|
|
|
+ }else if(data.status=="fail"){
|
|
|
+ this.progressData.value = data.percent;
|
|
|
+ this.progressData.status = data.status;
|
|
|
+ this.$message.error('上传发生错误,请点击继续上传')
|
|
|
+ this.$refs.uploadFileRef.stopUpload();
|
|
|
+ }else if(data.status=="success"){
|
|
|
+ this.progressData.value = data.percent;
|
|
|
+ this.progressData.status = data.status;
|
|
|
+ this.$refs.uploadFileRef.stopUpload();
|
|
|
+ }else if(data.status=="error"){
|
|
|
+ this.progressData.stop = true;
|
|
|
+ this.progressData.status = data.status;
|
|
|
+ this.$refs.uploadFileRef.stopUpload();
|
|
|
+ this.$message.error('上传发生错误,请重新上传')
|
|
|
+ }
|
|
|
+ console.log(this.progressData)
|
|
|
+ },
|
|
|
+ videoDelUpload(res){
|
|
|
+ this.progressData.uploadVideo = false;
|
|
|
+ this.progressData.uploadid = "";
|
|
|
+ this.progressData.key = "";
|
|
|
+ this.progressData.status = "";
|
|
|
+ this.progressData.stop = false;
|
|
|
+ this.progressData.value = 0;
|
|
|
+ this.$message.success("已删除视频");
|
|
|
},
|
|
|
//添加云图
|
|
|
addNephogram(){
|
|
@@ -674,6 +757,26 @@ ${this.data.editorBarData?this.data.editorBarData.content:""}
|
|
|
if(!this.tid)return this.$message.error("请选择课堂")
|
|
|
this.$emit("saveData");
|
|
|
},
|
|
|
+ // 停止上传视频
|
|
|
+ stopUploadVideo(){
|
|
|
+ this.$refs.uploadFileRef.stopUpload();
|
|
|
+ this.progressData.stop = true;
|
|
|
+ this.$message.success("已停止上传")
|
|
|
+ },
|
|
|
+ //开始上传视频
|
|
|
+ startUploadVideo(){
|
|
|
+ // this.$message.info("开始上传")
|
|
|
+ if(this.$refs.uploadFileRef.file && this.progressData.key){
|
|
|
+ this.$refs.uploadFileRef.awsupload({keyName:this.progressData.key})
|
|
|
+ }else{
|
|
|
+ this.addVideo();
|
|
|
+ }
|
|
|
+ this.progressData.stop = false;
|
|
|
+ },
|
|
|
+ delUploadVideo(){
|
|
|
+ this.$refs.uploadFileRef.stopUpload();
|
|
|
+ this.$refs.uploadFileRef.abortMultipartUpload(this.progressData.key,this.progressData.uploadid);
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {
|
|
|
// this.showNephogram();
|
|
@@ -935,7 +1038,7 @@ ${this.data.editorBarData?this.data.editorBarData.content:""}
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
/* 加载 */
|
|
|
- cursor:wait !important;
|
|
|
+ /* cursor:wait !important; */
|
|
|
background-color: #00000099;
|
|
|
}
|
|
|
|
|
@@ -1012,4 +1115,23 @@ ${this.data.editorBarData?this.data.editorBarData.content:""}
|
|
|
.m-m-fi-nephogramItem:hover > span {
|
|
|
display: flex;
|
|
|
}
|
|
|
+
|
|
|
+.m_m_fi_videBtn{
|
|
|
+ position: absolute;
|
|
|
+ right: 4px;
|
|
|
+ top: 4px;
|
|
|
+ width:auto;
|
|
|
+ height: 20px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ /* display: none; */
|
|
|
+ z-index: 99999;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.m_m_fi_videBtn>img{
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ margin-left:10px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
</style>
|