inl-ui 0.1.73 → 0.1.74
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/dist/components/index.cjs +8 -1
- package/dist/components/index.js +8 -1
- package/dist/index.cjs +9 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +9 -2
- package/package.json +1 -1
|
@@ -6985,6 +6985,9 @@ const PageContent = vue.defineComponent({
|
|
|
6985
6985
|
key: key ?? id,
|
|
6986
6986
|
type: "menu"
|
|
6987
6987
|
});
|
|
6988
|
+
} else {
|
|
6989
|
+
openedTab.params = queryCombine;
|
|
6990
|
+
val.params = queryCombine;
|
|
6988
6991
|
}
|
|
6989
6992
|
const [path, currSearch = ""] = url.split("?");
|
|
6990
6993
|
const searchObj = new URLSearchParams(currSearch);
|
|
@@ -7042,7 +7045,11 @@ const PageContent = vue.defineComponent({
|
|
|
7042
7045
|
} else if (tab.mode === 2) {
|
|
7043
7046
|
handleMenuChange(tab);
|
|
7044
7047
|
} else {
|
|
7045
|
-
router.
|
|
7048
|
+
const resolveRes = router.resolve(tab.url);
|
|
7049
|
+
router.push({
|
|
7050
|
+
path: resolveRes.path,
|
|
7051
|
+
query: Object.assign(resolveRes.query, tab.params)
|
|
7052
|
+
});
|
|
7046
7053
|
}
|
|
7047
7054
|
};
|
|
7048
7055
|
const activeMenu = useActiveMenu(() => props.menu, props.extraPages, false, false, extraIframeList);
|
package/dist/components/index.js
CHANGED
|
@@ -6957,6 +6957,9 @@ const PageContent = defineComponent({
|
|
|
6957
6957
|
key: key ?? id,
|
|
6958
6958
|
type: "menu"
|
|
6959
6959
|
});
|
|
6960
|
+
} else {
|
|
6961
|
+
openedTab.params = queryCombine;
|
|
6962
|
+
val.params = queryCombine;
|
|
6960
6963
|
}
|
|
6961
6964
|
const [path, currSearch = ""] = url.split("?");
|
|
6962
6965
|
const searchObj = new URLSearchParams(currSearch);
|
|
@@ -7014,7 +7017,11 @@ const PageContent = defineComponent({
|
|
|
7014
7017
|
} else if (tab.mode === 2) {
|
|
7015
7018
|
handleMenuChange(tab);
|
|
7016
7019
|
} else {
|
|
7017
|
-
router.
|
|
7020
|
+
const resolveRes = router.resolve(tab.url);
|
|
7021
|
+
router.push({
|
|
7022
|
+
path: resolveRes.path,
|
|
7023
|
+
query: Object.assign(resolveRes.query, tab.params)
|
|
7024
|
+
});
|
|
7018
7025
|
}
|
|
7019
7026
|
};
|
|
7020
7027
|
const activeMenu = useActiveMenu(() => props.menu, props.extraPages, false, false, extraIframeList);
|
package/dist/index.cjs
CHANGED
|
@@ -43,7 +43,7 @@ var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
|
43
43
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
44
44
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
45
45
|
|
|
46
|
-
var version = "0.1.
|
|
46
|
+
var version = "0.1.74";
|
|
47
47
|
|
|
48
48
|
const setTheme = theme => {
|
|
49
49
|
if (theme === "dark") {
|
|
@@ -8188,6 +8188,9 @@ const PageContent = vue.defineComponent({
|
|
|
8188
8188
|
key: key ?? id,
|
|
8189
8189
|
type: "menu"
|
|
8190
8190
|
});
|
|
8191
|
+
} else {
|
|
8192
|
+
openedTab.params = queryCombine;
|
|
8193
|
+
val.params = queryCombine;
|
|
8191
8194
|
}
|
|
8192
8195
|
const [path, currSearch = ""] = url.split("?");
|
|
8193
8196
|
const searchObj = new URLSearchParams(currSearch);
|
|
@@ -8245,7 +8248,11 @@ const PageContent = vue.defineComponent({
|
|
|
8245
8248
|
} else if (tab.mode === 2) {
|
|
8246
8249
|
handleMenuChange(tab);
|
|
8247
8250
|
} else {
|
|
8248
|
-
router.
|
|
8251
|
+
const resolveRes = router.resolve(tab.url);
|
|
8252
|
+
router.push({
|
|
8253
|
+
path: resolveRes.path,
|
|
8254
|
+
query: Object.assign(resolveRes.query, tab.params)
|
|
8255
|
+
});
|
|
8249
8256
|
}
|
|
8250
8257
|
};
|
|
8251
8258
|
const activeMenu = useActiveMenu(() => props.menu, props.extraPages, false, false, extraIframeList);
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { Key } from 'ant-design-vue/lib/table/interface';
|
|
|
11
11
|
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
12
12
|
import * as _ant_design_icons_vue_lib_components_IconFont from '@ant-design/icons-vue/lib/components/IconFont';
|
|
13
13
|
|
|
14
|
-
var version = "0.1.
|
|
14
|
+
var version = "0.1.73";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
|
13
13
|
import { marked } from 'marked';
|
|
14
14
|
import '@sszj-temp/mobile/style.css';
|
|
15
15
|
|
|
16
|
-
var version = "0.1.
|
|
16
|
+
var version = "0.1.74";
|
|
17
17
|
|
|
18
18
|
const setTheme = theme => {
|
|
19
19
|
if (theme === "dark") {
|
|
@@ -8158,6 +8158,9 @@ const PageContent = defineComponent({
|
|
|
8158
8158
|
key: key ?? id,
|
|
8159
8159
|
type: "menu"
|
|
8160
8160
|
});
|
|
8161
|
+
} else {
|
|
8162
|
+
openedTab.params = queryCombine;
|
|
8163
|
+
val.params = queryCombine;
|
|
8161
8164
|
}
|
|
8162
8165
|
const [path, currSearch = ""] = url.split("?");
|
|
8163
8166
|
const searchObj = new URLSearchParams(currSearch);
|
|
@@ -8215,7 +8218,11 @@ const PageContent = defineComponent({
|
|
|
8215
8218
|
} else if (tab.mode === 2) {
|
|
8216
8219
|
handleMenuChange(tab);
|
|
8217
8220
|
} else {
|
|
8218
|
-
router.
|
|
8221
|
+
const resolveRes = router.resolve(tab.url);
|
|
8222
|
+
router.push({
|
|
8223
|
+
path: resolveRes.path,
|
|
8224
|
+
query: Object.assign(resolveRes.query, tab.params)
|
|
8225
|
+
});
|
|
8219
8226
|
}
|
|
8220
8227
|
};
|
|
8221
8228
|
const activeMenu = useActiveMenu(() => props.menu, props.extraPages, false, false, extraIframeList);
|