Browse Source

收入分析

2545307760@qq.com 7 months ago
parent
commit
e2d59ab6d1
4 changed files with 17 additions and 3 deletions
  1. 2 3
      web/.env.development
  2. 1 0
      web/package.json
  3. 1 0
      web/src/pinia/modules/user.js
  4. 13 0
      web/src/view/projectManage/index.vue

+ 2 - 3
web/.env.development

@@ -4,12 +4,11 @@ VITE_CLI_PORT = 8080
 VITE_SERVER_PORT = 8220
 VITE_BASE_API = /api
 VITE_FILE_API = /api
-VITE_BASE_PATH = http://192.168.110.218
+VITE_BASE_PATH = http://127.0.0.1
 VITE_POSITION = close
 VITE_EDITOR = webstorm
 
 
 // VITE_EDITOR = webstorm 如果使用webstorm开发且要使用dom定位到代码行功能 请先自定添加 webstorm到环境变量 再将VITE_EDITOR值修改为webstorm
 // 如果使用docker-compose开发模式,设置为下面的地址或本机主机IP
-//VITE_BASE_PATH = http://110.40.223.170
-
+//VITE_BASE_PATH = http://106.52.134.22

+ 1 - 0
web/package.json

@@ -57,6 +57,7 @@
         "dotenv": "^16.3.1",
         "eslint": "^8.49.0",
         "eslint-plugin-vue": "^9.15.1",
+        "less": "^4.2.0",
         "sass": "^1.54.0",
         "terser": "^5.19.1",
         "unplugin-auto-import": "^0.16.6",

+ 1 - 0
web/src/pinia/modules/user.js

@@ -56,6 +56,7 @@ export const useUserStore = defineStore('user', () => {
     })
     try {
       const res = await login(loginInfo)
+      console.log(res)
       if (res.code === 0) {
         setUserInfo(res.data.user)
         setToken(res.data.token)

+ 13 - 0
web/src/view/projectManage/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div>项目管理</div>
+</template>
+
+<script>
+export default {
+  name: 'index',
+}
+</script>
+
+<style scoped>
+
+</style>