储能智慧云小程序
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.

input.wxs 345B

12345678910111213141516
  1. function getInputClass(classPrefix, suffix, align, disabled) {
  2. var className = [classPrefix + '__control'];
  3. if (align) {
  4. className.push(classPrefix + '--' + align);
  5. }
  6. if (disabled) {
  7. className.push(classPrefix + '__control--disabled');
  8. }
  9. return className.join(' ');
  10. }
  11. module.exports = {
  12. getInputClass: getInputClass,
  13. };