dialog.wxs 306 B

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