@fmdevui/fm-dev 1.0.37 → 1.0.39

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.
@@ -15,3 +15,8 @@ export declare enum AccountTypeEnum {
15
15
  NUMBER_987 = 987,
16
16
  NUMBER_999 = 999
17
17
  }
18
+ export declare enum JobCreateTypeEnum {
19
+ NUMBER_0 = 0,
20
+ NUMBER_1 = 1,
21
+ NUMBER_2 = 2
22
+ }
package/es/index.mjs CHANGED
@@ -13,7 +13,7 @@ export { useBaseApi } from './packages/core/api/base/index.mjs';
13
13
  export { feature, useSysApi } from './packages/core/api/sys/index.mjs';
14
14
  export { useLoginApi } from './packages/core/api/login/index.mjs';
15
15
  export { accessTokenKey, axiosInstance, cancelAllRequest, cancelRequest, clearAccessTokens, clearTokens, decryptJWT, getJWTDate, getToken, refreshAccessTokenKey, request2, service, tansParams } from './packages/core/api/utils/request.mjs';
16
- export { AccountTypeEnum } from './packages/core/api/index.mjs';
16
+ export { AccountTypeEnum, JobCreateTypeEnum } from './packages/core/api/index.mjs';
17
17
  export { directive } from './packages/core/directive/index.mjs';
18
18
  export { getCountryCode, i18n, iso_3166_1_CountryList, languageList, mergMessage, setupI18n } from './packages/core/locales/index.mjs';
19
19
  export { pinia } from './packages/core/stores/inpinia.mjs';
@@ -13,5 +13,11 @@ var AccountTypeEnum = /* @__PURE__ */ ((AccountTypeEnum2) => {
13
13
  AccountTypeEnum2[AccountTypeEnum2["NUMBER_999"] = 999] = "NUMBER_999";
14
14
  return AccountTypeEnum2;
15
15
  })(AccountTypeEnum || {});
16
+ var JobCreateTypeEnum = /* @__PURE__ */ ((JobCreateTypeEnum2) => {
17
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_0"] = 0] = "NUMBER_0";
18
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_1"] = 1] = "NUMBER_1";
19
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_2"] = 2] = "NUMBER_2";
20
+ return JobCreateTypeEnum2;
21
+ })(JobCreateTypeEnum || {});
16
22
 
17
- export { AccountTypeEnum };
23
+ export { AccountTypeEnum, JobCreateTypeEnum };
@@ -1,7 +1,7 @@
1
1
  export { FmDragImg, FmNoticeBar, FmTransfer } from './ui/components/index.mjs';
2
2
  export { FmLogin } from './ui/login/index.mjs';
3
3
  export { NextLoading } from './ui/loading/index.mjs';
4
- export { AccountTypeEnum } from './api/index.mjs';
4
+ export { AccountTypeEnum, JobCreateTypeEnum } from './api/index.mjs';
5
5
  export { directive } from './directive/index.mjs';
6
6
  export { getCountryCode, i18n, iso_3166_1_CountryList, languageList, mergMessage, setupI18n } from './locales/index.mjs';
7
7
  import './stores/index.mjs';
@@ -148,6 +148,7 @@ const useUserInfo = defineStore("userInfo", {
148
148
  }
149
149
  });
150
150
  const setDictLangMessageAsync = async (dict) => {
151
+ return;
151
152
  dict.langMessage = `message.dictType.${dict.typeCode}_${dict.value}`;
152
153
  const text = i18n.global.t(dict.langMessage);
153
154
  dict.label = text !== dict.langMessage && !text.endsWith(`${dict.typeCode}_${dict.value}`) ? text : dict.label;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! fm-dev v1.0.37 */
1
+ /*! fm-dev v1.0.39 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('crypto'), require('url'), require('http'), require('https'), require('util'), require('stream'), require('assert'), require('zlib'), require('element-plus')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', 'vue', 'crypto', 'url', 'http', 'https', 'util', 'stream', 'assert', 'zlib', 'element-plus'], factory) :
@@ -30103,6 +30103,12 @@
30103
30103
  AccountTypeEnum2[AccountTypeEnum2["NUMBER_999"] = 999] = "NUMBER_999";
30104
30104
  return AccountTypeEnum2;
30105
30105
  })(AccountTypeEnum || {});
30106
+ var JobCreateTypeEnum = /* @__PURE__ */ ((JobCreateTypeEnum2) => {
30107
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_0"] = 0] = "NUMBER_0";
30108
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_1"] = 1] = "NUMBER_1";
30109
+ JobCreateTypeEnum2[JobCreateTypeEnum2["NUMBER_2"] = 2] = "NUMBER_2";
30110
+ return JobCreateTypeEnum2;
30111
+ })(JobCreateTypeEnum || {});
30106
30112
 
30107
30113
  var __create$1 = Object.create;
30108
30114
  var __defProp$1 = Object.defineProperty;
@@ -49929,9 +49935,7 @@
49929
49935
  }
49930
49936
  });
49931
49937
  const setDictLangMessageAsync = async (dict) => {
49932
- dict.langMessage = `message.dictType.${dict.typeCode}_${dict.value}`;
49933
- const text = i18n.global.t(dict.langMessage);
49934
- dict.label = text !== dict.langMessage && !text.endsWith(`${dict.typeCode}_${dict.value}`) ? text : dict.label;
49938
+ return;
49935
49939
  };
49936
49940
 
49937
49941
  function authDirective(app) {
@@ -52262,6 +52266,7 @@
52262
52266
  exports.FmLogin = FmLogin;
52263
52267
  exports.FmNoticeBar = FmNoticeBar;
52264
52268
  exports.FmTransfer = FmTransfer;
52269
+ exports.JobCreateTypeEnum = JobCreateTypeEnum;
52265
52270
  exports.Local = Local;
52266
52271
  exports.NextLoading = NextLoading;
52267
52272
  exports.PUB = PUB;