@fecp/designer 5.5.115 → 5.5.117
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/designer/index.mjs +8 -1
- package/es/designer/package.json.mjs +1 -1
- package/es/designer/src/packages/dataSource/index.vue.mjs +3 -1
- package/es/designer/src/packages/dialog/index.vue2.mjs +15 -15
- package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue2.mjs +17 -16
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer.css +135 -127
- package/es/packages/mobile/src/components/custom/appDetail/AppDetail.vue.mjs +60 -14
- package/es/packages/mobile/src/components/custom/document/Document.vue.mjs +2 -6
- package/es/packages/mobile/src/components/dataDisplay/collapse/Collapse.vue.mjs +2 -6
- package/es/packages/mobile/src/components/dataDisplay/dataStat/DataStat.vue.mjs +50 -56
- package/es/packages/mobile/src/components/form/search/Search.vue.mjs +7 -8
- package/es/packages/mobile/src/components/navigation/tabs/Tabs.vue.mjs +2 -6
- package/lib/designer/index.js +8 -1
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dataSource/index.vue.js +3 -1
- package/lib/designer/src/packages/dialog/index.vue2.js +15 -15
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue2.js +17 -16
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer.css +135 -127
- package/lib/packages/mobile/src/components/custom/appDetail/AppDetail.vue.js +59 -13
- package/lib/packages/mobile/src/components/custom/document/Document.vue.js +2 -6
- package/lib/packages/mobile/src/components/dataDisplay/collapse/Collapse.vue.js +2 -6
- package/lib/packages/mobile/src/components/dataDisplay/dataStat/DataStat.vue.js +49 -55
- package/lib/packages/mobile/src/components/form/search/Search.vue.js +7 -8
- package/lib/packages/mobile/src/components/navigation/tabs/Tabs.vue.js +2 -6
- package/package.json +1 -1
|
@@ -1,6 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
import { getCurrentInstance, ref, computed, resolveComponent, createElementBlock, unref, openBlock, createVNode, Fragment, createBlock, createCommentVNode, isRef, mergeProps } from "vue";
|
|
2
4
|
/* empty css */
|
|
3
5
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
6
|
+
import { Empty } from "../../../../../../node_modules/vant/es/empty/index.mjs";
|
|
7
|
+
const _hoisted_1 = {
|
|
8
|
+
key: 0,
|
|
9
|
+
class: "route-wrapper"
|
|
10
|
+
};
|
|
11
|
+
const _hoisted_2 = {
|
|
12
|
+
key: 1,
|
|
13
|
+
class: "route-wrapper"
|
|
14
|
+
};
|
|
4
15
|
const _sfc_main = {
|
|
5
16
|
__name: "AppDetail",
|
|
6
17
|
props: {
|
|
@@ -46,7 +57,6 @@ const _sfc_main = {
|
|
|
46
57
|
const taskData = { ...props.params.taskData };
|
|
47
58
|
const taskParams = { ...props.params };
|
|
48
59
|
delete taskParams.taskData;
|
|
49
|
-
debugger;
|
|
50
60
|
const canMobileApproval = ref(true);
|
|
51
61
|
const baseInfoPageId = ref("");
|
|
52
62
|
if (props.baseInfoPageSource == "fixed") {
|
|
@@ -54,14 +64,9 @@ const _sfc_main = {
|
|
|
54
64
|
}
|
|
55
65
|
const expandingTabOptions = ref([]);
|
|
56
66
|
const show = ref(false);
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
taskId: (_a = props.params) == null ? void 0 : _a.taskId,
|
|
61
|
-
type: (_b = props.params) == null ? void 0 : _b.type
|
|
62
|
-
},
|
|
63
|
-
true
|
|
64
|
-
).then((data) => {
|
|
67
|
+
const showEmpty = ref(false);
|
|
68
|
+
const taskNotFound = ref(false);
|
|
69
|
+
function handleData(data) {
|
|
65
70
|
if (props.baseInfoPageSource == "dynamic") {
|
|
66
71
|
baseInfoPageId.value = data.mobileDetailPage;
|
|
67
72
|
}
|
|
@@ -79,7 +84,37 @@ const _sfc_main = {
|
|
|
79
84
|
}
|
|
80
85
|
);
|
|
81
86
|
show.value = true;
|
|
82
|
-
}
|
|
87
|
+
}
|
|
88
|
+
const taskId = (_a = props.params) == null ? void 0 : _a.taskId;
|
|
89
|
+
const type = (_b = props.params) == null ? void 0 : _b.type;
|
|
90
|
+
if (!taskId) {
|
|
91
|
+
showEmpty.value = true;
|
|
92
|
+
} else {
|
|
93
|
+
ctx.$http.postForm(
|
|
94
|
+
"/base-server/flow/flowApproveDetail/findById",
|
|
95
|
+
{
|
|
96
|
+
taskId,
|
|
97
|
+
type
|
|
98
|
+
},
|
|
99
|
+
true
|
|
100
|
+
).then((data) => {
|
|
101
|
+
if (data.notFound) {
|
|
102
|
+
ctx.$http.postForm(
|
|
103
|
+
"/base-server/flow/flowApproveDetail/findById",
|
|
104
|
+
{ taskId, type: "1" },
|
|
105
|
+
true
|
|
106
|
+
).then((retryData) => {
|
|
107
|
+
if (retryData.notFound) {
|
|
108
|
+
taskNotFound.value = true;
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
handleData(retryData);
|
|
112
|
+
});
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
handleData(data);
|
|
116
|
+
});
|
|
117
|
+
}
|
|
83
118
|
const activeName = ref("tab_base_info");
|
|
84
119
|
const tabsOptions = computed(() => {
|
|
85
120
|
const tabs = [
|
|
@@ -97,9 +132,20 @@ const _sfc_main = {
|
|
|
97
132
|
});
|
|
98
133
|
return (_ctx, _cache) => {
|
|
99
134
|
var _a2;
|
|
135
|
+
const _component_van_empty = Empty;
|
|
100
136
|
const _component_FecMobileTabs = resolveComponent("FecMobileTabs");
|
|
101
137
|
const _component_FecMobileApprovalBar = resolveComponent("FecMobileApprovalBar");
|
|
102
|
-
return openBlock(), createElementBlock(
|
|
138
|
+
return unref(showEmpty) ? (openBlock(), createElementBlock("div", _hoisted_1, [
|
|
139
|
+
createVNode(_component_van_empty, {
|
|
140
|
+
image: "error",
|
|
141
|
+
description: "任务ID为空"
|
|
142
|
+
})
|
|
143
|
+
])) : unref(taskNotFound) ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
144
|
+
createVNode(_component_van_empty, {
|
|
145
|
+
image: "error",
|
|
146
|
+
description: "任务不存在"
|
|
147
|
+
})
|
|
148
|
+
])) : (openBlock(), createElementBlock(Fragment, { key: 2 }, [
|
|
103
149
|
createVNode(_component_FecMobileTabs, {
|
|
104
150
|
modelValue: unref(activeName),
|
|
105
151
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(activeName) ? activeName.value = $event : null),
|
|
@@ -116,11 +162,11 @@ const _sfc_main = {
|
|
|
116
162
|
operationPageId: __props.operationPageId,
|
|
117
163
|
canMobileApproval: unref(canMobileApproval)
|
|
118
164
|
}), null, 16, ["opinionTypeOptions", "operationPageId", "canMobileApproval"])) : createCommentVNode("", true)
|
|
119
|
-
], 64);
|
|
165
|
+
], 64));
|
|
120
166
|
};
|
|
121
167
|
}
|
|
122
168
|
};
|
|
123
|
-
const _AppDetail = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
169
|
+
const _AppDetail = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ade90293"]]);
|
|
124
170
|
export {
|
|
125
171
|
_AppDetail as default
|
|
126
172
|
};
|
|
@@ -156,11 +156,7 @@ const _sfc_main = {
|
|
|
156
156
|
});
|
|
157
157
|
}
|
|
158
158
|
const compHeight = computed(() => {
|
|
159
|
-
|
|
160
|
-
return "100%";
|
|
161
|
-
} else {
|
|
162
|
-
return props.height + "px";
|
|
163
|
-
}
|
|
159
|
+
return "100%";
|
|
164
160
|
});
|
|
165
161
|
function onDocClick(doc) {
|
|
166
162
|
console.log("点击工具:", doc);
|
|
@@ -365,7 +361,7 @@ const _sfc_main = {
|
|
|
365
361
|
};
|
|
366
362
|
}
|
|
367
363
|
};
|
|
368
|
-
const _Document = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
364
|
+
const _Document = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ae58ecdb"]]);
|
|
369
365
|
export {
|
|
370
366
|
_Document as default
|
|
371
367
|
};
|
|
@@ -34,11 +34,7 @@ const _sfc_main = {
|
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
36
|
const compHeight = computed(() => {
|
|
37
|
-
|
|
38
|
-
return "100%";
|
|
39
|
-
} else {
|
|
40
|
-
return props.height + "px";
|
|
41
|
-
}
|
|
37
|
+
return "100%";
|
|
42
38
|
});
|
|
43
39
|
return (_ctx, _cache) => {
|
|
44
40
|
const _component_van_collapse = Collapse;
|
|
@@ -64,7 +60,7 @@ const _sfc_main = {
|
|
|
64
60
|
};
|
|
65
61
|
}
|
|
66
62
|
};
|
|
67
|
-
const _Collapse = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
63
|
+
const _Collapse = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-6242f3b6"]]);
|
|
68
64
|
export {
|
|
69
65
|
_Collapse as default
|
|
70
66
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* empty css */
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
|
-
import { getCurrentInstance, ref, computed,
|
|
4
|
+
import { getCurrentInstance, ref, computed, createElementBlock, openBlock, unref, createVNode, withCtx, createTextVNode, Fragment, createCommentVNode, normalizeClass, createElementVNode, toDisplayString, renderList } from "vue";
|
|
5
5
|
/* empty css */
|
|
6
6
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
7
7
|
import { Loading } from "../../../../../../node_modules/vant/es/loading/index.mjs";
|
|
@@ -51,37 +51,57 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
51
51
|
name: "FecMobileDataStat"
|
|
52
52
|
}, {
|
|
53
53
|
__name: "DataStat",
|
|
54
|
-
props: {
|
|
55
|
-
|
|
56
|
-
useMock: {
|
|
57
|
-
type: Boolean,
|
|
58
|
-
default: true
|
|
59
|
-
},
|
|
60
|
-
// 数据接口 URL
|
|
61
|
-
apiUrl: {
|
|
62
|
-
type: String,
|
|
63
|
-
default: "/base-server/mobileApi/getHomeStat"
|
|
64
|
-
},
|
|
65
|
-
// 加载完成后是否自动请求(默认 true)
|
|
66
|
-
autoLoad: {
|
|
67
|
-
type: Boolean,
|
|
68
|
-
default: true
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
setup(__props, { expose: __expose }) {
|
|
72
|
-
const props = __props;
|
|
54
|
+
props: {},
|
|
55
|
+
setup(__props) {
|
|
73
56
|
const currentInstance = getCurrentInstance();
|
|
74
57
|
const ctx = currentInstance.proxy;
|
|
75
|
-
const loading = ref(
|
|
58
|
+
const loading = ref(true);
|
|
76
59
|
const dataList = ref([]);
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
60
|
+
ctx.$http.postForm("/base-server/sysHome/getData4UpperLeft", {}, false).then((data) => {
|
|
61
|
+
dataList.value = [
|
|
62
|
+
{
|
|
63
|
+
label: "资产总额",
|
|
64
|
+
value: data.dueAmt,
|
|
65
|
+
unit: "万元",
|
|
66
|
+
theme: "blue"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
label: "客户数量",
|
|
70
|
+
value: data.cusCount,
|
|
71
|
+
unit: "人",
|
|
72
|
+
theme: "mint"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
label: "资产余额",
|
|
76
|
+
value: data.dueBal,
|
|
77
|
+
unit: "万",
|
|
78
|
+
theme: "purple"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
label: "今日到期租金",
|
|
82
|
+
value: data.currRentAmt,
|
|
83
|
+
unit: "万",
|
|
84
|
+
theme: "mist"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
label: "未结清合同",
|
|
88
|
+
value: data.unSettleContNum,
|
|
89
|
+
unit: "笔",
|
|
90
|
+
theme: "orange"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
label: "未来7日到期租金",
|
|
94
|
+
value: data.laterRentAmt,
|
|
95
|
+
unit: "万",
|
|
96
|
+
theme: "rose"
|
|
97
|
+
}
|
|
98
|
+
];
|
|
99
|
+
}).catch((err) => {
|
|
100
|
+
console.error("[DataStat] 加载失败", err);
|
|
101
|
+
dataList.value = [];
|
|
102
|
+
}).finally(() => {
|
|
103
|
+
loading.value = false;
|
|
104
|
+
});
|
|
85
105
|
const hero = computed(() => dataList.value[0] || null);
|
|
86
106
|
const rows = computed(() => {
|
|
87
107
|
const rest = dataList.value.slice(1);
|
|
@@ -110,32 +130,6 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
110
130
|
maximumFractionDigits: 2
|
|
111
131
|
});
|
|
112
132
|
}
|
|
113
|
-
async function loadData() {
|
|
114
|
-
loading.value = true;
|
|
115
|
-
try {
|
|
116
|
-
if (props.useMock) {
|
|
117
|
-
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
118
|
-
dataList.value = JSON.parse(JSON.stringify(mockData));
|
|
119
|
-
} else {
|
|
120
|
-
const res = await ctx.$http.postForm(props.apiUrl, {}, false);
|
|
121
|
-
const list = Array.isArray(res) ? res : (res == null ? void 0 : res.data) || (res == null ? void 0 : res.list) || [];
|
|
122
|
-
dataList.value = list;
|
|
123
|
-
}
|
|
124
|
-
} catch (err) {
|
|
125
|
-
console.error("[DataStat] 加载失败", err);
|
|
126
|
-
dataList.value = JSON.parse(JSON.stringify(mockData));
|
|
127
|
-
} finally {
|
|
128
|
-
loading.value = false;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
__expose({
|
|
132
|
-
refresh: loadData
|
|
133
|
-
});
|
|
134
|
-
onMounted(() => {
|
|
135
|
-
if (props.autoLoad) {
|
|
136
|
-
loadData();
|
|
137
|
-
}
|
|
138
|
-
});
|
|
139
133
|
return (_ctx, _cache) => {
|
|
140
134
|
const _component_van_loading = Loading;
|
|
141
135
|
const _component_van_empty = Empty;
|
|
@@ -220,7 +214,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
220
214
|
};
|
|
221
215
|
}
|
|
222
216
|
});
|
|
223
|
-
const _DataStat = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
217
|
+
const _DataStat = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f233d5ac"]]);
|
|
224
218
|
export {
|
|
225
219
|
_DataStat as default
|
|
226
220
|
};
|
|
@@ -37,10 +37,8 @@ const _sfc_main = {
|
|
|
37
37
|
const searchData = ref("");
|
|
38
38
|
function onClickFilter() {
|
|
39
39
|
}
|
|
40
|
-
function
|
|
41
|
-
onSearch
|
|
42
|
-
}
|
|
43
|
-
function onSearch(val) {
|
|
40
|
+
function onSearch() {
|
|
41
|
+
console.log("🚀 ~ onSearch ~ searchData.value:", searchData.value);
|
|
44
42
|
}
|
|
45
43
|
function onQuickFilterChange(result) {
|
|
46
44
|
console.log("筛选数据:", result);
|
|
@@ -165,15 +163,16 @@ const _sfc_main = {
|
|
|
165
163
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(searchData) ? searchData.value = $event : null),
|
|
166
164
|
shape: "round",
|
|
167
165
|
placeholder: __props.placeholder,
|
|
168
|
-
"show-action":
|
|
166
|
+
"show-action": false,
|
|
169
167
|
clearable: "",
|
|
170
|
-
onClickInput: _cache[1] || (_cache[1] = withModifiers(($event) => __props.filterMode == "router" && onClickFilter, ["stop"]))
|
|
168
|
+
onClickInput: _cache[1] || (_cache[1] = withModifiers(($event) => __props.filterMode == "router" && onClickFilter, ["stop"])),
|
|
169
|
+
onSearch
|
|
171
170
|
}, {
|
|
172
171
|
action: withCtx(() => [
|
|
173
|
-
createElementVNode("div", { onClick:
|
|
172
|
+
createElementVNode("div", { onClick: onSearch }, "搜索")
|
|
174
173
|
]),
|
|
175
174
|
_: 1
|
|
176
|
-
}, 8, ["modelValue", "placeholder"
|
|
175
|
+
}, 8, ["modelValue", "placeholder"]),
|
|
177
176
|
createVNode(QuickFilter, {
|
|
178
177
|
"filter-data": unref(filterData),
|
|
179
178
|
onChange: onQuickFilterChange
|
|
@@ -101,11 +101,7 @@ const _sfc_main = {
|
|
|
101
101
|
};
|
|
102
102
|
});
|
|
103
103
|
const compHeight = computed(() => {
|
|
104
|
-
|
|
105
|
-
return "100%";
|
|
106
|
-
} else {
|
|
107
|
-
return props.height + "px";
|
|
108
|
-
}
|
|
104
|
+
return "100%";
|
|
109
105
|
});
|
|
110
106
|
const tabSwipeable = ref(false);
|
|
111
107
|
onMounted(() => {
|
|
@@ -182,7 +178,7 @@ const _sfc_main = {
|
|
|
182
178
|
};
|
|
183
179
|
}
|
|
184
180
|
};
|
|
185
|
-
const _Tabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
181
|
+
const _Tabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2dd78d51"]]);
|
|
186
182
|
export {
|
|
187
183
|
_Tabs as default
|
|
188
184
|
};
|
package/lib/designer/index.js
CHANGED
|
@@ -5,12 +5,19 @@ const index$2 = ;/* empty css */
|
|
|
5
5
|
;/* empty css */
|
|
6
6
|
const designer = require("./src/store/designer.js");
|
|
7
7
|
const index$1 = require("../packages/vue/index.js");
|
|
8
|
+
require("element-plus");
|
|
8
9
|
const install = (app) => {
|
|
9
10
|
app.use(index$1.default);
|
|
10
11
|
app.component("fecDevDesigner", index$2.default);
|
|
11
12
|
};
|
|
13
|
+
function useZhCn(app, ElementPlus, zhCn) {
|
|
14
|
+
app.use(ElementPlus, {
|
|
15
|
+
locale: zhCn
|
|
16
|
+
});
|
|
17
|
+
}
|
|
12
18
|
const index = {
|
|
13
19
|
install,
|
|
14
|
-
devStore: designer.default
|
|
20
|
+
devStore: designer.default,
|
|
21
|
+
useZhCn
|
|
15
22
|
};
|
|
16
23
|
exports.default = index;
|
|
@@ -57,6 +57,8 @@ const _sfc_main = {
|
|
|
57
57
|
selectedDataSources.value = common.cloneDeep(common.getEditConfigDataSources());
|
|
58
58
|
if (selectedDataSources.value.length > 0 && activeDataSourceIndex.value === -1) {
|
|
59
59
|
activeDataSourceIndex.value = 0;
|
|
60
|
+
} else {
|
|
61
|
+
activeDataSourceIndex.value = -1;
|
|
60
62
|
}
|
|
61
63
|
}
|
|
62
64
|
});
|
|
@@ -294,5 +296,5 @@ const _sfc_main = {
|
|
|
294
296
|
};
|
|
295
297
|
}
|
|
296
298
|
};
|
|
297
|
-
const DataSourceDialog = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
299
|
+
const DataSourceDialog = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-482d52bb"]]);
|
|
298
300
|
exports.default = DataSourceDialog;
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
require("../../../../node_modules/element-plus/es/index.js");
|
|
3
|
+
const index$7 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
4
|
+
const index$9 = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
5
|
+
const index$5 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
6
|
+
const index$8 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
7
|
+
const index$3 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
8
|
+
const index$b = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
9
|
+
const index$e = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
10
|
+
const index$a = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
11
|
+
const index$2 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
12
|
+
const index$1 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
13
|
+
const index$6 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
14
|
+
const index$d = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
15
|
+
const index$f = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
16
|
+
const index$c = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
17
|
+
require("../../../../_virtual/dayjs.min.js");
|
|
4
18
|
;/* empty css */
|
|
5
19
|
;/* empty css */
|
|
6
20
|
;/* empty css */
|
|
@@ -44,20 +58,6 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
44
58
|
;/* empty css */
|
|
45
59
|
;/* empty css */
|
|
46
60
|
const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
|
|
47
|
-
const index$1 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
48
|
-
const index$2 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
49
|
-
const index$3 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
50
|
-
const index$5 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
51
|
-
const index$6 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
52
|
-
const index$7 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
53
|
-
const index$8 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
54
|
-
const index$9 = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
55
|
-
const index$a = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
56
|
-
const index$b = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
57
|
-
const index$c = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
58
|
-
const index$d = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
59
|
-
const index$e = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
60
|
-
const index$f = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
61
61
|
const _hoisted_1 = { key: 0 };
|
|
62
62
|
const _hoisted_2 = { class: "dialog-menu-item is-editing" };
|
|
63
63
|
const _hoisted_3 = { class: "new-item-content" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = Vue.ref(false);
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
require("../../../../node_modules/element-plus/es/index.js");
|
|
3
|
+
const index$4 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
4
|
+
const index$a = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
5
|
+
const index$7 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
6
|
+
const index$9 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
7
|
+
const index$6 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
8
|
+
const index$c = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
9
|
+
const index$f = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
10
|
+
const index$b = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
11
|
+
const index$3 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
12
|
+
const index$2 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
13
|
+
const index$8 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
14
|
+
const index$e = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
15
|
+
const index$1 = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
16
|
+
const index$d = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
17
|
+
require("../../../../_virtual/dayjs.min.js");
|
|
4
18
|
;/* empty css */
|
|
5
19
|
;/* empty css */
|
|
6
20
|
;/* empty css */
|
|
@@ -43,6 +57,7 @@ const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export
|
|
|
43
57
|
require("../../../../node_modules/element-plus/theme-chalk/el-tooltip.css.js");
|
|
44
58
|
;/* empty css */
|
|
45
59
|
;/* empty css */
|
|
60
|
+
require("element-plus");
|
|
46
61
|
;/* empty css */
|
|
47
62
|
;/* empty css */
|
|
48
63
|
;/* empty css */
|
|
@@ -86,7 +101,7 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
86
101
|
require("../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.js");
|
|
87
102
|
;/* empty css */
|
|
88
103
|
;/* empty css */
|
|
89
|
-
;/* empty css
|
|
104
|
+
;/* empty css */
|
|
90
105
|
;/* empty css */
|
|
91
106
|
;/* empty css */
|
|
92
107
|
;/* empty css */
|
|
@@ -103,20 +118,6 @@ require("../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.js
|
|
|
103
118
|
;/* empty css */
|
|
104
119
|
;/* empty css */
|
|
105
120
|
;/* empty css */
|
|
106
|
-
const index$1 = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
107
|
-
const index$2 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
108
|
-
const index$3 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
109
|
-
const index$4 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
110
|
-
const index$6 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
111
|
-
const index$7 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
112
|
-
const index$8 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
113
|
-
const index$9 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
114
|
-
const index$a = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
115
|
-
const index$b = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
116
|
-
const index$c = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
117
|
-
const index$d = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
118
|
-
const index$e = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
119
|
-
const index$f = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
120
121
|
const _hoisted_1 = {
|
|
121
122
|
key: 0,
|
|
122
123
|
class: "loading-overlay"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = Vue.ref(false);
|
|
@@ -63,8 +63,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
|
|
|
63
63
|
require("../../../components/TemplateSelector.vue.js");
|
|
64
64
|
require("../../table/default.js");
|
|
65
65
|
;/* empty css */
|
|
66
|
-
;/* empty css
|
|
67
|
-
;/* empty css
|
|
66
|
+
;/* empty css */
|
|
67
|
+
;/* empty css */
|
|
68
68
|
require("../../../store/index.js");
|
|
69
69
|
;/* empty css */
|
|
70
70
|
const _hoisted_1 = {
|