message.js 422 B

1234567891011121314151617
  1. export default {
  2. toast(title, icon = 'none') {
  3. uni.showToast({ icon, title });
  4. },
  5. toastSuccess(title) {
  6. uni.showToast({ icon: 'success', title });
  7. },
  8. loading(title = '加载中') {
  9. uni.showLoading({ title });
  10. },
  11. loadingMustClose(title = '加载中') {
  12. uni.showLoading({ title: title, mask: true });
  13. },
  14. hideLoading() {
  15. uni.hideLoading();
  16. }
  17. };