首页 > 解决方案 > 如何在缩略图上方插入布局宏

问题描述

我想在答案集上方插入微小的类型,提供一些元数据,但不知道该怎么做。我只想让布局宏 content-answer-set-info 在 Legal 或 Detail_S 中说出类似“按时间倒序排列的结果”之类的内容。我希望它出现在 altbrains 车间下方和列表中的第一项上方。

render {

        if (size(this) > 1) {



           list-of (this) {

            has-details (true)
            where-each (item) {
              layout-macro (content-thumbnail-card) {
                param (content) {
                  expression (item)
                }
              }
            }
          }
           }


        else-if (size(this) == 1) {
          layout-match (this) {
            mode (Details)
        }
        }
        else {layout-macro (content-zero-results) {}

}

在此处输入图像描述

标签: bixby

解决方案


我建议将此布局宏包装在 a 中section并使用section-title( documentation ) 键为其提供列表上方的文本。


推荐阅读