@farris/jit-engine 1.3.245 → 1.3.247
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/lib/template/ui/mobilevue/action-bar.pug +10 -10
- package/lib/template/ui/mobilevue/approval-info.pug +18 -18
- package/lib/template/ui/mobilevue/approval-logs.pug +11 -11
- package/lib/template/ui/mobilevue/area-picker.pug +2 -0
- package/lib/template/ui/mobilevue/attachment-entry.pug +17 -17
- package/lib/template/ui/mobilevue/attachment-uploader.pug +18 -18
- package/lib/template/ui/mobilevue/attachment.pug +28 -28
- package/lib/template/ui/mobilevue/banner.pug +4 -4
- package/lib/template/ui/mobilevue/button.pug +22 -22
- package/lib/template/ui/mobilevue/calendar-input.pug +2 -0
- package/lib/template/ui/mobilevue/calendar.pug +30 -30
- package/lib/template/ui/mobilevue/card.pug +19 -19
- package/lib/template/ui/mobilevue/checkbox-group.pug +2 -0
- package/lib/template/ui/mobilevue/component-ref.pug +3 -3
- package/lib/template/ui/mobilevue/container.pug +9 -9
- package/lib/template/ui/mobilevue/contentcontainer.pug +11 -11
- package/lib/template/ui/mobilevue/custom-box.pug +2 -0
- package/lib/template/ui/mobilevue/date-time-picker.pug +2 -0
- package/lib/template/ui/mobilevue/field-set.pug +14 -14
- package/lib/template/ui/mobilevue/filter.pug +23 -23
- package/lib/template/ui/mobilevue/form.pug +7 -7
- package/lib/template/ui/mobilevue/html-preview.pug +25 -25
- package/lib/template/ui/mobilevue/image-uploader.pug +15 -15
- package/lib/template/ui/mobilevue/lookup-department.pug +2 -0
- package/lib/template/ui/mobilevue/lookup-employee.pug +2 -0
- package/lib/template/ui/mobilevue/lookup-input.pug +2 -0
- package/lib/template/ui/mobilevue/nav-bar.pug +30 -30
- package/lib/template/ui/mobilevue/number.pug +2 -0
- package/lib/template/ui/mobilevue/picker-relation.pug +2 -0
- package/lib/template/ui/mobilevue/picker.pug +2 -0
- package/lib/template/ui/mobilevue/radio-group.pug +2 -0
- package/lib/template/ui/mobilevue/rich-text-editor.pug +57 -55
- package/lib/template/ui/mobilevue/schedule.pug +13 -13
- package/lib/template/ui/mobilevue/scroll-navbar.pug +13 -13
- package/lib/template/ui/mobilevue/search.pug +19 -19
- package/lib/template/ui/mobilevue/section.pug +33 -33
- package/lib/template/ui/mobilevue/sidebar-item.pug +9 -9
- package/lib/template/ui/mobilevue/sidebar.pug +11 -11
- package/lib/template/ui/mobilevue/staff-info.pug +12 -12
- package/lib/template/ui/mobilevue/static-text.pug +1 -1
- package/lib/template/ui/mobilevue/steps.pug +8 -8
- package/lib/template/ui/mobilevue/switch.pug +45 -43
- package/lib/template/ui/mobilevue/tabpage.pug +14 -14
- package/lib/template/ui/mobilevue/tabs.pug +16 -16
- package/lib/template/ui/mobilevue/text-area.pug +4 -0
- package/lib/template/ui/mobilevue/text-box-external.pug +2 -0
- package/lib/template/ui/mobilevue/text-box.pug +2 -0
- package/lib/template/ui/mobilevue/text-scan.pug +2 -0
- package/lib/template/ui/mobilevue/text-telphone.pug +2 -0
- package/lib/template/ui/mobilevue/toolbar-area.pug +9 -9
- package/lib/template/ui/mobilevue/toolbar-item.pug +14 -14
- package/lib/template/ui/mobilevue/toolbar.pug +5 -5
- package/package.json +85 -56
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
-variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
|
|
2
|
-
|
|
3
|
-
fm-action-bar(
|
|
4
|
-
v-if=variable.visible?variable.visible+"":"false"
|
|
5
|
-
style=(variable.appearance && variable.appearance.style)
|
|
6
|
-
class=(variable.appearance && variable.appearance.class)
|
|
7
|
-
id=variable.id?"" + variable.id:undefined
|
|
8
|
-
:btns=variable.btns?"" + variable.btns:undefined
|
|
9
|
-
)
|
|
10
|
-
|
|
1
|
+
-variable.readonly = variable.readonly?String(variable.readonly).replace(/"/g, "'")+"":undefined;
|
|
2
|
+
|
|
3
|
+
fm-action-bar(
|
|
4
|
+
v-if=variable.visible?variable.visible+"":"false"
|
|
5
|
+
style=(variable.appearance && variable.appearance.style)
|
|
6
|
+
class=(variable.appearance && variable.appearance.class)
|
|
7
|
+
id=variable.id?"" + variable.id:undefined
|
|
8
|
+
:btns=variable.btns?"" + variable.btns:undefined
|
|
9
|
+
)
|
|
10
|
+
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
-var noticeText = `流程编号${variable.code},发布于${variable.releaseDate}`
|
|
6
|
-
|
|
7
|
-
fm-approval-info(
|
|
8
|
-
v-if=visible
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
code=variable.code?""+variable.code:undefined
|
|
11
|
-
name=variable.name?""+variable.name:undefined
|
|
12
|
-
releaseDate=variable.releaseDate?""+variable.releaseDate:undefined
|
|
13
|
-
description=variable.description?""+variable.description:undefined
|
|
14
|
-
)&attributes(attrs)
|
|
15
|
-
template(v-slot="slotProps")
|
|
16
|
-
fm-notice-bar(mode="link" class="fm-approval-info-notice-bar")
|
|
17
|
-
| !{noticeText}
|
|
18
|
-
template(#right)
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
-var noticeText = `流程编号${variable.code},发布于${variable.releaseDate}`
|
|
6
|
+
|
|
7
|
+
fm-approval-info(
|
|
8
|
+
v-if=visible
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
code=variable.code?""+variable.code:undefined
|
|
11
|
+
name=variable.name?""+variable.name:undefined
|
|
12
|
+
releaseDate=variable.releaseDate?""+variable.releaseDate:undefined
|
|
13
|
+
description=variable.description?""+variable.description:undefined
|
|
14
|
+
)&attributes(attrs)
|
|
15
|
+
template(v-slot="slotProps")
|
|
16
|
+
fm-notice-bar(mode="link" class="fm-approval-info-notice-bar")
|
|
17
|
+
| !{noticeText}
|
|
18
|
+
template(#right)
|
|
19
19
|
<span @click="slotProps.show">查看流程说明</span>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
-var attrs = {};
|
|
3
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
4
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
5
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
6
|
-
|
|
7
|
-
approval-logs(
|
|
8
|
-
v-if=visible
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
title=variable.title?""+variable.title:undefined
|
|
11
|
-
:dataId=variable.dataId ?""+variable.dataId:undefined
|
|
1
|
+
|
|
2
|
+
-var attrs = {};
|
|
3
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
4
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
5
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
6
|
+
|
|
7
|
+
approval-logs(
|
|
8
|
+
v-if=visible
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
title=variable.title?""+variable.title:undefined
|
|
11
|
+
:dataId=variable.dataId ?""+variable.dataId:undefined
|
|
12
12
|
)
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
-attrs.id = variable.replacedId? String(variable.replacedId) : undefined
|
|
6
6
|
-attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
|
|
7
7
|
-attrs.label = variable.title? String(variable.title) : undefined
|
|
8
|
+
-attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
|
|
9
|
+
-attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
|
|
8
10
|
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
9
11
|
-var require = variable.require ? String(variable.require.value) : undefined;
|
|
10
12
|
-var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
- var fileList = variable.attachmentPath ? `$filterAttachment(entityListData,'${variable.attachmentPath}','${variable.rootId}')` : '[]'
|
|
6
|
-
fm-attachment-entry(
|
|
7
|
-
v-if=visible
|
|
8
|
-
:fileList=fileList
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
:disabled=variable.disabled?"" + variable.disabled:undefined
|
|
11
|
-
:removable=variable.removable?"" + variable.removable:undefined
|
|
12
|
-
rootId=variable.rootId?"" + variable.rootId:undefined
|
|
13
|
-
direction=variable.direction?"" + variable.direction:undefined
|
|
14
|
-
:externalVideoUrl=variable.externalVideoUrl?"" + variable.externalVideoUrl:undefined
|
|
15
|
-
@remove=variable.remove?"" + variable.remove:undefined
|
|
16
|
-
@upload=variable.upload?"" + variable.upload:undefined
|
|
17
|
-
@selectChange=variable.selectChange? "" + variable.selectChange:undefined
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
- var fileList = variable.attachmentPath ? `$filterAttachment(entityListData,'${variable.attachmentPath}','${variable.rootId}')` : '[]'
|
|
6
|
+
fm-attachment-entry(
|
|
7
|
+
v-if=visible
|
|
8
|
+
:fileList=fileList
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
:disabled=variable.disabled?"" + variable.disabled:undefined
|
|
11
|
+
:removable=variable.removable?"" + variable.removable:undefined
|
|
12
|
+
rootId=variable.rootId?"" + variable.rootId:undefined
|
|
13
|
+
direction=variable.direction?"" + variable.direction:undefined
|
|
14
|
+
:externalVideoUrl=variable.externalVideoUrl?"" + variable.externalVideoUrl:undefined
|
|
15
|
+
@remove=variable.remove?"" + variable.remove:undefined
|
|
16
|
+
@upload=variable.upload?"" + variable.upload:undefined
|
|
17
|
+
@selectChange=variable.selectChange? "" + variable.selectChange:undefined
|
|
18
18
|
)&attributes(attrs)
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
- var fileList = `$formatUtils.attachInfo(currentEntityData.${variable.binding.bindingPath},'${variable.rootId}')`
|
|
2
|
-
|
|
3
|
-
fm-attachment-uploader(
|
|
4
|
-
style!=(variable.appearance && variable.appearance.style)
|
|
5
|
-
class!=(variable.appearance && variable.appearance.class)
|
|
6
|
-
v-if!=variable.visible?variable.visible+"":"false"
|
|
7
|
-
title=variable.title?variable.title+"":undefined
|
|
8
|
-
:fileList!=fileList
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
parentDirName!=variable.parentDirName?variable.parentDirName+"":undefined
|
|
11
|
-
rootId!=variable.rootId?variable.rootId+"":undefined
|
|
12
|
-
attachmentPath!=variable.attachmentPath?variable.attachmentPath+"":undefined
|
|
13
|
-
:maxSize!=variable.maxSize?"" + variable.maxSize:undefined
|
|
14
|
-
:maxCount!=variable.maxCount?"" + variable.maxCount:undefined
|
|
15
|
-
:sizeList!=variable.sizeList?"" + variable.sizeList:undefined
|
|
16
|
-
:allowMaxSize!=variable.allowMaxSize?"" + variable.allowMaxSize:undefined
|
|
17
|
-
:allowMaxCount!=variable.allowMaxCount?"" + variable.allowMaxCount:undefined
|
|
18
|
-
:uploadOptions!=variable.uploadOptions?"" + variable.uploadOptions:undefined
|
|
1
|
+
- var fileList = `$formatUtils.attachInfo(currentEntityData.${variable.binding.bindingPath},'${variable.rootId}')`
|
|
2
|
+
|
|
3
|
+
fm-attachment-uploader(
|
|
4
|
+
style!=(variable.appearance && variable.appearance.style)
|
|
5
|
+
class!=(variable.appearance && variable.appearance.class)
|
|
6
|
+
v-if!=variable.visible?variable.visible+"":"false"
|
|
7
|
+
title=variable.title?variable.title+"":undefined
|
|
8
|
+
:fileList!=fileList
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
parentDirName!=variable.parentDirName?variable.parentDirName+"":undefined
|
|
11
|
+
rootId!=variable.rootId?variable.rootId+"":undefined
|
|
12
|
+
attachmentPath!=variable.attachmentPath?variable.attachmentPath+"":undefined
|
|
13
|
+
:maxSize!=variable.maxSize?"" + variable.maxSize:undefined
|
|
14
|
+
:maxCount!=variable.maxCount?"" + variable.maxCount:undefined
|
|
15
|
+
:sizeList!=variable.sizeList?"" + variable.sizeList:undefined
|
|
16
|
+
:allowMaxSize!=variable.allowMaxSize?"" + variable.allowMaxSize:undefined
|
|
17
|
+
:allowMaxCount!=variable.allowMaxCount?"" + variable.allowMaxCount:undefined
|
|
18
|
+
:uploadOptions!=variable.uploadOptions?"" + variable.uploadOptions:undefined
|
|
19
19
|
)
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
|
|
6
|
-
- var fileList = variable.attachmentPath ? `$filterAttachment(entityListData,'${variable.attachmentPath}','${variable.rootId}')` : '[]'
|
|
7
|
-
|
|
8
|
-
fm-attachment(
|
|
9
|
-
v-if=visible
|
|
10
|
-
ref=variable.replacedId
|
|
11
|
-
:fileList=fileList
|
|
12
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
13
|
-
:multiple=variable.multiple?"" + variable.multiple:undefined
|
|
14
|
-
accept=variable.accept?"" + variable.accept:undefined
|
|
15
|
-
parentDirName=variable.parentDirName? "" + variable.parentDirName:undefined
|
|
16
|
-
rootId=variable.rootId? "" + variable.rootId:undefined
|
|
17
|
-
pattern=variable.pattern? "" + variable.pattern:undefined
|
|
18
|
-
:disabled=variable.disabled?"" + variable.disabled:undefined
|
|
19
|
-
:cloudPlus =variable.cloudPlus ?"" + variable.cloudPlus:undefined
|
|
20
|
-
:ccWork =variable.ccWork ?"" + variable.ccWork :undefined
|
|
21
|
-
:externalVideoUrl=variable.externalVideoUrl?"" + variable.externalVideoUrl:undefined
|
|
22
|
-
:useWatermark=variable.useWatermark?"" + variable.useWatermark:undefined
|
|
23
|
-
:watermarkcontentMode=variable.watermarkcontentMode? "" + variable.showWMLocation:undefined
|
|
24
|
-
:customWatermarkContent=variable.customWatermarkContent ?"" + variable.showWMDate:undefined
|
|
25
|
-
:watermarkStyle=variable.watermarkStyle?"" + variable.watermarkStyle:undefined
|
|
26
|
-
@afterAppendFile=variable.afterAppendFile?"" + variable.afterAppendFile:undefined
|
|
27
|
-
@remove=variable.remove? "" + variable.remove:undefined
|
|
28
|
-
@selectChange=variable.selectChange? "" + variable.selectChange:undefined
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
|
|
6
|
+
- var fileList = variable.attachmentPath ? `$filterAttachment(entityListData,'${variable.attachmentPath}','${variable.rootId}')` : '[]'
|
|
7
|
+
|
|
8
|
+
fm-attachment(
|
|
9
|
+
v-if=visible
|
|
10
|
+
ref=variable.replacedId
|
|
11
|
+
:fileList=fileList
|
|
12
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
13
|
+
:multiple=variable.multiple?"" + variable.multiple:undefined
|
|
14
|
+
accept=variable.accept?"" + variable.accept:undefined
|
|
15
|
+
parentDirName=variable.parentDirName? "" + variable.parentDirName:undefined
|
|
16
|
+
rootId=variable.rootId? "" + variable.rootId:undefined
|
|
17
|
+
pattern=variable.pattern? "" + variable.pattern:undefined
|
|
18
|
+
:disabled=variable.disabled?"" + variable.disabled:undefined
|
|
19
|
+
:cloudPlus =variable.cloudPlus ?"" + variable.cloudPlus:undefined
|
|
20
|
+
:ccWork =variable.ccWork ?"" + variable.ccWork :undefined
|
|
21
|
+
:externalVideoUrl=variable.externalVideoUrl?"" + variable.externalVideoUrl:undefined
|
|
22
|
+
:useWatermark=variable.useWatermark?"" + variable.useWatermark:undefined
|
|
23
|
+
:watermarkcontentMode=variable.watermarkcontentMode? "" + variable.showWMLocation:undefined
|
|
24
|
+
:customWatermarkContent=variable.customWatermarkContent ?"" + variable.showWMDate:undefined
|
|
25
|
+
:watermarkStyle=variable.watermarkStyle?"" + variable.watermarkStyle:undefined
|
|
26
|
+
@afterAppendFile=variable.afterAppendFile?"" + variable.afterAppendFile:undefined
|
|
27
|
+
@remove=variable.remove? "" + variable.remove:undefined
|
|
28
|
+
@selectChange=variable.selectChange? "" + variable.selectChange:undefined
|
|
29
29
|
)&attributes(attrs)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
div(class="fm-banner-warpper")
|
|
2
|
-
div(class="fm-banner-title")
|
|
3
|
-
| !{variable.title}
|
|
4
|
-
div(class="fm-banner-title-sub")
|
|
1
|
+
div(class="fm-banner-warpper")
|
|
2
|
+
div(class="fm-banner-title")
|
|
3
|
+
| !{variable.title}
|
|
4
|
+
div(class="fm-banner-title-sub")
|
|
5
5
|
| !{variable.subTitle}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.className = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
-var disabled = variable.disabled ? String(variable.disabled.value) : undefined;
|
|
6
|
-
|
|
7
|
-
fm-button(
|
|
8
|
-
v-if=visible
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
type=variable.displayType ? String(variable.displayType) : "info"
|
|
11
|
-
:disabled=disabled
|
|
12
|
-
:block=variable.block ? String(variable.block) : undefined
|
|
13
|
-
:round=variable.round ? String(variable.round) : undefined
|
|
14
|
-
:plain=variable.plain ? String(variable.plain) : undefined
|
|
15
|
-
:noBorder=variable.noBorder ? String(variable.noBorder) : undefined
|
|
16
|
-
size=variable.buttonSize ? String(variable.buttonSize) : undefined
|
|
17
|
-
icon=variable.icon ? String(variable.icon) : undefined
|
|
18
|
-
@click=variable.click ? String(variable.click) : undefined
|
|
19
|
-
)&attributes(attrs)
|
|
20
|
-
if variable.template
|
|
21
|
-
| !{variable.template}
|
|
22
|
-
else
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.className = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
-var disabled = variable.disabled ? String(variable.disabled.value) : undefined;
|
|
6
|
+
|
|
7
|
+
fm-button(
|
|
8
|
+
v-if=visible
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
type=variable.displayType ? String(variable.displayType) : "info"
|
|
11
|
+
:disabled=disabled
|
|
12
|
+
:block=variable.block ? String(variable.block) : undefined
|
|
13
|
+
:round=variable.round ? String(variable.round) : undefined
|
|
14
|
+
:plain=variable.plain ? String(variable.plain) : undefined
|
|
15
|
+
:noBorder=variable.noBorder ? String(variable.noBorder) : undefined
|
|
16
|
+
size=variable.buttonSize ? String(variable.buttonSize) : undefined
|
|
17
|
+
icon=variable.icon ? String(variable.icon) : undefined
|
|
18
|
+
@click=variable.click ? String(variable.click) : undefined
|
|
19
|
+
)&attributes(attrs)
|
|
20
|
+
if variable.template
|
|
21
|
+
| !{variable.template}
|
|
22
|
+
else
|
|
23
23
|
| !{variable.text}
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
-attrs.id = variable.replacedId? String(variable.replacedId) : undefined
|
|
6
6
|
-attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
|
|
7
7
|
-attrs.label = variable.title? String(variable.title) : undefined
|
|
8
|
+
-attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
|
|
9
|
+
-attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
|
|
8
10
|
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
9
11
|
-var require = variable.require ? String(variable.require.value) : undefined;
|
|
10
12
|
-var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
-var value = variable.value ? String(variable.value.value) : undefined;
|
|
6
|
-
-var minValue = variable.minValue && variable.minValue.value !== undefined ? String(variable.minValue.value) : undefined;
|
|
7
|
-
-var maxValue = variable.maxValue && variable.maxValue.value !== undefined ? String(variable.maxValue.value) : undefined;
|
|
8
|
-
|
|
9
|
-
fm-calendar(
|
|
10
|
-
v-if=visible
|
|
11
|
-
:modelValue!=value
|
|
12
|
-
:minDate=minValue
|
|
13
|
-
:maxDate=maxValue
|
|
14
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
15
|
-
title=variable.title?""+variable.title:undefined
|
|
16
|
-
prevText=variable.prevText?""+variable.prevText:undefined
|
|
17
|
-
nextText=variable.nextText?""+variable.nextText:undefined
|
|
18
|
-
firstDay=variable.firstDay?""+variable.firstDay:undefined
|
|
19
|
-
view=variable.view?""+variable.view:undefined
|
|
20
|
-
type=variable.valueType?""+variable.valueType:undefined
|
|
21
|
-
theme=variable.theme?""+variable.theme:undefined
|
|
22
|
-
:mark!=variable.mark?""+variable.mark:undefined
|
|
23
|
-
:marks!=variable.marks?""+variable.marks:undefined
|
|
24
|
-
:event!=variable.event?""+variable.event:undefined
|
|
25
|
-
:events!=variable.events?""+variable.events:undefined
|
|
26
|
-
@update:modelValue!=variable.change?""+variable.change:undefined
|
|
27
|
-
@dayClick!=variable.dayClick?""+variable.dayClick:undefined
|
|
28
|
-
@render!=variable.render?""+variable.render:undefined
|
|
29
|
-
@prev-click!=variable.prev?""+variable.prev:undefined
|
|
30
|
-
@next-click!=variable.next?""+variable.next:undefined
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
-var value = variable.value ? String(variable.value.value) : undefined;
|
|
6
|
+
-var minValue = variable.minValue && variable.minValue.value !== undefined ? String(variable.minValue.value) : undefined;
|
|
7
|
+
-var maxValue = variable.maxValue && variable.maxValue.value !== undefined ? String(variable.maxValue.value) : undefined;
|
|
8
|
+
|
|
9
|
+
fm-calendar(
|
|
10
|
+
v-if=visible
|
|
11
|
+
:modelValue!=value
|
|
12
|
+
:minDate=minValue
|
|
13
|
+
:maxDate=maxValue
|
|
14
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
15
|
+
title=variable.title?""+variable.title:undefined
|
|
16
|
+
prevText=variable.prevText?""+variable.prevText:undefined
|
|
17
|
+
nextText=variable.nextText?""+variable.nextText:undefined
|
|
18
|
+
firstDay=variable.firstDay?""+variable.firstDay:undefined
|
|
19
|
+
view=variable.view?""+variable.view:undefined
|
|
20
|
+
type=variable.valueType?""+variable.valueType:undefined
|
|
21
|
+
theme=variable.theme?""+variable.theme:undefined
|
|
22
|
+
:mark!=variable.mark?""+variable.mark:undefined
|
|
23
|
+
:marks!=variable.marks?""+variable.marks:undefined
|
|
24
|
+
:event!=variable.event?""+variable.event:undefined
|
|
25
|
+
:events!=variable.events?""+variable.events:undefined
|
|
26
|
+
@update:modelValue!=variable.change?""+variable.change:undefined
|
|
27
|
+
@dayClick!=variable.dayClick?""+variable.dayClick:undefined
|
|
28
|
+
@render!=variable.render?""+variable.render:undefined
|
|
29
|
+
@prev-click!=variable.prev?""+variable.prev:undefined
|
|
30
|
+
@next-click!=variable.next?""+variable.next:undefined
|
|
31
31
|
)&attributes(attrs)
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
|
|
6
|
-
fm-card(
|
|
7
|
-
v-if=visible
|
|
8
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
-
icon=variable.icon?String(variable.icon):undefined
|
|
10
|
-
title=variable.title?String(variable.title):undefined
|
|
11
|
-
:collapsible=variable.collapsible?String(variable.collapsible) : 'false'
|
|
12
|
-
:actions=variable.actions?String(variable.actions):undefined
|
|
13
|
-
)&attributes(attrs)
|
|
14
|
-
if(variable.headerTemplate)
|
|
15
|
-
template(#header)
|
|
16
|
-
| !{variable.headerTemplate}
|
|
17
|
-
if(variable.footerTemplate)
|
|
18
|
-
template(#footer)
|
|
19
|
-
| !{variable.footerTemplate}
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
|
|
6
|
+
fm-card(
|
|
7
|
+
v-if=visible
|
|
8
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
+
icon=variable.icon?String(variable.icon):undefined
|
|
10
|
+
title=variable.title?String(variable.title):undefined
|
|
11
|
+
:collapsible=variable.collapsible?String(variable.collapsible) : 'false'
|
|
12
|
+
:actions=variable.actions?String(variable.actions):undefined
|
|
13
|
+
)&attributes(attrs)
|
|
14
|
+
if(variable.headerTemplate)
|
|
15
|
+
template(#header)
|
|
16
|
+
| !{variable.headerTemplate}
|
|
17
|
+
if(variable.footerTemplate)
|
|
18
|
+
template(#footer)
|
|
19
|
+
| !{variable.footerTemplate}
|
|
20
20
|
| {{content}}
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
-attrs.class = variable.appearance && variable.appearance.class;
|
|
4
4
|
-attrs.style = variable.appearance && variable.appearance.style;
|
|
5
5
|
-attrs.label = variable.title? String(variable.title) : undefined
|
|
6
|
+
-attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
|
|
7
|
+
-attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
|
|
6
8
|
-var checkerStyle = variable.checkerWidth ? { width: variable.checkerWidth + 'px' } : undefined
|
|
7
9
|
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
8
10
|
-var require = variable.require ? String(variable.require.value) : undefined;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//- -var variable = {id:'id',"component":"Delivery-component", "componentName":"DeliveryComponent"};
|
|
2
|
-
|
|
3
|
-
#{'app-' + variable.componentName.toLowerCase()}
|
|
1
|
+
//- -var variable = {id:'id',"component":"Delivery-component", "componentName":"DeliveryComponent"};
|
|
2
|
+
|
|
3
|
+
#{'app-' + variable.componentName.toLowerCase()}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
|
|
6
|
-
div(
|
|
7
|
-
v-if=visible
|
|
8
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
-
)&attributes(attrs)
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
|
|
6
|
+
div(
|
|
7
|
+
v-if=visible
|
|
8
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
+
)&attributes(attrs)
|
|
10
10
|
| {{content}}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
div(
|
|
8
|
-
v-if=visible
|
|
9
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
-
ref=variable.ref?""+variable.ref:undefined
|
|
11
|
-
)&attributes(attrs)
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
div(
|
|
8
|
+
v-if=visible
|
|
9
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
10
|
+
ref=variable.ref?""+variable.ref:undefined
|
|
11
|
+
)&attributes(attrs)
|
|
12
12
|
| {{content}}
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
-attrs.id = variable.replacedId? String(variable.replacedId) : undefined
|
|
6
6
|
-attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
|
|
7
7
|
-attrs.label = variable.title? String(variable.title) : undefined
|
|
8
|
+
-attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
|
|
9
|
+
-attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
|
|
8
10
|
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
9
11
|
-var require = variable.require ? String(variable.require.value) : undefined;
|
|
10
12
|
-var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
-attrs.id = variable.replacedId? String(variable.replacedId) : undefined
|
|
6
6
|
-attrs.placeholder = variable.placeholder? String(variable.placeholder) : undefined
|
|
7
7
|
-attrs.label = variable.title? String(variable.title) : undefined
|
|
8
|
+
-attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
|
|
9
|
+
-attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
|
|
8
10
|
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
9
11
|
-var require = variable.require ? String(variable.require.value) : undefined;
|
|
10
12
|
-var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
-
|
|
6
|
-
fm-collapse-item(
|
|
7
|
-
v-if=visible
|
|
8
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
-
title=variable.title?String(variable.title) : undefined
|
|
10
|
-
position=variable.isInner ? 'bottom' : 'top'
|
|
11
|
-
:collapse=variable.collapse?String(variable.collapse): undefined
|
|
12
|
-
)&attributes(attrs)
|
|
13
|
-
if(variable.headerTemplate)
|
|
14
|
-
| !{variable.headerTemplate}
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
5
|
+
|
|
6
|
+
fm-collapse-item(
|
|
7
|
+
v-if=visible
|
|
8
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
9
|
+
title=variable.title?String(variable.title) : undefined
|
|
10
|
+
position=variable.isInner ? 'bottom' : 'top'
|
|
11
|
+
:collapse=variable.collapse?String(variable.collapse): undefined
|
|
12
|
+
)&attributes(attrs)
|
|
13
|
+
if(variable.headerTemplate)
|
|
14
|
+
| !{variable.headerTemplate}
|
|
15
15
|
| {{content}}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
-attrs.id = variable.replacedId ? String(variable.replacedId) : undefined;
|
|
5
|
-
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
6
|
-
-var searchFields = variable.searchFields ? String(variable.searchFields.value) : undefined;
|
|
7
|
-
|
|
8
|
-
fm-filter(
|
|
9
|
-
v-if=visible
|
|
10
|
-
ref=variable.replacedId
|
|
11
|
-
:searchFields=searchFields
|
|
12
|
-
v-model=variable.binding?""+variable.binding:undefined
|
|
13
|
-
type=variable.showType?""+variable.showType:undefined
|
|
14
|
-
position=variable.position?""+variable.position:undefined
|
|
15
|
-
placeholder=variable.placeholder?""+variable.placeholder:undefined
|
|
16
|
-
:searchBoxValue=variable.searchBoxValue?""+variable.searchBoxValue:undefined
|
|
17
|
-
:useSearch=variable.useSearch?""+variable.useSearch:undefined
|
|
18
|
-
:fieldConfigs=variable.fieldConfigs?""+variable.fieldConfigs:[]
|
|
19
|
-
@confirm=variable.onQuery?""+variable.onQuery:undefined
|
|
20
|
-
@searchBoxChange=variable.searchBoxChange?""+variable.searchBoxChange:undefined
|
|
21
|
-
)&attributes(attrs)
|
|
22
|
-
if(variable.lookupCellTemplate)
|
|
23
|
-
template(v-slot:lookup-cell="slotProps")
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
-attrs.id = variable.replacedId ? String(variable.replacedId) : undefined;
|
|
5
|
+
-var visible = variable.visible ? String(variable.visible.value) : 'false';
|
|
6
|
+
-var searchFields = variable.searchFields ? String(variable.searchFields.value) : undefined;
|
|
7
|
+
|
|
8
|
+
fm-filter(
|
|
9
|
+
v-if=visible
|
|
10
|
+
ref=variable.replacedId
|
|
11
|
+
:searchFields=searchFields
|
|
12
|
+
v-model=variable.binding?""+variable.binding:undefined
|
|
13
|
+
type=variable.showType?""+variable.showType:undefined
|
|
14
|
+
position=variable.position?""+variable.position:undefined
|
|
15
|
+
placeholder=variable.placeholder?""+variable.placeholder:undefined
|
|
16
|
+
:searchBoxValue=variable.searchBoxValue?""+variable.searchBoxValue:undefined
|
|
17
|
+
:useSearch=variable.useSearch?""+variable.useSearch:undefined
|
|
18
|
+
:fieldConfigs=variable.fieldConfigs?""+variable.fieldConfigs:[]
|
|
19
|
+
@confirm=variable.onQuery?""+variable.onQuery:undefined
|
|
20
|
+
@searchBoxChange=variable.searchBoxChange?""+variable.searchBoxChange:undefined
|
|
21
|
+
)&attributes(attrs)
|
|
22
|
+
if(variable.lookupCellTemplate)
|
|
23
|
+
template(v-slot:lookup-cell="slotProps")
|
|
24
24
|
| !{variable.lookupCellTemplate}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
-var attrs = {};
|
|
2
|
-
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
-
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
-
|
|
5
|
-
div(
|
|
6
|
-
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
7
|
-
)&attributes(attrs)
|
|
1
|
+
-var attrs = {};
|
|
2
|
+
-attrs.class = variable.appearance && variable.appearance.class;
|
|
3
|
+
-attrs.style = variable.appearance && variable.appearance.style;
|
|
4
|
+
|
|
5
|
+
div(
|
|
6
|
+
id=variable.replacedId ? String(variable.replacedId) : undefined
|
|
7
|
+
)&attributes(attrs)
|
|
8
8
|
| {{content}}
|