yangsunyue_wd

desc:评论列表界面、评论弹窗

@@ -16,7 +16,8 @@ export class publishCommentModel { @@ -16,7 +16,8 @@ export class publishCommentModel {
16 keyArticle: string = '' 16 keyArticle: string = ''
17 /*内容类别, 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14:动态(13和14为中文版新增) 页面必传*/ 17 /*内容类别, 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14:动态(13和14为中文版新增) 页面必传*/
18 targetType: string = '' 18 targetType: string = ''
19 - 19 + /*评论总数*/
  20 + totalCommentNumer: string = ''
20 21
21 //评论传参 22 //评论传参
22 /*评论图片url,多个逗号隔开*/ 23 /*评论图片url,多个逗号隔开*/
  1 +
  2 +import { publishCommentModel } from '../model/PublishCommentModel'
  3 +
  4 +@Preview
  5 +@Component
  6 +export struct CommentTabComponent {
  7 + @ObjectLink publishCommentModel: publishCommentModel
  8 +
  9 + build() {
  10 + }
  11 +}