@yoooloo42/joker 1.0.86 → 1.0.88
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 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +15 -12
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23306,6 +23306,8 @@ 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
|
+
|
|
23309
23311
|
const style = vue.reactive({
|
|
23310
23312
|
collapse: styleModule.collapse,
|
|
23311
23313
|
field_box: styleModule.field_box,
|
|
@@ -23370,9 +23372,9 @@ return (_ctx, _cache) => {
|
|
|
23370
23372
|
(vue.unref(formProps).menu && vue.unref(formProps).menu.menu && vue.unref(formProps).menu.menu.length > 0)
|
|
23371
23373
|
? (vue.openBlock(), vue.createBlock(_component_ly0Menu, {
|
|
23372
23374
|
key: 0,
|
|
23373
|
-
|
|
23374
|
-
|
|
23375
|
-
}, null, 8 /* PROPS */, ["
|
|
23375
|
+
myProps: vue.unref(formProps).menu,
|
|
23376
|
+
scopeThis: vue.unref(scopeThis)
|
|
23377
|
+
}, null, 8 /* PROPS */, ["myProps", "scopeThis"]))
|
|
23376
23378
|
: vue.createCommentVNode("v-if", true),
|
|
23377
23379
|
vue.createCommentVNode(" 表单区域可以分为多个列 "),
|
|
23378
23380
|
vue.createElementVNode("div", {
|
|
@@ -23602,7 +23604,7 @@ var script$d = {
|
|
|
23602
23604
|
setup(__props) {
|
|
23603
23605
|
|
|
23604
23606
|
const props = __props;
|
|
23605
|
-
const
|
|
23607
|
+
const myProps_box = vue.ref(Object.assign({}, ly0default$1.myProps, props.myProps));
|
|
23606
23608
|
|
|
23607
23609
|
const handleRun = (
|
|
23608
23610
|
index, // 目标索引
|
|
@@ -23654,18 +23656,18 @@ return (_ctx, _cache) => {
|
|
|
23654
23656
|
const _component_el_menu = vue.resolveComponent("el-menu");
|
|
23655
23657
|
|
|
23656
23658
|
return (vue.openBlock(), vue.createBlock(_component_el_menu, {
|
|
23657
|
-
mode:
|
|
23658
|
-
"default-active":
|
|
23659
|
+
mode: myProps_box.value.mode,
|
|
23660
|
+
"default-active": myProps_box.value.defaultActive,
|
|
23659
23661
|
onOpen: handleOpen,
|
|
23660
23662
|
onClose: handleClose,
|
|
23661
23663
|
onSelect: handleSelect,
|
|
23662
|
-
"background-color":
|
|
23663
|
-
"text-color":
|
|
23664
|
-
"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,
|
|
23665
23667
|
"menu-trigger": "hover",
|
|
23666
|
-
style: vue.normalizeStyle('--el-menu-horizontal-height: ' +
|
|
23667
|
-
|
|
23668
|
-
|
|
23668
|
+
style: vue.normalizeStyle('--el-menu-horizontal-height: ' + myProps_box.value.horizontalHeight + '; ' +
|
|
23669
|
+
myProps_box.value.styleBase + ' ' +
|
|
23670
|
+
myProps_box.value.style)
|
|
23669
23671
|
}, {
|
|
23670
23672
|
default: vue.withCtx(() => [
|
|
23671
23673
|
vue.createCommentVNode(" 第1层 "),
|
|
@@ -40918,6 +40920,7 @@ const props = __props;
|
|
|
40918
40920
|
const emit = __emit;
|
|
40919
40921
|
|
|
40920
40922
|
const myProps_box = vue.reactive(Object.assign({}, ly0default, props.myProps));
|
|
40923
|
+
// 在这里,const ... reactive不能用于双向绑定:v-model:file-list="fileList_box"
|
|
40921
40924
|
const fileList_box = vue.ref([]);
|
|
40922
40925
|
props.modelValue.forEach((item, index) => {
|
|
40923
40926
|
fileList_box.value.push({
|