新成长礼包不显示限购次数

This commit is contained in:
Fang 2023-07-12 10:30:24 +08:00
parent 0b652045b3
commit 69502e9e51

View File

@ -41,7 +41,12 @@ function GrowCell:refresh(idx, gift)
-- 超值 -- 超值
self.offText:setText(tostring(cfgInfo.value) .. "%") self.offText:setText(tostring(cfgInfo.value) .. "%")
-- 限购 -- 限购
self.limitText:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_18, tostring(cfgInfo.limit))) -- 限购{0}次 if cfgInfo.limit then
self.limitImg:setVisible(true)
self.limitText:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_18, tostring(cfgInfo.limit))) -- 限购{0}次
else
self.limitImg:setVisible(false)
end
-- 标题 -- 标题
self.titleText:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_13)) -- 成长礼包 self.titleText:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_13)) -- 成长礼包
-- 奖励 -- 奖励