mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: fix eslint format
This commit is contained in:
parent
ebb863078c
commit
639a75adfa
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -5,6 +5,5 @@
|
|||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll.eslint": true
|
"source.fixAll.eslint": true
|
||||||
},
|
},
|
||||||
"eslint.validate": ["typescript", "javascript", "vue", "html"],
|
"eslint.validate": ["typescript", "javascript", "vue", "html"]
|
||||||
"eslint.options": { "configFile": ".eslintrc.js" }
|
|
||||||
}
|
}
|
||||||
|
34
package.json
34
package.json
@ -3,13 +3,37 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "",
|
"description": "",
|
||||||
"author": "iam-see <chen.dev@foxmail.com> (https://github.com/chansee97/)",
|
"author": {
|
||||||
|
"name": "chansee97",
|
||||||
|
"email": "chen.dev@foxmail.com",
|
||||||
|
"url": "https://github.com/chansee97"
|
||||||
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/chansee97/Ench-admin",
|
"homepage": "https://github.com/chansee97/Ench-admin",
|
||||||
|
"repository": {
|
||||||
|
"url": "https://github.com/chansee97/Ench-admin.git"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/chansee97/Ench-admin/issues"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Vue",
|
"Vue",
|
||||||
"Vue3",
|
"Vue3",
|
||||||
"admin"
|
"admin",
|
||||||
|
"admin-template",
|
||||||
|
"vue-admin",
|
||||||
|
"vue-admin-template",
|
||||||
|
"Vite4",
|
||||||
|
"Vite",
|
||||||
|
"vite-admin",
|
||||||
|
"TypeScript",
|
||||||
|
"TS",
|
||||||
|
"NaiveUI",
|
||||||
|
"naive-ui",
|
||||||
|
"naive-admin",
|
||||||
|
"NaiveUI-Admin",
|
||||||
|
"naive-ui-admin",
|
||||||
|
"UnoCSS"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
@ -82,8 +106,10 @@
|
|||||||
"commit-msg": "pnpm commitlint -e"
|
"commit-msg": "pnpm commitlint -e"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{js,jsx,,mjs,ts,tsx,json,,md,yml}": [
|
"*.{js,jsx,mjs,ts,tsx,json,md,yml}": [
|
||||||
"eslint --fix"
|
"eslint --fix"
|
||||||
]
|
],
|
||||||
|
"*.vue": [
|
||||||
|
"eslint --fix" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
27
src/App.vue
27
src/App.vue
@ -1,25 +1,20 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { GlobalThemeOverrides } from 'naive-ui'
|
import type { GlobalThemeOverrides } from 'naive-ui'
|
||||||
import { dateZhCN, useOsTheme, zhCN } from 'naive-ui'
|
import { dateZhCN, useOsTheme, zhCN } from 'naive-ui'
|
||||||
import { useAppStore } from './store'
|
import { useAppStore } from './store'
|
||||||
// import themeConfig from './theme.json';
|
import themeConfig from './theme.json';
|
||||||
|
|
||||||
const locale = zhCN
|
const locale = zhCN
|
||||||
const dateLocale = dateZhCN
|
const dateLocale = dateZhCN
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
|
const osThemeRef = useOsTheme()
|
||||||
|
appStore.setDarkMode(osThemeRef.value === 'dark')
|
||||||
|
|
||||||
const osThemeRef = useOsTheme()
|
const themeOverrides: GlobalThemeOverrides = {} || themeConfig
|
||||||
appStore.setDarkMode(osThemeRef.value === 'dark')
|
|
||||||
|
|
||||||
const themeOverrides: GlobalThemeOverrides = {}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<n-config-provider
|
<n-config-provider class="wh-full" :theme="appStore.darkTheme" :locale="locale" :date-locale="dateLocale"
|
||||||
class="wh-full"
|
|
||||||
:theme="appStore.darkTheme"
|
|
||||||
:locale="locale"
|
|
||||||
:date-locale="dateLocale"
|
|
||||||
:theme-overrides="themeOverrides">
|
:theme-overrides="themeOverrides">
|
||||||
<naive-provider><router-view /></naive-provider>
|
<naive-provider><router-view /></naive-provider>
|
||||||
</n-config-provider>
|
</n-config-provider>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { useAuthStore } from '@/store'
|
import { useAuthStore } from '@/store'
|
||||||
|
|
||||||
const authStore = useAuthStore()
|
const authStore = useAuthStore()
|
||||||
|
|
||||||
const { userInfo } = authStore
|
const { userInfo } = authStore
|
||||||
@ -42,24 +43,13 @@ function handleValidateClick() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<n-grid
|
<n-grid :y-gap="16" :cols="1">
|
||||||
:y-gap="16"
|
|
||||||
:cols="1"
|
|
||||||
>
|
|
||||||
<n-gi>
|
<n-gi>
|
||||||
<n-card title="个人信息">
|
<n-card title="个人信息">
|
||||||
<n-space size="large">
|
<n-space size="large">
|
||||||
<n-avatar
|
<n-avatar round :size="128" :src="userInfo?.avatar" />
|
||||||
round
|
|
||||||
:size="128"
|
|
||||||
:src="userInfo?.avatar"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<n-descriptions
|
<n-descriptions label-placement="left" :column="2" :title="`傍晚好,${userInfo?.userName},这里是简单的个人中心模板`">
|
||||||
label-placement="left"
|
|
||||||
:column="2"
|
|
||||||
:title="`傍晚好,${userInfo?.userName},这里是简单的个人中心模板`"
|
|
||||||
>
|
|
||||||
<n-descriptions-item label="id">
|
<n-descriptions-item label="id">
|
||||||
{{ userInfo?.userId }}
|
{{ userInfo?.userId }}
|
||||||
</n-descriptions-item>
|
</n-descriptions-item>
|
||||||
@ -80,46 +70,18 @@ function handleValidateClick() {
|
|||||||
<n-gi>
|
<n-gi>
|
||||||
<n-card title="信息修改">
|
<n-card title="信息修改">
|
||||||
<n-space justify="center">
|
<n-space justify="center">
|
||||||
<n-form
|
<n-form ref="formRef" class="w-500px" :label-width="80" :model="formValue" :rules="rules">
|
||||||
ref="formRef"
|
<n-form-item label="姓名" path="user.name">
|
||||||
class="w-500px"
|
<n-input v-model:value="formValue.user.name" placeholder="输入姓名" />
|
||||||
:label-width="80"
|
|
||||||
:model="formValue"
|
|
||||||
:rules="rules"
|
|
||||||
>
|
|
||||||
<n-form-item
|
|
||||||
label="姓名"
|
|
||||||
path="user.name"
|
|
||||||
>
|
|
||||||
<n-input
|
|
||||||
v-model:value="formValue.user.name"
|
|
||||||
placeholder="输入姓名"
|
|
||||||
/>
|
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-form-item
|
<n-form-item label="年龄" path="user.age">
|
||||||
label="年龄"
|
<n-input v-model:value="formValue.user.age" placeholder="输入年龄" />
|
||||||
path="user.age"
|
|
||||||
>
|
|
||||||
<n-input
|
|
||||||
v-model:value="formValue.user.age"
|
|
||||||
placeholder="输入年龄"
|
|
||||||
/>
|
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-form-item
|
<n-form-item label="电话号码" path="phone">
|
||||||
label="电话号码"
|
<n-input v-model:value="formValue.phone" placeholder="电话号码" />
|
||||||
path="phone"
|
|
||||||
>
|
|
||||||
<n-input
|
|
||||||
v-model:value="formValue.phone"
|
|
||||||
placeholder="电话号码"
|
|
||||||
/>
|
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-form-item>
|
<n-form-item>
|
||||||
<n-button
|
<n-button attr-type="button" block @click="handleValidateClick">
|
||||||
attr-type="button"
|
|
||||||
block
|
|
||||||
@click="handleValidateClick"
|
|
||||||
>
|
|
||||||
验证
|
验证
|
||||||
</n-button>
|
</n-button>
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user