@fmdevui/fm-dev 1.0.111 → 1.0.113
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/es/core/api/base/index.d.ts +1 -0
- package/es/packages/core/api/base/index.mjs +11 -0
- package/index.js +12 -1
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +12 -1
- package/lib/core/api/base/index.d.ts +1 -0
- package/lib/packages/core/api/base/index.js +11 -0
- package/package.json +1 -1
- /package/es/{index.css → make-installer.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.113 */
|
|
2
2
|
import { defineComponent, reactive, computed, watch, resolveComponent, createBlock, openBlock, withCtx, createVNode, createElementVNode, createTextVNode, toDisplayString as toDisplayString$1, withDirectives, createElementBlock, Fragment, renderList, vShow, ref, onMounted, nextTick, normalizeStyle, createCommentVNode, normalizeClass, withModifiers, mergeModels, useModel, effectScope, getCurrentInstance, shallowRef, isRef as isRef$1, inject, onUnmounted, h, Text, createSlots, renderSlot, markRaw, hasInjectionContext, toRaw as toRaw$1, isReactive as isReactive$1, toRef, unref, getCurrentScope, onScopeDispose, toRefs, resolveDirective, mergeProps, resolveDynamicComponent, useSlots, toHandlers, onBeforeUnmount, onUpdated, useAttrs, normalizeProps, guardReactiveProps } from 'vue';
|
|
3
3
|
import crypto from 'crypto';
|
|
4
4
|
import require$$0 from 'url';
|
|
@@ -23688,6 +23688,17 @@ const useBaseApi = (module, options = {}) => {
|
|
|
23688
23688
|
cancel
|
|
23689
23689
|
);
|
|
23690
23690
|
},
|
|
23691
|
+
download: function(data, action, cancel = false) {
|
|
23692
|
+
return request(
|
|
23693
|
+
{
|
|
23694
|
+
responseType: "arraybuffer",
|
|
23695
|
+
url: baseUrl + action,
|
|
23696
|
+
method: "post",
|
|
23697
|
+
data
|
|
23698
|
+
},
|
|
23699
|
+
cancel
|
|
23700
|
+
);
|
|
23701
|
+
},
|
|
23691
23702
|
get: function(params, action, cancel = false) {
|
|
23692
23703
|
return request(
|
|
23693
23704
|
{
|
|
@@ -6,6 +6,7 @@ export declare const useBaseApi: (module: string, options?: CustomAxiosRequestCo
|
|
|
6
6
|
pcomm: (data: any, action: string, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
7
7
|
post: (data: any, action: string, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
8
8
|
gcomm: (params: any, action: string, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
9
|
+
download: (data: any, action: string, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
9
10
|
get: (params: any, action: string, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
10
11
|
page: (data: any, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
11
12
|
detail: (id: any, cancel?: boolean) => Promise<AxiosResponse<any, any>>;
|
|
@@ -45,6 +45,17 @@ const useBaseApi = (module, options = {}) => {
|
|
|
45
45
|
cancel
|
|
46
46
|
);
|
|
47
47
|
},
|
|
48
|
+
download: function(data, action, cancel = false) {
|
|
49
|
+
return request$1(
|
|
50
|
+
{
|
|
51
|
+
responseType: "arraybuffer",
|
|
52
|
+
url: baseUrl + action,
|
|
53
|
+
method: "post",
|
|
54
|
+
data
|
|
55
|
+
},
|
|
56
|
+
cancel
|
|
57
|
+
);
|
|
58
|
+
},
|
|
48
59
|
get: function(params, action, cancel = false) {
|
|
49
60
|
return request$1(
|
|
50
61
|
{
|
package/package.json
CHANGED
|
File without changes
|