feat-新增部分uniapi

This commit is contained in:
Huang 2022-07-25 14:14:05 +08:00
parent 443cfcd858
commit 571f243092
7 changed files with 106 additions and 14 deletions

7
src/enums/appEnum.ts Normal file
View File

@ -0,0 +1,7 @@
/**
* @description: api
*/
export enum ClientApiResultEnum {
CLIENT_SUCCESS = 1,
CLIENT_ERROR = 0,
}

9
src/enums/httpEnum.ts Normal file
View File

@ -0,0 +1,9 @@
/**
* @description:
*/
export enum ResultEnum {
SUCCESS = 10000,
ERROR = 1,
TIMEOUT = 401,
TYPE = 'success',
}

View File

@ -2,7 +2,7 @@
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { onLoad } from '@dcloudio/uni-app'; import { onLoad } from '@dcloudio/uni-app';
import { Toast } from '@/utils/uniApi'; import { Toast } from '@/utils/uniapi/prompt';
import { router } from '@/utils/router'; import { router } from '@/utils/router';
const redirect = ref<string | undefined>(undefined); const redirect = ref<string | undefined>(undefined);
onLoad((query) => { onLoad((query) => {

View File

@ -1,9 +1,10 @@
import Request from './core/Request'; import Request from './core/Request';
import { assign } from 'lodash-es'; import { assign } from 'lodash-es';
import { HttpSuccess } from '@/types/http'; import { HttpSuccess } from '@/types/http';
import { Toast } from '@/utils/uniApi'; import { Toast } from '@/utils/uniapi/prompt';
import { getEnvValue } from '@/utils/env'; import { getEnvValue } from '@/utils/env';
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { ResultEnum } from '@/enums/httpEnum';
const BASE_URL = getEnvValue<string>('VITE_BASE_URL'); const BASE_URL = getEnvValue<string>('VITE_BASE_URL');
const HEADER = { const HEADER = {
@ -53,7 +54,7 @@ request.interceptors.response.use(
async (response: HttpSuccess<API>) => { async (response: HttpSuccess<API>) => {
const { data: resData } = response; const { data: resData } = response;
const { code, message } = resData; const { code, message } = resData;
if (code === 10000) { if (code === ResultEnum.SUCCESS) {
return resData as any; return resData as any;
} }
Toast(message); Toast(message);

View File

@ -1,11 +0,0 @@
export function Toast(title: string, options?: Partial<UniApp.ShowToastOptions>) {
uni.showToast({
title: title,
duration: 1500,
icon: 'none',
...options,
});
}
export function hideToast() {
uni.hideToast();
}

View File

View File

@ -0,0 +1,86 @@
/**
*
* https://uniapp.dcloud.io/api/ui/prompt.html
*/
/**
*
* @param title
* @param options
* @constructor
*/
export function Toast(title: string, options?: Partial<UniApp.ShowToastOptions>) {
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<UniApp.ShowLoadingOptions>) {
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);
},
});
});
}