|
|
@@ -252,6 +252,9 @@ export class GetContentDetailItem extends DataModel<GetContentDetailItem> {
|
|
|
if ((!this.images || this.images.length == 0) && this.image) {
|
|
|
this.images = [ this.image ]
|
|
|
}
|
|
|
+ if (this.publishVideo) {
|
|
|
+ this.video = this.publishVideo
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -265,6 +268,7 @@ export class GetContentDetailItem extends DataModel<GetContentDetailItem> {
|
|
|
images = [] as string[];
|
|
|
audio = '';
|
|
|
video = '';
|
|
|
+ publishVideo?: string;
|
|
|
desc = '';
|
|
|
flag ?: string[];
|
|
|
tags ?: string[];
|