yuang-framework-ui-pc 1.1.59 → 1.1.61
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/yu-uims-organization-dialog/components/organization-dialog.js +3 -10
- package/lib/yu-uims-organization-dialog/components/organization-dialog.cjs +3 -10
- package/package.json +1 -1
- package/es/yu-uims-organization-dialog/components/style.css +0 -4
- package/lib/yu-uims-organization-dialog/components/style.css +0 -4
|
@@ -212,7 +212,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
212
212
|
createVNode(_component_ele_page, {
|
|
213
213
|
"flex-table": "",
|
|
214
214
|
"multi-card": false,
|
|
215
|
-
"hide-footer": ""
|
|
215
|
+
"hide-footer": "",
|
|
216
|
+
style: { "min-height": "600px", "padding": "0px !important" }
|
|
216
217
|
}, {
|
|
217
218
|
default: withCtx(() => [
|
|
218
219
|
createVNode(_component_ele_card, {
|
|
@@ -321,14 +322,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
321
322
|
};
|
|
322
323
|
}
|
|
323
324
|
});
|
|
324
|
-
const _export_sfc = (sfc, props) => {
|
|
325
|
-
const target = sfc.__vccOpts || sfc;
|
|
326
|
-
for (const [key, val] of props) {
|
|
327
|
-
target[key] = val;
|
|
328
|
-
}
|
|
329
|
-
return target;
|
|
330
|
-
};
|
|
331
|
-
const organizationDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-62cba491"]]);
|
|
332
325
|
export {
|
|
333
|
-
|
|
326
|
+
_sfc_main as default
|
|
334
327
|
};
|
|
@@ -213,7 +213,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
213
213
|
vue.createVNode(_component_ele_page, {
|
|
214
214
|
"flex-table": "",
|
|
215
215
|
"multi-card": false,
|
|
216
|
-
"hide-footer": ""
|
|
216
|
+
"hide-footer": "",
|
|
217
|
+
style: { "min-height": "600px", "padding": "0px !important" }
|
|
217
218
|
}, {
|
|
218
219
|
default: vue.withCtx(() => [
|
|
219
220
|
vue.createVNode(_component_ele_card, {
|
|
@@ -322,12 +323,4 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
322
323
|
};
|
|
323
324
|
}
|
|
324
325
|
});
|
|
325
|
-
|
|
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-62cba491"]]);
|
|
333
|
-
module.exports = organizationDialog;
|
|
326
|
+
module.exports = _sfc_main;
|
package/package.json
CHANGED