yuang-framework-ui-pc 1.1.60 → 1.1.62
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/utils/menu-util.js +1 -1
- package/es/yu-uims-organization-dialog/components/organization-dialog.js +2 -10
- package/lib/utils/menu-util.cjs +1 -1
- package/lib/yu-uims-organization-dialog/components/organization-dialog.cjs +2 -10
- package/package.json +1 -1
- package/es/yu-uims-organization-dialog/components/style.css +0 -6
- package/lib/yu-uims-organization-dialog/components/style.css +0 -6
package/es/utils/menu-util.js
CHANGED
|
@@ -13,7 +13,7 @@ function getRoutePath(path) {
|
|
|
13
13
|
if (!path || !path.includes("?")) {
|
|
14
14
|
return path;
|
|
15
15
|
}
|
|
16
|
-
return path
|
|
16
|
+
return path;
|
|
17
17
|
}
|
|
18
18
|
function getRouteComponent(menu, name, func) {
|
|
19
19
|
if (!menu.component || !isExternalLink(menu.component)) {
|
|
@@ -213,7 +213,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
213
213
|
"flex-table": "",
|
|
214
214
|
"multi-card": false,
|
|
215
215
|
"hide-footer": "",
|
|
216
|
-
|
|
216
|
+
style: { "min-height": "600px", "padding": "0px !important" }
|
|
217
217
|
}, {
|
|
218
218
|
default: withCtx(() => [
|
|
219
219
|
createVNode(_component_ele_card, {
|
|
@@ -322,14 +322,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
322
322
|
};
|
|
323
323
|
}
|
|
324
324
|
});
|
|
325
|
-
const _export_sfc = (sfc, props) => {
|
|
326
|
-
const target = sfc.__vccOpts || sfc;
|
|
327
|
-
for (const [key, val] of props) {
|
|
328
|
-
target[key] = val;
|
|
329
|
-
}
|
|
330
|
-
return target;
|
|
331
|
-
};
|
|
332
|
-
const organizationDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4b3af0eb"]]);
|
|
333
325
|
export {
|
|
334
|
-
|
|
326
|
+
_sfc_main as default
|
|
335
327
|
};
|
package/lib/utils/menu-util.cjs
CHANGED
|
@@ -15,7 +15,7 @@ function getRoutePath(path) {
|
|
|
15
15
|
if (!path || !path.includes("?")) {
|
|
16
16
|
return path;
|
|
17
17
|
}
|
|
18
|
-
return path
|
|
18
|
+
return path;
|
|
19
19
|
}
|
|
20
20
|
function getRouteComponent(menu, name, func) {
|
|
21
21
|
if (!menu.component || !core.isExternalLink(menu.component)) {
|
|
@@ -214,7 +214,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
214
214
|
"flex-table": "",
|
|
215
215
|
"multi-card": false,
|
|
216
216
|
"hide-footer": "",
|
|
217
|
-
|
|
217
|
+
style: { "min-height": "600px", "padding": "0px !important" }
|
|
218
218
|
}, {
|
|
219
219
|
default: vue.withCtx(() => [
|
|
220
220
|
vue.createVNode(_component_ele_card, {
|
|
@@ -323,12 +323,4 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
323
323
|
};
|
|
324
324
|
}
|
|
325
325
|
});
|
|
326
|
-
|
|
327
|
-
const target = sfc.__vccOpts || sfc;
|
|
328
|
-
for (const [key, val] of props) {
|
|
329
|
-
target[key] = val;
|
|
330
|
-
}
|
|
331
|
-
return target;
|
|
332
|
-
};
|
|
333
|
-
const organizationDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4b3af0eb"]]);
|
|
334
|
-
module.exports = organizationDialog;
|
|
326
|
+
module.exports = _sfc_main;
|
package/package.json
CHANGED