style- Eslint fix

This commit is contained in:
Huang 2022-07-22 11:54:43 +08:00
parent aaa4a2f245
commit e347eb3599
7 changed files with 11 additions and 14 deletions

View File

@ -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>

View File

@ -15,7 +15,7 @@
//
const handleLoginOut = () => {
authStore.loginOut().then((res) => {
authStore.loginOut().then(() => {
isLogin.value = false;
});
};

View File

@ -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');

View File

@ -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 = {

View File

@ -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;
}

View File

@ -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;

View File

@ -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"
]
}