Showing
2 changed files
with
9 additions
and
4 deletions
| @@ -456,7 +456,7 @@ struct ChildCommentItem { | @@ -456,7 +456,7 @@ struct ChildCommentItem { | ||
| 456 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 | 456 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 |
| 457 | this.publishCommentModel.rootCommentId = this.item.rootCommentId | 457 | this.publishCommentModel.rootCommentId = this.item.rootCommentId |
| 458 | this.publishCommentModel.parentId = this.item.id | 458 | this.publishCommentModel.parentId = this.item.id |
| 459 | - this.publishCommentModel.placeHolderText = '回复' + this.item.fromUserName + ':' | 459 | + this.publishCommentModel.placeHolderText = '回复 ' + this.item.fromUserName + ':' |
| 460 | if (this.dialogController != null) { | 460 | if (this.dialogController != null) { |
| 461 | this.dialogController.open() | 461 | this.dialogController.open() |
| 462 | } | 462 | } |
| @@ -668,7 +668,7 @@ struct commentHeaderView { | @@ -668,7 +668,7 @@ struct commentHeaderView { | ||
| 668 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 | 668 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 |
| 669 | this.publishCommentModel.rootCommentId = this.item.rootCommentId | 669 | this.publishCommentModel.rootCommentId = this.item.rootCommentId |
| 670 | this.publishCommentModel.parentId = this.item.id | 670 | this.publishCommentModel.parentId = this.item.id |
| 671 | - this.publishCommentModel.placeHolderText = '回复' + this.item.fromUserName + ':' | 671 | + this.publishCommentModel.placeHolderText = '回复 ' + this.item.fromUserName + ':' |
| 672 | if (this.dialogController != null) { | 672 | if (this.dialogController != null) { |
| 673 | this.dialogController.open() | 673 | this.dialogController.open() |
| 674 | } | 674 | } |
| @@ -745,7 +745,7 @@ struct commentFooterView { | @@ -745,7 +745,7 @@ struct commentFooterView { | ||
| 745 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 | 745 | if (this.item.id && this.item.checkStatus == '2') { // 审核通过的才显示回复 |
| 746 | this.publishCommentModel.rootCommentId = this.item.rootCommentId | 746 | this.publishCommentModel.rootCommentId = this.item.rootCommentId |
| 747 | this.publishCommentModel.parentId = this.item.id | 747 | this.publishCommentModel.parentId = this.item.id |
| 748 | - this.publishCommentModel.placeHolderText = '回复' + this.item.fromUserName + ':' | 748 | + this.publishCommentModel.placeHolderText = '回复 ' + this.item.fromUserName + ':' |
| 749 | if (this.dialogController != null) { | 749 | if (this.dialogController != null) { |
| 750 | this.dialogController.open() | 750 | this.dialogController.open() |
| 751 | } | 751 | } |
| @@ -13,7 +13,7 @@ import { ParamType, Tracking } from 'wdTracking/Index'; | @@ -13,7 +13,7 @@ import { ParamType, Tracking } from 'wdTracking/Index'; | ||
| 13 | 13 | ||
| 14 | /** | 14 | /** |
| 15 | * 直播预约卡 | 15 | * 直播预约卡 |
| 16 | - * Zh_Single_Row-02 | 16 | + * Zh_Single_Row-03 |
| 17 | */ | 17 | */ |
| 18 | const TAG = 'Zh_Single_Row-03' | 18 | const TAG = 'Zh_Single_Row-03' |
| 19 | 19 | ||
| @@ -266,6 +266,11 @@ export struct ZhSingleRow03 { | @@ -266,6 +266,11 @@ export struct ZhSingleRow03 { | ||
| 266 | .margin({right: 12}) | 266 | .margin({right: 12}) |
| 267 | .backgroundColor(0xf5f5f5) | 267 | .backgroundColor(0xf5f5f5) |
| 268 | .margin({right: 12}) | 268 | .margin({right: 12}) |
| 269 | + .border({ | ||
| 270 | + width: 0.7, | ||
| 271 | + color: '#EDEDED', | ||
| 272 | + radius: 3 | ||
| 273 | + }) | ||
| 269 | 274 | ||
| 270 | Text(item.newsTitle) | 275 | Text(item.newsTitle) |
| 271 | .width(154) | 276 | .width(154) |
-
Please register or login to post a comment