├── .DS_Store
├── .gitattributes
├── JDC
├── JDC-web
├── .env.production
├── .gitignore
├── README.md
├── babel.config.js
├── package-lock.json
├── package.json
├── public
│ ├── card.webp
│ ├── favicon.ico
│ └── index.html
└── src
│ ├── App.vue
│ ├── assets
│ └── logo.png
│ ├── components
│ ├── AppBar.vue
│ ├── BarLeft.vue
│ ├── Common.vue
│ ├── HelloWorld.vue
│ ├── My.vue
│ ├── NodeSelect.vue
│ ├── Push.vue
│ └── QrCode.vue
│ ├── main.js
│ ├── router
│ └── index.js
│ └── views
│ ├── Home.vue
│ ├── Login.vue
│ └── Push.vue
├── JDCarm
└── README.md
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/.DS_Store
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/JDC:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/JDC
--------------------------------------------------------------------------------
/JDC-web/.env.production:
--------------------------------------------------------------------------------
1 | NODE_ENV=development
2 | VUE_APP_API_URL=[{"name":"京东节点1","url":""}]
3 |
--------------------------------------------------------------------------------
/JDC-web/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 | .env.development
10 |
11 | # Log files
12 | npm-debug.log*
13 | yarn-debug.log*
14 | yarn-error.log*
15 | pnpm-debug.log*
16 |
17 | # Editor directories and files
18 | .idea
19 | .vscode
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/JDC-web/README.md:
--------------------------------------------------------------------------------
1 | # jdc
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 | ### Lints and fixes files
19 | ```
20 | npm run lint
21 | ```
22 |
23 | ### Customize configuration
24 | See [Configuration Reference](https://cli.vuejs.org/config/).
25 |
--------------------------------------------------------------------------------
/JDC-web/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/JDC-web/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "KELEJDC",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "serve": "vue-cli-service serve",
7 | "build": "vue-cli-service build",
8 | "lint": "vue-cli-service lint"
9 | },
10 | "dependencies": {
11 | "axios": "^0.21.1",
12 | "core-js": "^3.6.5",
13 | "mdui": "^1.0.2",
14 | "vue": "^2.6.11",
15 | "vue-router": "^3.2.0"
16 | },
17 | "devDependencies": {
18 | "@vue/cli-plugin-babel": "~4.5.0",
19 | "@vue/cli-plugin-eslint": "~4.5.0",
20 | "@vue/cli-plugin-router": "^4.5.13",
21 | "@vue/cli-service": "~4.5.0",
22 | "babel-eslint": "^10.1.0",
23 | "eslint": "^6.7.2",
24 | "eslint-plugin-vue": "^6.2.2",
25 | "vue-template-compiler": "^2.6.11"
26 | },
27 | "eslintConfig": {
28 | "root": true,
29 | "env": {
30 | "node": true
31 | },
32 | "extends": [
33 | "plugin:vue/essential",
34 | "eslint:recommended"
35 | ],
36 | "parserOptions": {
37 | "parser": "babel-eslint"
38 | },
39 | "rules": {}
40 | },
41 | "browserslist": [
42 | "> 1%",
43 | "last 2 versions",
44 | "not dead"
45 | ]
46 | }
47 |
--------------------------------------------------------------------------------
/JDC-web/public/card.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/JDC-web/public/card.webp
--------------------------------------------------------------------------------
/JDC-web/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/JDC-web/public/favicon.ico
--------------------------------------------------------------------------------
/JDC-web/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | <%= htmlWebpackPlugin.options.title %>
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/JDC-web/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
67 |
68 |
70 |
--------------------------------------------------------------------------------
/JDC-web/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/JDC-web/src/assets/logo.png
--------------------------------------------------------------------------------
/JDC-web/src/components/AppBar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
13 |
14 | {{notice}}
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
56 |
57 |
--------------------------------------------------------------------------------
/JDC-web/src/components/BarLeft.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 | move_to_inbox
6 |
首页
7 |
8 | -
9 | star
10 |
个人中心
11 |
12 | -
13 | send
14 |
消息推送
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/JDC-web/src/components/Common.vue:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/JDC-web/src/components/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
{{ msg }}
4 |
5 | For a guide and recipes on how to configure / customize this project,
6 | check out the
7 | vue-cli documentation.
8 |
9 |
Installed CLI Plugins
10 |
14 |
Essential Links
15 |
22 |
Ecosystem
23 |
30 |
31 |
32 |
33 |
41 |
42 |
43 |
59 |
--------------------------------------------------------------------------------
/JDC-web/src/components/My.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
10 |
11 |
14 |
15 |
节点:
16 | check_circle
17 | {{nodeName}}
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
删除
28 |
确认从系统中移除你的cookie吗?
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
105 |
106 |
--------------------------------------------------------------------------------
/JDC-web/src/components/NodeSelect.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 当前节点:
6 | {{nowStatusIcon}}
7 | {{nowName}}
8 |
可用:{{nowAllow}}
9 |
10 |
15 |
16 |
17 |
18 |
19 |
20 |
162 |
163 |
--------------------------------------------------------------------------------
/JDC-web/src/components/Push.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
消息推送
6 |
使用微信扫描二维码订阅消息
7 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
42 |
43 |
--------------------------------------------------------------------------------
/JDC-web/src/components/QrCode.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
扫码登录
7 |
{{tip}}
8 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
87 |
88 |
--------------------------------------------------------------------------------
/JDC-web/src/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App.vue'
3 | import router from './router'
4 | import '/node_modules/mdui/dist/css/mdui.css'
5 |
6 |
7 | Vue.config.productionTip = false
8 | new Vue({
9 | router,
10 | render: h => h(App)
11 | }).$mount('#app')
12 |
--------------------------------------------------------------------------------
/JDC-web/src/router/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import VueRouter from 'vue-router'
3 | import Home from '../views/Home.vue'
4 | import Login from '../views/Login.vue'
5 | import Push from '../views/Push.vue'
6 |
7 | Vue.use(VueRouter)
8 |
9 | const routes = [
10 | {
11 | path: '/',
12 | name: '首页',
13 | component: Login
14 | },
15 | {
16 | path: '/home',
17 | name: '个人中心',
18 | component: Home
19 | },
20 | {
21 | path: '/push',
22 | name: '消息推送',
23 | component: Push
24 | }
25 | ]
26 |
27 | const router = new VueRouter({
28 | routes
29 | })
30 |
31 | export default router
32 |
--------------------------------------------------------------------------------
/JDC-web/src/views/Home.vue:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
20 |
--------------------------------------------------------------------------------
/JDC-web/src/views/Login.vue:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
38 |
39 |
--------------------------------------------------------------------------------
/JDC-web/src/views/Push.vue:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/JDCarm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/colakele/JDC-kele/e92637fbf0a7d963f476acd164b422172f9a044c/JDCarm
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # JDC-kele
2 | JDC后端简单修改,只可以扫码登陆和删除,覆盖原文件运行即可
3 | 前端也只是去除了提示服务器连接失败的代码
4 |
5 |
--------------------------------------------------------------------------------