从Launchpad-Tile更改颜色

问题描述 投票:0回答:1

我是一个Abap开发人员,很幸运,我必须为客户编写一个SAPUI5 / Fiori应用程序-太好了!我看了很多教程并尽我所能,但是当涉及到细节时,我会遇到问题。这就是我的问题:

我的启动板图块中有库存物品的数量,如果数量少于20,则颜色代码应更改为FF0000。

  • 我应该在我的launchpad.view.xml或Launchpad.Controller.js中实现逻辑吗?
  • [这里是从我的视图中摘录的代码:

            <GenericTile header="Standrohrbestand" subheader="" frameType="OneByOne" class="sapUiResponsiveMargin" press="action"
                action:wiring="\{'press':\{'navigation':\{'routeName':'equi'\}\}\}">
                <tileContent>
                    <TileContent footer="Standrohre" unit="">
                        <content>
                            <NumericContent id="equicount" value="" icon="sap-icon://add-equipment" withMargin="false"/>
                        </content>
                    </TileContent>
                </tileContent>
            </GenericTile>
    
javascript sapui5
1个回答
0
投票

您可以使用表达式绑定来执行此操作。或者您可以使用格式化程序格式化该值。

© www.soinside.com 2019 - 2024. All rights reserved.