Showing
4 changed files
with
5 additions
and
2 deletions
| @@ -21,7 +21,7 @@ export enum HostEnum { | @@ -21,7 +21,7 @@ export enum HostEnum { | ||
| 21 | * 环境host管理工具类 | 21 | * 环境host管理工具类 |
| 22 | */ | 22 | */ |
| 23 | export class HostManager { | 23 | export class HostManager { |
| 24 | - private static _hostUrl: HostEnum = HostEnum.HOST_PRODUCT; | 24 | + private static _hostUrl: HostEnum = HostEnum.HOST_UAT; |
| 25 | 25 | ||
| 26 | static changeHost(host: HostEnum) { | 26 | static changeHost(host: HostEnum) { |
| 27 | HostManager._hostUrl = host; | 27 | HostManager._hostUrl = host; |
| @@ -34,7 +34,7 @@ export struct ZhSingleRow02 { | @@ -34,7 +34,7 @@ export struct ZhSingleRow02 { | ||
| 34 | edgeAnimation() { | 34 | edgeAnimation() { |
| 35 | if (this.moreWidth < this.initMoreWidth * 3) { | 35 | if (this.moreWidth < this.initMoreWidth * 3) { |
| 36 | if (!this.moreTips) { | 36 | if (!this.moreTips) { |
| 37 | - this.moreTips = '查看更多'; | 37 | + this.moreTips = '查看 '; |
| 38 | } | 38 | } |
| 39 | this.moreWidth = this.moreWidth + 2 | 39 | this.moreWidth = this.moreWidth + 2 |
| 40 | } | 40 | } |
| @@ -233,6 +233,7 @@ struct CreatorItem { | @@ -233,6 +233,7 @@ struct CreatorItem { | ||
| 233 | .textOverflow({overflow: TextOverflow.Ellipsis}) | 233 | .textOverflow({overflow: TextOverflow.Ellipsis}) |
| 234 | .width(140) | 234 | .width(140) |
| 235 | .margin({bottom: 8}) | 235 | .margin({bottom: 8}) |
| 236 | + .height(42) | ||
| 236 | } | 237 | } |
| 237 | } | 238 | } |
| 238 | .width(156) | 239 | .width(156) |
| @@ -130,6 +130,7 @@ export struct HorizontalStrokeCardThreeTwoRadioForMoreComponent { | @@ -130,6 +130,7 @@ export struct HorizontalStrokeCardThreeTwoRadioForMoreComponent { | ||
| 130 | .margin({ top: 8 }) | 130 | .margin({ top: 8 }) |
| 131 | .width(150) | 131 | .width(150) |
| 132 | .lineHeight(19) | 132 | .lineHeight(19) |
| 133 | + .height(42) | ||
| 133 | } | 134 | } |
| 134 | .padding({ right: 16 }) | 135 | .padding({ right: 16 }) |
| 135 | // .offset({x:16}) | 136 | // .offset({x:16}) |
| @@ -152,6 +152,7 @@ export struct LiveHorizontalCardComponent { | @@ -152,6 +152,7 @@ export struct LiveHorizontalCardComponent { | ||
| 152 | .textAlign(TextAlign.Start) | 152 | .textAlign(TextAlign.Start) |
| 153 | .margin({ top: 8 }) | 153 | .margin({ top: 8 }) |
| 154 | .width(this.compDTO.operDataList.length == 2 ? 210 : 150) | 154 | .width(this.compDTO.operDataList.length == 2 ? 210 : 150) |
| 155 | + .height(42) | ||
| 155 | } | 156 | } |
| 156 | .padding({ right: 16 }) | 157 | .padding({ right: 16 }) |
| 157 | .onClick(() => { | 158 | .onClick(() => { |
-
Please register or login to post a comment