accounting-page 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,48 +5,4 @@ This template should help get you started developing with Vue 3 and TypeScript i
5
5
  the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
6
6
 
7
7
  Learn more about the recommended Project Setup and IDE Support in
8
- the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
9
-
10
- ## Run
11
-
12
- ### 环境
13
-
14
- ```shell
15
- $$env:PATH+=";"+$env:USERPROFILE+"\AppData\Roaming\JetBrains\IntelliJIdea2026.1\node\versions\24.13.0\"
16
- ```
17
-
18
- ### 新的开发
19
-
20
- ```shell
21
- $$env:INVEST_VERSION = (Get-Content "./version.txt" -Raw).Trim()
22
- ```
23
-
24
- ```shell
25
- echo "已设置版本:$env:INVEST_VERSION"
26
- ```
27
-
28
- ```shell
29
- git add .
30
- ```
31
-
32
- ```shell
33
- git commit -m "#1 简易记账"
34
- ```
35
-
36
- ```shell
37
- git tag -a v$env:INVEST_VERSION -m "发布版本$env:INVEST_VERSION"
38
- ```
39
-
40
- ```shell
41
- git push origin v$env:INVEST_VERSION
42
- ```
43
-
44
- ```shell
45
- git push origin dev_chixh
46
- ```
47
-
48
- ### 发布
49
-
50
- ```shell
51
- npm publish
52
- ```
8
+ the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accounting-page",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
package/src/main.ts CHANGED
@@ -11,7 +11,7 @@ import axios from 'axios'
11
11
  app.use(Vant)
12
12
 
13
13
  // 配置后端接口地址
14
- axios.defaults.baseURL = '/api'
14
+ axios.defaults.baseURL = '/invest/accounting/api'
15
15
  app.config.globalProperties.$axios = axios
16
16
  import router from './router'
17
17
  app.use(router)
package/vite.config.ts CHANGED
@@ -6,10 +6,10 @@ export default defineConfig({
6
6
  plugins: [vue()],
7
7
  server: {
8
8
  host: "0.0.0.0",
9
- port: 5011,
9
+ port: 6013,
10
10
  proxy: {
11
- "/api": {
12
- target: "http://[::1]:5001",
11
+ "/invest/accounting/api": {
12
+ target: "http://[::1]:6011",
13
13
  },
14
14
  }
15
15
  },
package/version.txt DELETED
@@ -1 +0,0 @@
1
- 0.1.9