qlfy-postmate 1.2.0 → 1.2.2
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ new ChildPostmate({
|
|
|
73
73
|
// 数据更新 -- 是否隐藏页头
|
|
74
74
|
$store.setIsHideHeader(dataInfo.data.isHideHeader);
|
|
75
75
|
// 数据更新 -- token
|
|
76
|
-
$store.
|
|
76
|
+
$store.setToken(dataInfo.data.token);
|
|
77
77
|
// 数据更新 -- 登陆信息
|
|
78
78
|
$store.setLoginInfo(dataInfo.data.loginInfo);
|
|
79
79
|
// 项目挂载,仅首次加载项目时执行,后续receive触发不执行
|
|
@@ -128,7 +128,7 @@ new ChildPostmate({
|
|
|
128
128
|
按下面链接格式在浏览器中访问,该链接支持前端的本地调试
|
|
129
129
|
|
|
130
130
|
```js
|
|
131
|
-
http://10.76.91.80:28084
|
|
131
|
+
http://10.76.91.80:28084/#/test?url=本地前端服务地址
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
url后配置本地所启用的前端服务
|
|
@@ -136,6 +136,6 @@ url后配置本地所启用的前端服务
|
|
|
136
136
|
例:
|
|
137
137
|
|
|
138
138
|
```js
|
|
139
|
-
http://10.76.91.80:28084
|
|
139
|
+
http://10.76.91.80:28084/#/test?url=http://192.168.3.136:8080/
|
|
140
140
|
```
|
|
141
141
|
|