fix: 17541 功能缺陷-页面加载-信息流图片加载,手机打开仅wifi加载图片控制,视频直播-直播预告图片和android显示不一致
Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -40,7 +40,6 @@ export struct ZhSingleRow03 { | @@ -40,7 +40,6 @@ export struct ZhSingleRow03 { | ||
| 40 | 40 | ||
| 41 | // 请求所有预约状态 | 41 | // 请求所有预约状态 |
| 42 | async getReserveState() { | 42 | async getReserveState() { |
| 43 | - this.reservedIds = [] | ||
| 44 | const reserveBean: reserveReqItem[] = this.compDTO.operDataList.map((item: ContentDTO) => { | 43 | const reserveBean: reserveReqItem[] = this.compDTO.operDataList.map((item: ContentDTO) => { |
| 45 | const reqItem: reserveReqItem = { | 44 | const reqItem: reserveReqItem = { |
| 46 | liveId: item.objectId.toString(), | 45 | liveId: item.objectId.toString(), |
| @@ -49,6 +48,7 @@ export struct ZhSingleRow03 { | @@ -49,6 +48,7 @@ export struct ZhSingleRow03 { | ||
| 49 | return reqItem; | 48 | return reqItem; |
| 50 | }) | 49 | }) |
| 51 | const res = await LiveModel.getAppointmentStatus(reserveBean); | 50 | const res = await LiveModel.getAppointmentStatus(reserveBean); |
| 51 | + this.reservedIds = [] | ||
| 52 | // this.reserveStatus = res; | 52 | // this.reserveStatus = res; |
| 53 | Logger.debug(TAG, '数据信息:' + `${JSON.stringify(res)}`) | 53 | Logger.debug(TAG, '数据信息:' + `${JSON.stringify(res)}`) |
| 54 | res.map((item: ReserveItemBean) => { | 54 | res.map((item: ReserveItemBean) => { |
| @@ -280,6 +280,8 @@ struct CreatorItem { | @@ -280,6 +280,8 @@ struct CreatorItem { | ||
| 280 | .backgroundColor(0xf5f5f5) | 280 | .backgroundColor(0xf5f5f5) |
| 281 | .width(156) | 281 | .width(156) |
| 282 | .height(208) | 282 | .height(208) |
| 283 | + .border({width: 1}) | ||
| 284 | + .borderRadius(3) | ||
| 283 | Row() | 285 | Row() |
| 284 | .width(156) | 286 | .width(156) |
| 285 | .height(80) | 287 | .height(80) |
-
Please register or login to post a comment