电速宝
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.

slider.wxs 235B

12345678910
  1. var REGEXP = getRegExp('[$][{value}]{7}');
  2. function getValue(label, value) {
  3. if (label && label === 'true') return value;
  4. if (REGEXP.test(label)) return label.replace(REGEXP, value);
  5. }
  6. module.exports = {
  7. getValue: getValue,
  8. };