Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
dcb1a0f5
提交
dcb1a0f5
编写于
3月 21, 2022
作者:
邱定凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 更新编辑器模板
上级
cac6d3a2
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
15 行增加
和
11 行删除
+15
-11
date-picker.hbs
...sources/templ/r7/@macro/front-end/editors/date-picker.hbs
+1
-1
input-ip.hbs
.../resources/templ/r7/@macro/front-end/editors/input-ip.hbs
+1
-1
app-date-picker.vue
...7/app_{{apps}}/src/components/editors/app-date-picker.vue
+5
-5
app-input-ip.vue
...l/r7/app_{{apps}}/src/components/editors/app-input-ip.vue
+2
-2
app-raw.vue
.../templ/r7/app_{{apps}}/src/components/editors/app-raw.vue
+6
-2
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/front-end/editors/date-picker.hbs
浏览文件 @
dcb1a0f5
...
...
@@ -25,7 +25,7 @@
:disabled=
"state.detailsModel.
{{
item
.
name
}}
.disabled"
{{/if}}
{{#if
item
.
psEditor
.
readOnly
}}
:read
o
nly=
"
{{
item
.
psEditor
.
readOnly
}}
"
:read
O
nly=
"
{{
item
.
psEditor
.
readOnly
}}
"
{{/if}}
{{#
eq
item
.
psEditor
.
editorType
"DATEPICKEREX"
}}
dateFormat=
"YYYY-MM-DD HH:mm:ss"
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/front-end/editors/input-ip.hbs
浏览文件 @
dcb1a0f5
...
...
@@ -22,7 +22,7 @@
:disabled=
"state.detailsModel.
{{
item
.
name
}}
.disabled"
{{/if}}
{{#if
item
.
psEditor
.
readOnly
}}
:read
o
nly=
"
{{
item
.
psEditor
.
readOnly
}}
"
:read
O
nly=
"
{{
item
.
psEditor
.
readOnly
}}
"
{{/if}}
{{#if
(
or
(
eq
ctrlType
'form'
)
(
eq
ctrlType
'panel'
))
}}
:value=
"state.data.
{{
item
.
psEditor
.
name
}}
"
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/editors/app-date-picker.vue
浏览文件 @
dcb1a0f5
...
...
@@ -57,7 +57,7 @@ interface DatePickerProps {
*
* @type {boolean}
*/
read
o
nly
?:
boolean
;
read
O
nly
?:
boolean
;
}
interface
EditorEmit
{
...
...
@@ -66,7 +66,7 @@ interface EditorEmit {
const
props
=
withDefaults
(
defineProps
<
DatePickerProps
>
(),
{
disabled
:
false
,
read
o
nly
:
false
,
read
O
nly
:
false
,
dateType
:
'date'
,
dateFormat
:
'yyyy-MM-dd HH:mm:ss'
,
placeholder
:
'请选择日期'
,
...
...
@@ -94,7 +94,7 @@ onMounted(() => {
v-model:value="curValue"
:format="dateFormat"
:placeholder="placeholder"
:inputReadOnly="read
o
nly"
:inputReadOnly="read
O
nly"
:disabled="disabled"
@change="onChange"
/>
...
...
@@ -106,7 +106,7 @@ onMounted(() => {
:format="dateFormat"
picker="date"
:placeholder="placeholder"
:inputReadOnly="read
o
nly"
:inputReadOnly="read
O
nly"
:disabled="disabled"
@change="onChange"
/>
...
...
@@ -118,7 +118,7 @@ onMounted(() => {
v-model:value="curValue"
:format="dateFormat"
:placeholder="placeholder"
:inputReadOnly="read
o
nly"
:inputReadOnly="read
O
nly"
:disabled="disabled"
@change="onChange"
/>
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/editors/app-input-ip.vue
浏览文件 @
dcb1a0f5
...
...
@@ -20,7 +20,7 @@ interface InputIpProps{
/**
* @description 只读
*/
read
o
nly
?:
boolean
;
read
O
nly
?:
boolean
;
}
interface
EditorEmit
{
...
...
@@ -29,7 +29,7 @@ interface EditorEmit{
const
props
=
withDefaults
(
defineProps
<
InputIpProps
>
(),
{
disabled
:
false
,
read
o
nly
:
false
read
O
nly
:
false
})
const
emit
=
defineEmits
<
EditorEmit
>
()
const
ipData
:
Ref
<
any
>
=
ref
([]);
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/editors/app-raw.vue
浏览文件 @
dcb1a0f5
...
...
@@ -17,12 +17,12 @@ interface RawProps {
contentType
?:
"RAW"
|
"HTML"
|
"IMAGE"
|
"MARKDOWN"
;
/**
* @description
输入框类型
* @description
图标类
*/
iconClass
?:
string
;
/**
* @description
输入框类型
* @description
图片路径
*/
imgPath
?:
string
;
...
...
@@ -35,6 +35,10 @@ interface RawProps {
* @description 直接内容样式
*/
rawStyle
?:
IParam
;
/**
* @description
*/
data
?:
IParam
;
}
interface
EditorEmit
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录