common.js 226 B

1234567891011121314
  1. const setTip = (that,title='操作成功') => {
  2. return new Promise((reslove, reject) => {
  3. that.show({
  4. title,
  5. type: 'success',
  6. duration: '1000'
  7. })
  8. setTimeout(() => {
  9. reslove()
  10. },1000)
  11. })
  12. }
  13. export {setTip}