mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
feat-新增部分uniapi
This commit is contained in:
parent
443cfcd858
commit
571f243092
7
src/enums/appEnum.ts
Normal file
7
src/enums/appEnum.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
/**
|
||||||
|
* @description: 客户端 api 返回结果设置
|
||||||
|
*/
|
||||||
|
export enum ClientApiResultEnum {
|
||||||
|
CLIENT_SUCCESS = 1,
|
||||||
|
CLIENT_ERROR = 0,
|
||||||
|
}
|
9
src/enums/httpEnum.ts
Normal file
9
src/enums/httpEnum.ts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/**
|
||||||
|
* @description: 请求结果设置
|
||||||
|
*/
|
||||||
|
export enum ResultEnum {
|
||||||
|
SUCCESS = 10000,
|
||||||
|
ERROR = 1,
|
||||||
|
TIMEOUT = 401,
|
||||||
|
TYPE = 'success',
|
||||||
|
}
|
@ -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) => {
|
||||||
|
@ -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);
|
||||||
|
@ -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();
|
|
||||||
}
|
|
0
src/utils/uniapi/index.ts
Normal file
0
src/utils/uniapi/index.ts
Normal file
86
src/utils/uniapi/prompt.ts
Normal file
86
src/utils/uniapi/prompt.ts
Normal 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);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user