You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 line
678 B

  1. local BaseRechargeViewChoice = require("core.luaScript.Views.Main.RechargeViewChoice");
  2. local RechargeViewChoice = class("RechargeViewChoice", BaseRechargeViewChoice);
  3. function RechargeViewChoice:ctor(...)
  4. RechargeViewChoice.super.ctor(self, ...);
  5. end
  6. function RechargeViewChoice:onEnter()
  7. RechargeViewChoice.super.onEnter(self)
  8. end
  9. ---
  10. -- 获取客服
  11. --
  12. function RechargeViewChoice:getKeFuString()
  13. local list = {};
  14. local str = ""
  15. for k, v in ipairs(list) do
  16. str = str .. "客服微信" .. k .. ": " .. v .. "\n"
  17. end
  18. return str
  19. end
  20. ---
  21. -- 是否显示支付二维码
  22. --
  23. function RechargeViewChoice:isShowPayQR ()
  24. return true;
  25. end
  26. return RechargeViewChoice;