super-page-runtime 0.0.2-tmp2 → 0.0.2-tmp4
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/es/assets/images/button/button.png.js +4 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +4 -4
- package/dist/es/components/runtime/views/wf-editor.css +1 -1
- package/dist/es/components/runtime/views/wf-editor.vue.js +2 -11
- package/dist/es/components/runtime/views/wf-editor.vue2.js +19 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const button = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAARtJREFUOE/F0rFKA0EQBuD/382BChJOGxshj6BwnaVFikMsPQsRa3OpLRQJKNgJuUBK2zuxtcgbKAi+hGKauFpFctyOGEmhXIolgttNMd/8ywwx4+OM/fgbIGq/h6ANnNKIekib1dtxgp22yUmcOQGQozRemh8DUWIkjX2n70x6fgBRYk7FYpWKRkSeQYYQOyDkBtSbxXDU0gveYdrwT8qBjrlCIfeiGGaxvxV91TlaqKAGsCvWtqhZTxv+wVRACulRY/8j5+6ch8sJIGAdQEDK03QgeeuK2EVFpV8Gj3sry+vJSIpzbVnTFbVBSN8Kgiz249IELlv4BbwOAV64ACI4zpq+930HHbNNwZoLYKHuruNqz2n3ZQP+H/gE7ReVEX+fTlwAAAAASUVORK5CYII=";
|
|
2
|
+
export {
|
|
3
|
+
button as default
|
|
4
|
+
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createCommentVNode } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
3
|
import _sfc_main$1 from "./super-page.vue.js";
|
|
4
|
-
const showContent = true;
|
|
5
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
5
|
__name: "super-page-dialog",
|
|
7
6
|
props: {
|
|
@@ -14,6 +13,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
14
13
|
setup(__props, { emit: __emit }) {
|
|
15
14
|
const props = __props;
|
|
16
15
|
const emits = __emit;
|
|
16
|
+
const showContent = ref(true);
|
|
17
17
|
const myJumpPageSetting = props.jumpPageSetting ? props.jumpPageSetting : null;
|
|
18
18
|
const width = ref(null);
|
|
19
19
|
const title = ref(null);
|
|
@@ -47,8 +47,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
47
47
|
return (_ctx, _cache) => {
|
|
48
48
|
const _component_el_drawer = resolveComponent("el-drawer");
|
|
49
49
|
return openBlock(), createBlock(_component_el_drawer, {
|
|
50
|
-
modelValue: showContent,
|
|
51
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showContent = $event),
|
|
50
|
+
modelValue: showContent.value,
|
|
51
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showContent.value = $event),
|
|
52
52
|
"with-header": !title.value,
|
|
53
53
|
title: title.value,
|
|
54
54
|
direction: "btt",
|
|
@@ -66,7 +66,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
66
66
|
}, null, 8, ["pageCode", "pageRequest"])) : createCommentVNode("", true)
|
|
67
67
|
]),
|
|
68
68
|
_: 1
|
|
69
|
-
}, 8, ["with-header", "title", "size"]);
|
|
69
|
+
}, 8, ["modelValue", "with-header", "title", "size"]);
|
|
70
70
|
};
|
|
71
71
|
}
|
|
72
72
|
});
|
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _sfc_main from "./wf-editor.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
5
|
-
const _withScopeId = (n) => (pushScopeId("data-v-8aeee9e1"), n = n(), popScopeId(), n);
|
|
6
|
-
const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("button", null, "Editoraaaaa", -1));
|
|
7
|
-
const _hoisted_2 = [
|
|
8
|
-
_hoisted_1
|
|
9
|
-
];
|
|
10
|
-
function _sfc_render(_ctx, _cache) {
|
|
11
|
-
return openBlock(), createElementBlock("div", null, _hoisted_2);
|
|
12
|
-
}
|
|
13
|
-
const wfEditor = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-8aeee9e1"]]);
|
|
4
|
+
const wfEditor = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3c0fcbc5"]]);
|
|
14
5
|
export {
|
|
15
6
|
wfEditor as default
|
|
16
7
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { defineComponent, openBlock, createElementBlock, createElementVNode, unref, pushScopeId, popScopeId } from "vue";
|
|
2
|
+
import button from "../../../assets/images/button/button.png.js";
|
|
3
|
+
const _withScopeId = (n) => (pushScopeId("data-v-3c0fcbc5"), n = n(), popScopeId(), n);
|
|
4
|
+
const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("button", null, "Editoraaaaa", -1));
|
|
5
|
+
const _hoisted_2 = ["src"];
|
|
6
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
|
+
__name: "wf-editor",
|
|
8
|
+
setup(__props) {
|
|
9
|
+
return (_ctx, _cache) => {
|
|
10
|
+
return openBlock(), createElementBlock("div", null, [
|
|
11
|
+
_hoisted_1,
|
|
12
|
+
createElementVNode("img", { src: unref(button) }, null, 8, _hoisted_2)
|
|
13
|
+
]);
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
export {
|
|
18
|
+
_sfc_main as default
|
|
19
|
+
};
|