Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
a18994fb
提交
a18994fb
编写于
11月 17, 2020
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
通用
上级
0bfe553e
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
10 行增加
和
158 行删除
+10
-158
app-form-json.vue
app_web/src/components/app-form-json/app-form-json.vue
+10
-158
未找到文件。
app_web/src/components/app-form-json/app-form-json.vue
浏览文件 @
a18994fb
...
@@ -48,7 +48,7 @@ export default class AppFormJson extends Vue {
...
@@ -48,7 +48,7 @@ export default class AppFormJson extends Vue {
* @type {*}
* @type {*}
* @memberof AppFormJson
* @memberof AppFormJson
*/
*/
@
Prop
()
public
option
?:
any
;
@
Prop
()
public
option
s
?:
any
;
/**
/**
* 当前值
* 当前值
...
@@ -128,9 +128,8 @@ export default class AppFormJson extends Vue {
...
@@ -128,9 +128,8 @@ export default class AppFormJson extends Vue {
return
{};
return
{};
}
}
public
getOption
():
any
{
public
getOptions
():
any
{
let
_option
=
{
let
_options
=
{
schema
:
this
.
getSchema
(),
theme
:
"bootstrap3"
,
theme
:
"bootstrap3"
,
iconlib
:
"fontawesome4"
,
iconlib
:
"fontawesome4"
,
disable_edit_json
:
true
,
disable_edit_json
:
true
,
...
@@ -140,14 +139,16 @@ export default class AppFormJson extends Vue {
...
@@ -140,14 +139,16 @@ export default class AppFormJson extends Vue {
ajax
:
true
,
ajax
:
true
,
};
};
_options
[
"schema"
]
=
this
.
getSchema
();
if
(
this
.
CurrentVal
)
{
if
(
this
.
CurrentVal
)
{
_option
[
"startval"
]
=
JSON
.
parse
(
this
.
CurrentVal
);
_option
s
[
"startval"
]
=
JSON
.
parse
(
this
.
CurrentVal
);
}
}
if
(
this
.
option
){
if
(
this
.
option
s
){
return
Object
.
assign
({},
_option
,
this
.
option
)
return
Object
.
assign
({},
_option
s
,
this
.
options
)
}
}
return
_option
;
return
_option
s
;
}
}
/**
/**
...
@@ -162,157 +163,8 @@ export default class AppFormJson extends Vue {
...
@@ -162,157 +163,8 @@ export default class AppFormJson extends Vue {
this
.
editor
.
destroy
();
this
.
editor
.
destroy
();
}
}
let
_schema
=
{
$ref
:
"#/definitions/model"
,
definitions
:
{
model
:
{
title
:
"模型"
,
headerTemplate
:
"{{ self.dataModelName }}"
,
type
:
"object"
,
format
:
"grid"
,
properties
:
{
dataModelName
:
{
title
:
"模型名"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
1
,
},
objectProperties
:
{
title
:
"对象参数集合"
,
type
:
"array"
,
format
:
"tabs"
,
uniqueItems
:
true
,
items
:
{
title
:
"对象"
,
headerTemplate
:
"{{ self.propertyName }}"
,
type
:
"object"
,
properties
:
{
propertyName
:
{
title
:
"对象"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
1
,
},
system
:
{
title
:
"系统"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
2
,
},
propertyEntity
:
{
title
:
"结构实体"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
3
,
},
propertyMappings
:
{
title
:
"对象关系映射"
,
type
:
"array"
,
format
:
"table"
,
uniqueItems
:
true
,
items
:
{
title
:
"映射"
,
type
:
"object"
,
properties
:
{
selfPropertyColumn
:
{
title
:
"列"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
1
,
},
joinPropertyName
:
{
title
:
"关联对象"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
2
,
},
joinPropertyColumn
:
{
title
:
"关联列"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
3
,
},
},
},
propertyOrder
:
4
,
},
},
},
propertyOrder
:
2
,
},
nestedDataModels
:
{
title
:
"嵌套子模型集合"
,
type
:
"array"
,
format
:
"tabs"
,
uniqueItems
:
true
,
items
:
{
title
:
"子模型"
,
$ref
:
"#/definitions/model"
,
},
propertyOrder
:
3
,
},
layerMappings
:
{
title
:
"模型上下级映射"
,
type
:
"array"
,
format
:
"table"
,
uniqueItems
:
true
,
items
:
{
title
:
"映射"
,
type
:
"object"
,
properties
:
{
selfPropertyColumn
:
{
title
:
"列"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
1
,
},
parentPropertyColumn
:
{
title
:
"父模型列"
,
type
:
"string"
,
options
:
{
grid_columns
:
4
,
},
propertyOrder
:
2
,
},
},
},
propertyOrder
:
4
,
},
},
},
},
};
let
opt
:
any
=
{
schema
:
_schema
,
theme
:
"bootstrap3"
,
iconlib
:
"fontawesome4"
,
disable_edit_json
:
true
,
display_required_only
:
true
,
disable_collapse
:
true
,
disable_array_delete_last_row
:
true
,
ajax
:
true
,
};
if
(
this
.
CurrentVal
)
{
opt
[
"startval"
]
=
JSON
.
parse
(
this
.
CurrentVal
);
}
this
.
editor
=
new
JSONEditor
(
element
,
opt
);
this
.
editor
=
new
JSONEditor
(
element
,
_this
.
getOptions
()
);
this
.
editor
.
on
(
"change"
,
()
=>
{
this
.
editor
.
on
(
"change"
,
()
=>
{
let
value
=
_this
.
editor
.
getValue
();
let
value
=
_this
.
editor
.
getValue
();
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录