Commit 1fd24a26 authored by 张俊's avatar 张俊

[feat](全局样式): 全局样式及代码格式化

parent 0c04363c
node_modules
dist
pnpm-lock.yaml
auto-imports.d.ts
components.d.ts
env.d.ts
*.md
iconfont.js
.DS_Store
.history
{
"$schema": "http://json.schemastore.org/prettierrc",
"semi": true,
"singleQuote": false,
"bracketSameLine": true
}
\ No newline at end of file
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"GitCommitPlugin.ShowEmoji": false
"GitCommitPlugin.ShowEmoji": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"volar.inlayHints.eventArgumentInInlineHandlers": false,
// "path-intellisense.mappings": {
// "@": "${workspaceFolder}/src"
// },
// 文件保存自动格式化
"editor.formatOnSave": true,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
// https://code.visualstudio.com/docs/languages/jsconfig
{
"compilerOptions": {
"baseUrl": ".",
"module": "commonjs",
"target": "es6",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": [".git", "node_modules", "dist"]
}
\ No newline at end of file
.detail_container {
width: 100%;
padding: 0 24px;
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
.main_container {
flex-grow: 1;
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
background-color: #fff;
box-shadow: 0 1px 4px 0 rgba(0, 7, 101, 0.15);
border-radius: 6px;
padding: 0 0 16px 0;
margin-bottom: 16px;
position: relative;
.table_container {
padding: 0 16px;
.el-table {
flex: 1;
.mock_tip {
display: inline-block;
font-size: 12px;
color: #2b4695;
width: 43px;
height: 20px;
text-align: center;
background-color: #eff2fa;
border-radius: 3px;
border: solid 1px #b0bee8;
margin-left: 4px;
}
}
}
}
}
\ No newline at end of file
......@@ -12,6 +12,8 @@ import * as ElementPlusIconsVue from "@element-plus/icons-vue";
import bgui from "@/bg-ui";
import "@/bg-ui/index.scss";
import "./assets/css/common.scss"
import msgSdk from "./msg-sdk/index.js";
import App from "./App.vue";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment