index.uts 250 B

12345678910111213
  1. /**
  2. * 震动
  3. * @param {number} duriation 震动时间单位ms,ios微信失效
  4. */
  5. export function vibrate(duriation: number) {
  6. wx.vibrateShort({
  7. type: "medium",
  8. success() {},
  9. fail(error) {
  10. console.error("微信:震动失败");
  11. }
  12. });
  13. }