feima-shortcuts 1.0.6 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feima-shortcuts",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "快捷指令",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -142,7 +142,7 @@ export const request = <T>(
142
142
  options: ApiRequestOptions
143
143
  ): CancelablePromise<T> => {
144
144
  return new CancelablePromise((resolve, reject, onCancel) => {
145
- const url = \`\${config.BASE}\${options.path}\`;
145
+ const url = \`\${config.BASE}\${options.url}\`;
146
146
 
147
147
  const source = axios.CancelToken.source();
148
148