储能智慧云小程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

dialog.wxs 306B

12345678910111213
  1. module.exports.getTypeof = function (obj) {
  2. return typeof obj;
  3. };
  4. module.exports.getActionClass = function (prefix, buttonLayout) {
  5. var cls = [prefix + '__button', prefix + '__button--action'];
  6. if (buttonLayout) {
  7. cls.push(prefix + '__button--' + buttonLayout);
  8. }
  9. return cls.join(' ');
  10. };