123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <template>
- <view class="task-form-item form-item-media">
- <view class="form-lable">
- <text><text class="form-must" v-if="rule && rule.required">* </text>视频:</text>
- <text class="form-media-num">({{videos.length}}/{{num}})</text>
- </view>
- <view class="form-img-video">
- <view v-if="videos.length < num " class="updata-btn img-video-item" @click.stop="onChooseVideo()">
- <text class="iconfont_yige"></text>
- <text>请上传视频</text>
- </view>
- <!-- <view class="img-video-box img-video-item" v-for="(item , index) in photos_list"
- @click.stop="onBigImg(index)">
- <view class="del-img-video iconfont_yige" @click.stop="delphotos(index)" v-if="!checkPage">
- </view>
- <image class="img-video" :src="item" mode="aspectFit"></image>
- </view> -->
- <view class="img-video-box img-video-item" v-for="(item,index) in videos" :key="`video_${index}`"
- @click.stop="onplay(item)">
- <view class="del-img-video iconfont_yige" v-if="!checkPage" @click.stop="delVldeo(index)">
- </view>
- <image class="img-video" :src="item + '?x-oss-process=video/snapshot,t_0,f_jpg'" mode="aspectFit" />
- </view>
- </view>
- <uni-popup ref="videoPlayRef" maskBg="rgba(0, 0, 0,.7)" @change="popupChange">
- <view class="video-play" style="width: 100vw;">
- <video autoplay v-if="playVideoUrl" style="width: 100%;max-height: 60vh;" :src="playVideoUrl" />
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- getcheckBigFile_Api,
- setUpload_tag_Api,
- getMargeTag_Api
- } from "@/api/task.js"
- export default {
- name: 'submitVideo',
- model: {
- prop: ['videos'],
- event: ['onChange']
- },
- props: {
- checkPage: {
- type: Boolean,
- default: false
- },
- num: {
- type: Number,
- default: 1
- },
- rule: {
- type: Object,
- default: null
- },
- videos: {
- type: Array,
- default: () => [],
- require: true
- },
- },
- data() {
- return {
- uploadingLoading: false,
- Storage_key: 'partUploadData',
- File_V: null,
- tempFilePath: null,
- playVideoUrl: '',
- }
- },
- watch: {
- uploadingLoading: {
- handler(newL, oldL) {
- if (newL) {
- uni.showLoading({
- title: '上传视频中',
- mask: true
- })
- } else {
- uni.hideLoading()
- }
- },
- }
- },
- mounted() {
- },
- methods: {
- popupChange(e) {
- if (!e || !e.show) {
- this.playVideoUrl = null;
- }
- },
- // 播放视频
- onplay(url) {
- try {
- this.playVideoUrl = url;
- this.$refs.videoPlayRef.open();
- this.$nextTick(() => {
- try {
- this.videoContext = uni.createVideoContext('myVideo');
- this.videoContext.play();
- } catch (e) {
- console.log('onpssssslay = ', e)
- //TODO handle the exception
- }
- })
- } catch (e) {
- console.log('onplay = ', e)
- //TODO handle the exception
- }
- },
- delVldeo(index) {
- this.videos.splice(index, 1);
- },
- onChooseVideo() {
- try {
- let that = this;
- uni.chooseVideo({
- sourceType: ['camera', 'album'],
- compressed: false, // 压缩
- success: res_file => {
- const max_size = 200 * 1024 * 1024;
- console.log('max_size', res_file)
- if (res_file.size > max_size) {
- uni.showToast({
- title: '最大上传200M视频',
- icon: 'none'
- })
- return
- };
- return
- this.uploadingLoading = true
- plus.io.resolveLocalFileSystemURL(res_file.tempFilePath, (entry) => {
- entry.file((ent) => {
- // 获取文件名
- plus.io.getFileInfo({
- filePath: res_file.tempFilePath,
- success: res_ => {
- // 获取文件的MD5
- try {
- // 检查是否上传过
- getcheckBigFile_Api({
- fileMd5: res_.digest,
- originalName: ent.name
- }).then(res => {
- const data = res.data;
- console.log('data = ',
- data)
- if (!data.bigStatus) {
- that.saveFileChunk(
- res_file,
- res_
- .digest,
- data
- .uploadId);
- } else {
- that.unloadVideos(
- data.url);
- }
- }).catch(err => {
- this.uploadingLoading =
- false;
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- })
- })
- } catch (e) {
- this.uploadingLoading =
- false;
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- })
- }
- }
- })
- })
- }, err => {
- console.log('alert( "Resolve file URL failed: " + e.message );', err)
- this.uploadingLoading = false;
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- })
- })
- },
- fail: err => {
- this.uploadingLoading = false;
- }
- });
- } catch (e) {
- console.log('fileMd5 e= ', e)
- //TODO handle the exception
- }
- },
- // 保存文件片段到后台
- saveFileChunk(File, fileMd5, uploadId) {
- uni.uploadFile({
- url: this.$mConfig.baseUrl + `/common/upload-all?fileMd5=${fileMd5}&uploadId=${uploadId}`,
- filePath: File.tempFilePath,
- name: 'file',
- success: (uploadFileRes) => {
- const JSON_data = uploadFileRes.data;
- const data = JSON.parse(JSON_data);
- const url = data.data.url;
- this.unloadVideos(url)
- },
- fail: err => {
- this.uploadingLoading = false;
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- })
- }
- });
- },
- unloadVideos(url) {
- this.videos.push(url)
- this.uploadingLoading = false;
- uni.showToast({
- title: '上传成功',
- icon: 'none'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '~./submint.scss';
- </style>
|