@yoooloo42/joker 1.0.87 → 1.0.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/dist/index.cjs.js +15 -15
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +15 -15
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23306,8 +23306,6 @@ const formData = vue.inject("formData");
|
|
|
23306
23306
|
const formProps = vue.inject("formProps");
|
|
23307
23307
|
const scopeThis = vue.inject("scopeThis");
|
|
23308
23308
|
|
|
23309
|
-
console.log('测试 000', formProps);
|
|
23310
|
-
|
|
23311
23309
|
const style = vue.reactive({
|
|
23312
23310
|
collapse: styleModule.collapse,
|
|
23313
23311
|
field_box: styleModule.field_box,
|
|
@@ -23372,9 +23370,9 @@ return (_ctx, _cache) => {
|
|
|
23372
23370
|
(vue.unref(formProps).menu && vue.unref(formProps).menu.menu && vue.unref(formProps).menu.menu.length > 0)
|
|
23373
23371
|
? (vue.openBlock(), vue.createBlock(_component_ly0Menu, {
|
|
23374
23372
|
key: 0,
|
|
23375
|
-
|
|
23376
|
-
|
|
23377
|
-
}, null, 8 /* PROPS */, ["
|
|
23373
|
+
myProps: vue.unref(formProps).menu,
|
|
23374
|
+
scopeThis: vue.unref(scopeThis)
|
|
23375
|
+
}, null, 8 /* PROPS */, ["myProps", "scopeThis"]))
|
|
23378
23376
|
: vue.createCommentVNode("v-if", true),
|
|
23379
23377
|
vue.createCommentVNode(" 表单区域可以分为多个列 "),
|
|
23380
23378
|
vue.createElementVNode("div", {
|
|
@@ -23600,11 +23598,13 @@ var ly0default$1 = {
|
|
|
23600
23598
|
|
|
23601
23599
|
var script$d = {
|
|
23602
23600
|
__name: 'index',
|
|
23603
|
-
props: ["
|
|
23601
|
+
props: ["myProps", "scopeThis"],
|
|
23604
23602
|
setup(__props) {
|
|
23605
23603
|
|
|
23606
23604
|
const props = __props;
|
|
23607
|
-
const
|
|
23605
|
+
const myProps_box = vue.ref(Object.assign({}, ly0default$1.myProps, props.myProps));
|
|
23606
|
+
|
|
23607
|
+
console.log('测试 000 menu', myProps_box);
|
|
23608
23608
|
|
|
23609
23609
|
const handleRun = (
|
|
23610
23610
|
index, // 目标索引
|
|
@@ -23656,18 +23656,18 @@ return (_ctx, _cache) => {
|
|
|
23656
23656
|
const _component_el_menu = vue.resolveComponent("el-menu");
|
|
23657
23657
|
|
|
23658
23658
|
return (vue.openBlock(), vue.createBlock(_component_el_menu, {
|
|
23659
|
-
mode:
|
|
23660
|
-
"default-active":
|
|
23659
|
+
mode: myProps_box.value.mode,
|
|
23660
|
+
"default-active": myProps_box.value.defaultActive,
|
|
23661
23661
|
onOpen: handleOpen,
|
|
23662
23662
|
onClose: handleClose,
|
|
23663
23663
|
onSelect: handleSelect,
|
|
23664
|
-
"background-color":
|
|
23665
|
-
"text-color":
|
|
23666
|
-
"active-text-color":
|
|
23664
|
+
"background-color": myProps_box.value.backgroundColor,
|
|
23665
|
+
"text-color": myProps_box.value.textColor,
|
|
23666
|
+
"active-text-color": myProps_box.value.activeTextColor,
|
|
23667
23667
|
"menu-trigger": "hover",
|
|
23668
|
-
style: vue.normalizeStyle('--el-menu-horizontal-height: ' +
|
|
23669
|
-
|
|
23670
|
-
|
|
23668
|
+
style: vue.normalizeStyle('--el-menu-horizontal-height: ' + myProps_box.value.horizontalHeight + '; ' +
|
|
23669
|
+
myProps_box.value.styleBase + ' ' +
|
|
23670
|
+
myProps_box.value.style)
|
|
23671
23671
|
}, {
|
|
23672
23672
|
default: vue.withCtx(() => [
|
|
23673
23673
|
vue.createCommentVNode(" 第1层 "),
|