From 571f24309272d53f27c301189f3d5e2536627666 Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Mon, 25 Jul 2022 14:14:05 +0800 Subject: [PATCH] =?UTF-8?q?feat-=E6=96=B0=E5=A2=9E=E9=83=A8=E5=88=86uniapi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/enums/appEnum.ts | 7 ++++ src/enums/httpEnum.ts | 9 ++++ src/pages/login/index.vue | 2 +- src/utils/http/index.ts | 5 ++- src/utils/uniApi.ts | 11 ----- src/utils/uniapi/index.ts | 0 src/utils/uniapi/prompt.ts | 86 ++++++++++++++++++++++++++++++++++++++ 7 files changed, 106 insertions(+), 14 deletions(-) create mode 100644 src/enums/appEnum.ts create mode 100644 src/enums/httpEnum.ts delete mode 100644 src/utils/uniApi.ts create mode 100644 src/utils/uniapi/index.ts create mode 100644 src/utils/uniapi/prompt.ts diff --git a/src/enums/appEnum.ts b/src/enums/appEnum.ts new file mode 100644 index 0000000..0d89b72 --- /dev/null +++ b/src/enums/appEnum.ts @@ -0,0 +1,7 @@ +/** + * @description: 客户端 api 返回结果设置 + */ +export enum ClientApiResultEnum { + CLIENT_SUCCESS = 1, + CLIENT_ERROR = 0, +} diff --git a/src/enums/httpEnum.ts b/src/enums/httpEnum.ts new file mode 100644 index 0000000..b67197b --- /dev/null +++ b/src/enums/httpEnum.ts @@ -0,0 +1,9 @@ +/** + * @description: 请求结果设置 + */ +export enum ResultEnum { + SUCCESS = 10000, + ERROR = 1, + TIMEOUT = 401, + TYPE = 'success', +} diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index 325103f..113faed 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -2,7 +2,7 @@ import { reactive, ref } from 'vue'; import { useAuthStore } from '@/state/modules/auth'; import { onLoad } from '@dcloudio/uni-app'; - import { Toast } from '@/utils/uniApi'; + import { Toast } from '@/utils/uniapi/prompt'; import { router } from '@/utils/router'; const redirect = ref(undefined); onLoad((query) => { diff --git a/src/utils/http/index.ts b/src/utils/http/index.ts index 58b9130..dd0e673 100644 --- a/src/utils/http/index.ts +++ b/src/utils/http/index.ts @@ -1,9 +1,10 @@ import Request from './core/Request'; import { assign } from 'lodash-es'; import { HttpSuccess } from '@/types/http'; -import { Toast } from '@/utils/uniApi'; +import { Toast } from '@/utils/uniapi/prompt'; import { getEnvValue } from '@/utils/env'; import { useAuthStore } from '@/state/modules/auth'; +import { ResultEnum } from '@/enums/httpEnum'; const BASE_URL = getEnvValue('VITE_BASE_URL'); const HEADER = { @@ -53,7 +54,7 @@ request.interceptors.response.use( async (response: HttpSuccess) => { const { data: resData } = response; const { code, message } = resData; - if (code === 10000) { + if (code === ResultEnum.SUCCESS) { return resData as any; } Toast(message); diff --git a/src/utils/uniApi.ts b/src/utils/uniApi.ts deleted file mode 100644 index 4473aa5..0000000 --- a/src/utils/uniApi.ts +++ /dev/null @@ -1,11 +0,0 @@ -export function Toast(title: string, options?: Partial) { - uni.showToast({ - title: title, - duration: 1500, - icon: 'none', - ...options, - }); -} -export function hideToast() { - uni.hideToast(); -} diff --git a/src/utils/uniapi/index.ts b/src/utils/uniapi/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/utils/uniapi/prompt.ts b/src/utils/uniapi/prompt.ts new file mode 100644 index 0000000..71f7440 --- /dev/null +++ b/src/utils/uniapi/prompt.ts @@ -0,0 +1,86 @@ +/** + * 交互反馈 + * https://uniapp.dcloud.io/api/ui/prompt.html + */ + +/** + * 显示消息提示框 + * @param title + * @param options + * @constructor + */ +export function Toast(title: string, options?: Partial) { + uni.showToast({ + title: title, + duration: 1500, + icon: 'none', + mask: true, + ...options, + }); +} + +/** + * 隐藏消息提示框 + */ +export function HideToast() { + uni.hideToast(); +} + +/** + * 显示 loading 提示框 + * @param title + * @param options + * @constructor + */ +export function Loading(title: string, options?: Partial) { + uni.showLoading({ + title: title, + mask: true, + ...options, + }); +} + +/** + * 隐藏 loading 提示框 + */ +export function HideLoading() { + uni.hideLoading(); +} + +/** + * 显示模态弹窗,可以只有一个确定按钮,也可以同时有确定和取消按钮 + * @param options + * @constructor + */ +export function Modal(options: UniApp.ShowModalOptions) { + return new Promise((resolve, reject) => { + uni.showModal({ + ...options, + success: (res) => { + resolve(res); + }, + fail: (res) => { + reject(res); + }, + }); + }); +} + +/** + * 从底部向上弹出操作菜单 + * @param options + * @constructor + */ +export function ActionSheet(options: UniApp.ShowActionSheetOptions) { + return new Promise((resolve, reject) => { + uni.showActionSheet({ + ...options, + success: (res) => { + resolve(res); + }, + fail: (res) => { + reject(res); + }, + }); + }); +}