gy-webcode2 1.0.15 → 1.0.17

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/css/layout.scss CHANGED
@@ -139,15 +139,16 @@
139
139
  display: flex;
140
140
  align-items: center;
141
141
  color:#acb5ce;
142
- .breadcrumb_iconBox{
143
- width:30px;
144
- text-align: center;
145
- font-size: 16px;
146
- font-weight: bold;
147
- }
142
+
148
143
  }
149
144
  }
150
145
  }
146
+ .breadcrumb_iconBox{
147
+ width:30px;
148
+ text-align: center;
149
+ font-size: 16px;
150
+ font-weight: bold;
151
+ }
151
152
  .myHover{
152
153
  cursor: pointer;
153
154
  &:hover{
package/extend/axios.js CHANGED
@@ -53,10 +53,10 @@ http.interceptors.request.use(
53
53
 
54
54
  let params =''
55
55
  if(config.method==='post'){
56
- params =config.data;
56
+ params ={...config.data};
57
57
  }
58
58
  else if(config.method==='get'){
59
- params = config.params
59
+ params = {...config.params}
60
60
  }
61
61
  // 签名串
62
62
  let signstr = crypto.sign(token, ts , params , key , nonce).toUpperCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gy-webcode2",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "description": "gy前端公共代码",
5
5
  "main": "index.js",
6
6
  "scripts": {