mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
style- Eslint fix
This commit is contained in:
parent
aaa4a2f245
commit
e347eb3599
@ -1,7 +1,7 @@
|
||||
<script lang="ts" setup>
|
||||
import { buttonProps } from '@/components/BasicButton/prpos';
|
||||
|
||||
const { disabled } = defineProps(buttonProps);
|
||||
const props = defineProps(buttonProps);
|
||||
const emits = defineEmits(['click']);
|
||||
const click = () => {
|
||||
emits('click');
|
||||
@ -9,7 +9,7 @@
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="default-btn" @tap="click"><slot></slot></view>
|
||||
<view class="default-btn" :disabled="props.disabled" @tap="click"><slot></slot></view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
// 登出
|
||||
const handleLoginOut = () => {
|
||||
authStore.loginOut().then((res) => {
|
||||
authStore.loginOut().then(() => {
|
||||
isLogin.value = false;
|
||||
});
|
||||
};
|
||||
|
@ -15,7 +15,7 @@
|
||||
});
|
||||
const authStore = useAuthStore();
|
||||
const submit = (e: any) => {
|
||||
authStore.login(e.detail.value).then((res) => {
|
||||
authStore.login(e.detail.value).then(() => {
|
||||
Toast('登录成功', { duration: 1500 });
|
||||
setTimeout(() => {
|
||||
router.pushTab('/pages/about/index');
|
||||
|
@ -33,7 +33,9 @@ export default <T>(config: HttpRequestConfig) => {
|
||||
if (typeof res.data === 'string') {
|
||||
res.data = JSON.parse(res.data);
|
||||
}
|
||||
} catch (e) {}
|
||||
} catch (e: any) {
|
||||
reject(e);
|
||||
}
|
||||
const cloneConfig = cloneDeep(config);
|
||||
cloneConfig.fullPath = fullPath;
|
||||
const response = {
|
||||
|
@ -1,8 +1,5 @@
|
||||
import Request from './core/Request';
|
||||
import { getCache } from '@/utils/catch';
|
||||
import { TOKEN_KEY } from '@/enums/cacheEnum';
|
||||
import { assign } from 'lodash-es';
|
||||
import { error } from '@/utils/log';
|
||||
import { HttpSuccess } from '@/types/http';
|
||||
import { Toast } from '@/utils/uniApi';
|
||||
import { getEnvValue } from '@/utils/env';
|
||||
@ -14,8 +11,6 @@ const HEADER = {
|
||||
Accept: 'application/json, text/plain, */*',
|
||||
};
|
||||
|
||||
const TOKEN = () => getCache<string>(TOKEN_KEY) || undefined;
|
||||
|
||||
function createRequest() {
|
||||
return new Request({
|
||||
baseURL: BASE_URL,
|
||||
@ -33,7 +28,6 @@ const request = createRequest();
|
||||
request.interceptors.request.use(
|
||||
(options) => {
|
||||
const { config } = options;
|
||||
const token = TOKEN();
|
||||
if (config.custom?.auth) {
|
||||
const authStore = useAuthStore();
|
||||
if (!authStore.isLogin) {
|
||||
@ -56,9 +50,9 @@ request.interceptors.request.use(
|
||||
* 响应拦截器
|
||||
*/
|
||||
request.interceptors.response.use(
|
||||
async (response: HttpSuccess<API<any>>) => {
|
||||
async (response: HttpSuccess<API>) => {
|
||||
const { data: resData } = response;
|
||||
const { code, message, data } = resData;
|
||||
const { code, message } = resData;
|
||||
if (code === 10000) {
|
||||
return resData as any;
|
||||
}
|
||||
|
@ -125,6 +125,7 @@ export function deepMerge(/* obj1, obj2, obj3, ... */) {
|
||||
}
|
||||
}
|
||||
for (let i = 0, l = arguments.length; i < l; i++) {
|
||||
// eslint-disable-next-line prefer-rest-params
|
||||
forEach(arguments[i], assignValue);
|
||||
}
|
||||
return result;
|
||||
|
@ -20,6 +20,6 @@
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"node_modules/**/uni.d.ts"
|
||||
"node_modules/@dcloudio/types/uni-app/uni.d.ts"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user