合伙人运营小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. };