Skip to content

Commit f791624

Browse files
committed
修改文档
1 parent 27251f5 commit f791624

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@
1818
npm run dev
1919
```
2020

21-
- 3、项目中配置了`dev``production``fat``uat`四个环境,每个环境配置了 3 个基础的`url`地址
22-
- 4、实际开发项目配置后端接口请求的地址在`src/api`中不同的环境配置
23-
- 5、自己写了一套存储过程作为存储用户信息用于登录拦截
24-
- 1.在`src/config`中配置常量
25-
2621
### 三、页面展示
2722

2823
- 1、登录页面
@@ -32,3 +27,12 @@
3227
- 2、主页面
3328

3429
![主页面](./demo.png)
30+
31+
### 四、主要功能
32+
33+
- 1、项目中配置了`dev``production``fat``uat`四个环境,每个环境配置了 3 个基础的`url`地址
34+
- 2、实际开发项目配置后端接口请求的地址在`src/api`中不同的环境配置
35+
- 3、自己写了一套存储过程作为存储用户信息用于登录拦截
36+
37+
* 4、对`axios`请求进行了封装处理
38+
* 5、引入`vuex`

src/components/app-sidebar/AppSidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
:router="true"
1010
background-color="#333"
1111
text-color="#fff"
12-
active-text-color="#f00"
12+
active-text-color="#3273dc"
1313
@open="handleOpen"
1414
@close="handleClose"
1515
>

src/views/shared/home/Home.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<script lang="ts">
1212
import { Component, Vue, Provide } from 'vue-property-decorator';
1313
import { State, Action } from 'vuex-class';
14-
import { homeStore } from '../../../store/homeStore';
1514
import { IViewState } from '@/store/view';
1615
1716
@Component({})

0 commit comments

Comments
 (0)