This commit is contained in:
曹辉 2023-02-15 16:09:16 +08:00
parent a8c1b4bfd2
commit 92b18ad6d5

View File

@ -174,8 +174,14 @@ export default {
created() {
this.types = this.type;
this.items = this.item;
this.video.VideoPath = baseurl + this.tovideo;
console.log(this.video)
if (this.tovideo == null) {
this.video.VideoPath = null;
} else if (this.tovideo == "") {
this.video.VideoPath = null;
} else {
this.video.VideoPath = baseurl + this.tovideo;
}
console.log(this.video);
if (this.img == null) {
this.options.img = null;
} else if (this.img == "") {