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