feat: 更新依赖和修复已知的问题

This commit is contained in:
fonghehe 2022-06-06 19:59:45 +08:00
parent c5c054b715
commit 8fcb50be02
11 changed files with 1998 additions and 468 deletions

0
.husky/pre-commit Normal file → Executable file
View File

View File

@ -217,7 +217,7 @@ export const router = [
name: 'root', name: 'root',
path: '/', path: '/',
redirect: '/home', redirect: '/home',
component: () => import('@/components/Basic/index.vue'), component: () => import('@/layout/basic/index.vue'),
}, },
]; ];

View File

@ -11,44 +11,40 @@
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged", "lint:lint-staged": "lint-staged",
"prepare": "husky install",
"deps": "yarn upgrade-interactive --latest" "deps": "yarn upgrade-interactive --latest"
}, },
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": { "dependencies": {
"@nutui/nutui": "^3.1.20", "@nutui/nutui": "^3.1.21",
"@vueuse/core": "8.5.0", "@vueuse/core": "8.6.0",
"@vueuse/integrations": "8.5.0", "@vueuse/integrations": "8.6.0",
"axios": "0.27.2", "axios": "0.27.2",
"pinia": "^2.0.14", "pinia": "^2.0.14",
"universal-cookie": "^4.0.4", "universal-cookie": "^4.0.4",
"vant": "^3.4.9", "vant": "^3.5.0",
"vue": "^3.2.36", "vue": "^3.2.36",
"vue-i18n": "^9.1.10", "vue-i18n": "^9.1.10",
"vue-router": "^4.0.15" "vue-router": "^4.0.15"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^17.0.35", "@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.26.0", "@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.26.0", "@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-legacy": "^1.8.2", "@vitejs/plugin-legacy": "^1.8.2",
"@vitejs/plugin-vue": "^2.3.3", "@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10", "@vitejs/plugin-vue-jsx": "^1.3.10",
"consola": "^2.15.3", "consola": "^2.15.3",
"eruda": "^2.4.1", "eruda": "^2.4.1",
"eslint": "^8.16.0", "eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.0.1", "eslint-plugin-vue": "^9.1.0",
"husky": "7.0.4", "husky": "8.0.1",
"lint-staged": "12.4.1", "lint-staged": "12.4.1",
"mockjs": "^1.1.0", "mockjs": "^1.1.0",
"postcss": "^8.4.14", "postcss": "^8.4.14",
"postcss-html": "1.4.1",
"postcss-px-to-viewport-8-plugin": "^1.1.3", "postcss-px-to-viewport-8-plugin": "^1.1.3",
"postcss-html": "^1.4.1",
"postcss-less": "^6.0.0", "postcss-less": "^6.0.0",
"prettier": "^2.6.2", "prettier": "^2.6.2",
"stylelint": "^14.8.5", "stylelint": "^14.8.5",
@ -57,14 +53,18 @@
"stylelint-config-recommended-vue": "^1.4.0", "stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0", "stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0", "stylelint-order": "^5.0.0",
"typescript": "^4.7.2", "typescript": "^4.6.3",
"vite": "^2.9.9", "vite": "^2.9.9",
"vite-plugin-eruda": "^1.0.1", "vite-plugin-eruda": "^1.0.1",
"vite-plugin-mock": "^2.9.6", "vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0", "vite-plugin-style-import": "^2.0.0",
"vue-eslint-parser": "^9.0.2", "vue-eslint-parser": "^9.0.2",
"vue-tsc": "^0.34.16", "vue-tsc": "^0.36.1"
"yorkie": "^2.0.0" },
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx,ts,tsx}": [ "*.{js,jsx,ts,tsx}": [

1677
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -18,8 +18,7 @@
const router = useRouter(); const router = useRouter();
const tabSwitch = (item, index) => { const tabSwitch = (_item, index) => {
console.log(item, index);
switch (index) { switch (index) {
case 0: case 0:
router.push('/home'); router.push('/home');

View File

@ -1,32 +1,28 @@
const routes = [ const routes = [
{ {
name: 'root',
path: '/', path: '/',
redirect: '/home', redirect: '/home',
component: () => import('/@/components/Basic/index.vue'), component: () => import('/@/layout/basic/index.vue'),
children: [ children: [
{ {
name: 'Home',
path: 'home', path: 'home',
component: () => import('/@/views/Home/index.vue'), component: () => import('/@/views/home/index.vue'),
meta: { meta: {
title: '', title: '',
keepAlive: true, keepAlive: true,
}, },
}, },
{ {
name: 'List',
path: 'list', path: 'list',
component: () => import('/@/views/List/index.vue'), component: () => import('/@/views/list/index.vue'),
meta: { meta: {
title: '', title: '',
keepAlive: true, keepAlive: true,
}, },
}, },
{ {
name: 'Member',
path: 'member', path: 'member',
component: () => import('/@/views/Member/index.vue'), component: () => import('/@/views/member/index.vue'),
meta: { meta: {
title: '', title: '',
keepAlive: true, keepAlive: true,
@ -35,9 +31,9 @@ const routes = [
], ],
}, },
{ {
name: 'Login', name: 'login',
path: '/login', path: '/login',
component: () => import('/@/views/Login/index.vue'), component: () => import('/@/views/login/index.vue'),
meta: { meta: {
title: '', title: '',
keepAlive: true, keepAlive: true,

View File

@ -1,8 +1,8 @@
import { AnyObject } from '/#/global';
import { loginPassword } from '/@/api'; import { loginPassword } from '/@/api';
import { useCookies } from '@vueuse/integrations/useCookies'; import { useCookies } from '@vueuse/integrations/useCookies';
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { watch } from 'vue'; import { watch } from 'vue';
import { AnyObject } from '/#/global';
const { VITE_TOKEN_KEY } = import.meta.env; const { VITE_TOKEN_KEY } = import.meta.env;
const token = useCookies().get(VITE_TOKEN_KEY as string); const token = useCookies().get(VITE_TOKEN_KEY as string);

View File

@ -25,7 +25,6 @@
</nut-button> </nut-button>
</div> </div>
{{ getUserInfo }} {{ getUserInfo }}
<Tabbar />
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>

View File

@ -24,7 +24,6 @@
pwd: '', pwd: '',
}); });
const ruleForm = ref<any>(null); const ruleForm = ref<any>(null);
// const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const submit = () => { const submit = () => {
ruleForm.value.validate().then(async ({ valid, errors }: any) => { ruleForm.value.validate().then(async ({ valid, errors }: any) => {
if (valid) { if (valid) {

View File

@ -37,6 +37,7 @@ export default function ({ command }: ConfigEnv): UserConfigExport {
}, },
server: { server: {
host: '0.0.0.0', host: '0.0.0.0',
hmr: true,
}, },
plugins: [ plugins: [
vue(), vue(),

725
yarn.lock

File diff suppressed because it is too large Load Diff