七天乐按钮文本

This commit is contained in:
chenxi 2023-05-26 15:44:52 +08:00
parent 8eccf012ba
commit fcd79434d1

View File

@ -16,7 +16,7 @@ function TaskCell:init()
end) end)
self.btnGreyImg = uiMap["task_cell.bg.cliam_btn.grey"] self.btnGreyImg = uiMap["task_cell.bg.cliam_btn.grey"]
self.mask = uiMap["task_cell.bg.mask"] self.mask = uiMap["task_cell.bg.mask"]
uiMap["task_cell.bg.cliam_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM)) self.cliamBtnTx = uiMap["task_cell.bg.cliam_btn.text"]
uiMap["task_cell.bg.mask.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.STR_COMPLETED)) uiMap["task_cell.bg.mask.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.STR_COMPLETED))
end end
@ -41,8 +41,12 @@ function TaskCell:refresh(id)
self.sliderTx:setText(count .. "/" .. totalCount) self.sliderTx:setText(count .. "/" .. totalCount)
self.btnGreyImg:setVisible(not canClaimTask) self.btnGreyImg:setVisible(not canClaimTask)
self.mask:setVisible(collected) self.mask:setVisible(collected)
if collected then
self.cliamBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_DONE))
else
self.cliamBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM))
end
end end
return TaskCell return TaskCell