Compare commits
46 Commits
2.2.0
...
newstartvi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b26ce04f0 | ||
|
|
cd6abcea3b | ||
|
|
18bfe171c0 | ||
|
|
f57b7cb2ae | ||
|
|
06b4766c7f | ||
|
|
6a6ecfd51f | ||
|
|
7d34946fb5 | ||
|
|
f3aaf89d25 | ||
|
|
bacb60fb43 | ||
|
|
5c2a9ab91b | ||
|
|
b4869ac005 | ||
|
|
1ce63eaf10 | ||
|
|
f5758abf93 | ||
|
|
74d299a8c3 | ||
|
|
613bd00f10 | ||
|
|
f18b2cdbfa | ||
|
|
feb8554e6a | ||
|
|
594fb3b843 | ||
|
|
d4f053e850 | ||
|
|
af897c67d3 | ||
|
|
680317c0d2 | ||
|
|
5917e1858f | ||
|
|
93da82b024 | ||
|
|
57fafa1dac | ||
|
|
46c9685c56 | ||
|
|
0acf4e869c | ||
|
|
e7ba9860ff | ||
|
|
565549fd30 | ||
|
|
bd7a637133 | ||
|
|
df31006038 | ||
|
|
ad70789af5 | ||
|
|
4f3161aaf9 | ||
|
|
7fb0a11c2d | ||
|
|
f0f1664988 | ||
|
|
650ae39332 | ||
|
|
d14f939c8b | ||
|
|
b51c078a5a | ||
|
|
d9b27605a9 | ||
|
|
014d04337f | ||
|
|
bf85c50d7c | ||
|
|
3ef87a07e3 | ||
|
|
2e8b6a43d8 | ||
|
|
9c755e7648 | ||
|
|
74e58c7f65 | ||
|
|
aaf903a8a1 | ||
|
|
81b547fa7a |
12
README.md
@ -10,20 +10,26 @@ This template should help get you started developing with Vue 3 in Vite.
|
||||
|
||||
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
||||
|
||||
## Project Setup
|
||||
## 安装依赖
|
||||
|
||||
```sh
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compile and Hot-Reload for Development
|
||||
### 测试运行(热更新)
|
||||
|
||||
```sh
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Compile and Minify for Production
|
||||
### 构建项目
|
||||
|
||||
```sh
|
||||
npm run build
|
||||
```
|
||||
|
||||
### 将文件同步至CDN
|
||||
|
||||
```sh
|
||||
npm run upload-assets
|
||||
```
|
||||
|
||||
1737
package-lock.json
generated
13
package.json
@ -2,24 +2,29 @@
|
||||
"name": "kdoffical",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
"preview": "vite preview",
|
||||
"upload-assets": "esno scripts/uploadAssets2volOSS.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@volcengine/tos-sdk": "^2.7.5",
|
||||
"axios": "^1.6.8",
|
||||
"bootstrap": "^5.3.3",
|
||||
"bootstrap-icons": "latest",
|
||||
"ismobilejs": "1.1.1",
|
||||
"kdoffical": "file:",
|
||||
"path": "latest",
|
||||
"sass": "latest",
|
||||
"vue": "^3.2.45",
|
||||
"vue-router": "latest",
|
||||
"ismobilejs": "1.1.1"
|
||||
"vue-router": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"esno": "^4.8.0",
|
||||
"vite": "^4.0.0"
|
||||
}
|
||||
},
|
||||
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
||||
}
|
||||
|
||||
19
public/.htaccess
Normal file
@ -0,0 +1,19 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
# 开启URL重写引擎
|
||||
RewriteEngine On
|
||||
|
||||
# 规则 1: 处理根路径
|
||||
# 当用户请求确切的根路径 (例如 http://yourdomain.com/) 时
|
||||
# 内部重写到 start.html。
|
||||
# ^$ 匹配空路径 (即根目录)。[L] 表示这是最后一条规则,如果匹配成功则停止处理。
|
||||
RewriteRule ^$ /start.html [L]
|
||||
|
||||
# 规则 2: 处理其他所有路径 (标准的SPA规则)
|
||||
# 在处理其他路径之前,先确保请求的不是一个真实存在的文件或目录。
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
|
||||
# 如果以上条件满足 (不是文件或目录),
|
||||
# 则将请求重写到 index.html,让Vue Router处理。
|
||||
RewriteRule . /index.html [L]
|
||||
</IfModule>
|
||||
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 173 KiB |
BIN
public/ServiceProcessRes/Newbanner.png
Normal file
|
After Width: | Height: | Size: 389 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 19 KiB |
BIN
public/bottom/qrwecom03.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/openvideo/00.jpg
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 88 KiB |
|
Before Width: | Height: | Size: 88 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 88 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 42 KiB |