App.wxs 192 B

1234567891011
  1. {
  2. /* <script module="utils" lang="wxs" src="./utils.wxs"></script> */
  3. }
  4. function formatPrice(price) {
  5. return (price / 100).toFixed(2);
  6. }
  7. module.exports = {
  8. formatPrice: formatPrice
  9. };