videoup() {
uni.chooseVideo({
count: 1,
sourceType: ['album'],
success: res=> {
this.videosrc = res.tempFilePath;
this.videosrc2 = this.videosrc.replace('file://', '');
console.log(this.videosrc);
console.log(this.videosrc2);
}
});
},