Skip to content

Commit 39cc9a1

Browse files
committed
初次提交
1 parent 60136ef commit 39cc9a1

File tree

306 files changed

+60149
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+60149
-0
lines changed

cipher-console-front/.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1% in CN
2+
last 6 versions
3+
not ie <= 11
4+
Safari > 6

cipher-console-front/.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

cipher-console-front/.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/src/demo/

cipher-console-front/.eslintrc.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
root: true, // 此项是用来告诉eslint找当前配置文件不能往父级查找
3+
env: {
4+
node: true// 此项指定环境的全局变量,下面的配置指定为node环境
5+
},
6+
"extends": [// 此项是用来配置vue.js风格,就是说写代码的时候要规范的写,如果你使用vs-code我觉得应该可以避免出错
7+
"plugin:vue/essential",
8+
"@vue/standard"
9+
],
10+
rules: {// 规则配置写在这里
11+
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
12+
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
13+
"vue/no-parsing-error": [2, { "x-invalid-end-tag": false }],
14+
"quotes": [2, "double"], // 引号类型 `` "" ''
15+
"semi": [2, "always"]// 语句强制分号结尾
16+
},
17+
parserOptions: {
18+
parser: "babel-eslint"// 此项是用来指定eslint解析器的,解析器必须符合规则,babel-eslint解析器是对babel解析器的包装使其与ESLint解析
19+
}
20+
};

cipher-console-front/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# sf-console
2+
## 赛赋控制台
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Run your tests
19+
```
20+
npm run test
21+
```
22+
23+
### Lints and fixes files
24+
```
25+
npm run lint
26+
```
27+
28+
### Run your end-to-end tests
29+
```
30+
npm run test:e2e
31+
```
32+
33+
### Run your unit tests
34+
```
35+
npm run test:unit
36+
```
37+
38+
### Customize configuration
39+
See [Configuration Reference](https://cli.vuejs.org/config/).

cipher-console-front/babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
"@vue/app"
4+
]
5+
};

cipher-console-front/cypress.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"pluginsFile": "tests/e2e/plugins/index.js"
3+
}

cipher-console-front/dist/assets/css/AuthSource.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/Login.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
div[data-v-137a3633]{font-size:30px;color:#00f;padding-top:30px}

cipher-console-front/dist/assets/css/WifiAuthSetUp.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/app.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/audit.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/chunk-5c99ce9b.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/chunk-vendors.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cipher-console-front/dist/assets/css/home.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
14.6 KB
Loading
13.3 KB
Loading
Lines changed: 13 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)