@indfnd/common 0.1.87 → 0.1.89
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/CHANGELOG.md +4 -0
- package/dist/ind-common.es.js +13 -3
- package/dist/ind-common.umd.cjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.89](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.87...v0.1.89) (2024-06-11)
|
|
6
|
+
|
|
7
|
+
### [0.1.88](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.87...v0.1.88) (2024-06-11)
|
|
8
|
+
|
|
5
9
|
### [0.1.87](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.88...v0.1.87) (2024-06-11)
|
|
6
10
|
|
|
7
11
|
### [0.1.88](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.86...v0.1.88) (2024-06-11)
|
package/dist/ind-common.es.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Button as Button$1, ButtonGroup as ButtonGroup$1, Input, Drawer as Draw
|
|
|
2
2
|
import { isNil, formatDate as formatDate$1, useConfig, getQuarterNum, formatQuarter, str2Date, isDate, isArray, checkIdCard, checkVehicleNo, checkPhone, getDictMapApi, axios, isFunction, isString, uuid, exportJsonToExcel as exportJsonToExcel$1, importJsonFromExcel, on, off, deleteMenuHistoryApi, deleteMenuCollectApi, getMenuHistoryApi, getMenuCollectApi, getPermissionCache, listItemTreeApi, getPriceInfo, MIME_TYPE, base64ToBlob, putOssFileApi, isEqual, getCaptchaURL, getLocalStorage, guid, setLocalStorage, removeLocalStorage, clearSessionStorage, cryptor, getToken, putOssFileUrl, getOssFileUrl, responseInterceptors, config as config$1, setToken, loginApi, clearUserInfoCache, clearPermissionCache, logoutApi, getUserInfoCache, getUserInfoApi, setUserInfoCache, getSessionStorage, setSessionStorage, getAppListApi, getPermissionApi, setPermissionCache, menuHistoryApi, addMenuCollectApi, removeMenuCollectApi, getIndexDescCache, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
|
|
3
3
|
import Vue$1 from "vue";
|
|
4
4
|
const name$1 = "@indfnd/common";
|
|
5
|
-
const version = "0.1.
|
|
5
|
+
const version = "0.1.88";
|
|
6
6
|
const author = "huxuetong";
|
|
7
7
|
const publishConfig = {
|
|
8
8
|
registry: "https://registry.npmjs.org/"
|
|
@@ -54219,6 +54219,7 @@ const __vue2_script$V = {
|
|
|
54219
54219
|
selectFirstLeaf: Boolean,
|
|
54220
54220
|
hideFirstLevel: Boolean,
|
|
54221
54221
|
foldFirstLevel: Boolean,
|
|
54222
|
+
expandProvincial: Boolean,
|
|
54222
54223
|
expandAll: Boolean,
|
|
54223
54224
|
defaultExpandLevel: Number,
|
|
54224
54225
|
showCheckbox: Boolean,
|
|
@@ -54349,7 +54350,11 @@ const __vue2_script$V = {
|
|
|
54349
54350
|
node.status = "";
|
|
54350
54351
|
node.statusName = "";
|
|
54351
54352
|
node.statusColor = "";
|
|
54352
|
-
|
|
54353
|
+
if (this.expandProvincial) {
|
|
54354
|
+
node.expand = node.comIsImported == "0" || node.id == "ALL";
|
|
54355
|
+
} else {
|
|
54356
|
+
node.expand = node.id == "ALL";
|
|
54357
|
+
}
|
|
54353
54358
|
if (!node.expand) {
|
|
54354
54359
|
node.expand = false;
|
|
54355
54360
|
}
|
|
@@ -62209,6 +62214,7 @@ const __vue2_script$a = {
|
|
|
62209
62214
|
singleSel: Boolean,
|
|
62210
62215
|
expandNode: Boolean,
|
|
62211
62216
|
defaultExpandLevel: Number,
|
|
62217
|
+
expandProvincial: Boolean,
|
|
62212
62218
|
expandAll: Boolean,
|
|
62213
62219
|
selectFirstLeaf: Boolean,
|
|
62214
62220
|
hideFirstLevel: Boolean,
|
|
@@ -62324,7 +62330,11 @@ const __vue2_script$a = {
|
|
|
62324
62330
|
node.status = "";
|
|
62325
62331
|
node.statusName = "";
|
|
62326
62332
|
node.statusColor = "";
|
|
62327
|
-
|
|
62333
|
+
if (this.expandProvincial) {
|
|
62334
|
+
node.expand = node.comIsImported == "0" || node.id == "ALL";
|
|
62335
|
+
} else {
|
|
62336
|
+
node.expand = node.id == "ALL";
|
|
62337
|
+
}
|
|
62328
62338
|
if (!node.expand) {
|
|
62329
62339
|
node.expand = false;
|
|
62330
62340
|
}
|