|
@@ -225,12 +225,16 @@ export class GetContentDetailItem extends DataModel<GetContentDetailItem> {
|
|
return undefined;
|
|
return undefined;
|
|
};
|
|
};
|
|
this._afterSolveServer = () => {
|
|
this._afterSolveServer = () => {
|
|
|
|
+ if (this.image === 'https://mncdn.wenlvti.net')
|
|
|
|
+ this.image = '';
|
|
if (!this.image && this.images && this.images && this.images.length > 0 ) {
|
|
if (!this.image && this.images && this.images && this.images.length > 0 ) {
|
|
this.image = this.images[0]
|
|
this.image = this.images[0]
|
|
}
|
|
}
|
|
if ((!this.images || this.images.length == 0) && this.image && this.image != '') {
|
|
if ((!this.images || this.images.length == 0) && this.image && this.image != '') {
|
|
this.images = [ this.image ]
|
|
this.images = [ this.image ]
|
|
}
|
|
}
|
|
|
|
+ if (!this.images)
|
|
|
|
+ this.images = []
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|