Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
55bb21b2
提交
55bb21b2
编写于
8月 07, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
3ec071e0
变更
7
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
168 行增加
和
49 行删除
+168
-49
package.json
app_Web/package.json
+7
-7
pnpm-lock.yaml
app_Web/pnpm-lock.yaml
+42
-42
app-register.ts
app_Web/src/app-register.ts
+2
-0
ibiz-span-link.tsx
.../components/editor/span/ibiz-span-link/ibiz-span-link.tsx
+108
-0
index.ts
app_Web/src/components/editor/span/index.ts
+1
-0
index.ts
app_Web/src/provider/editor/index.ts
+1
-0
span-provider.ts
app_Web/src/provider/editor/span-provider.ts
+7
-0
未找到文件。
app_Web/package.json
浏览文件 @
55bb21b2
...
...
@@ -13,13 +13,13 @@
"dependencies"
:
{
"@floating-ui/dom"
:
"^1.0.11"
,
"@ibiz-template/command"
:
"^0.0.1-beta.50"
,
"@ibiz-template/controller"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/core"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/model"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/runtime"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/service"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/theme"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/vue-util"
:
"^0.0.1-beta.9
5
"
,
"@ibiz-template/controller"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/core"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/model"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/runtime"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/service"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/theme"
:
"^0.0.1-beta.9
6
"
,
"@ibiz-template/vue-util"
:
"^0.0.1-beta.9
6
"
,
"@ibiz/dynamic-model-api"
:
"^2.1.24"
,
"@riophae/vue-treeselect"
:
"^0.4.0"
,
"dayjs"
:
"^1.11.7"
,
...
...
app_Web/pnpm-lock.yaml
浏览文件 @
55bb21b2
此差异已折叠。
点击以展开。
app_Web/src/app-register.ts
浏览文件 @
55bb21b2
...
...
@@ -104,6 +104,7 @@ import {
IBizPickerDropDown
,
IBizRadio
,
IBizSpan
,
IBizSpanLink
,
NotSupportedEditor
,
IBizGridInput
,
IBizGridCheckbox
,
...
...
@@ -204,6 +205,7 @@ export const AppRegister = {
// 注册编辑器组件
v
.
component
(
'GridEditor'
,
GridEditor
);
v
.
component
(
'IBizSpan'
,
IBizSpan
);
v
.
component
(
'IBizSpanLink'
,
IBizSpanLink
);
v
.
component
(
'IBizInput'
,
IBizInput
);
v
.
component
(
'IBizInputNumber'
,
IBizInputNumber
);
v
.
component
(
'IBizCheckbox'
,
IBizCheckbox
);
...
...
app_Web/src/components/editor/span/ibiz-span-link/ibiz-span-link.tsx
0 → 100644
浏览文件 @
55bb21b2
import
{
ref
,
defineComponent
,
Ref
,
watch
,
computed
}
from
'vue'
;
import
{
getSpanProps
,
useNamespace
}
from
'@ibiz-template/vue-util'
;
import
dayjs
from
'dayjs'
;
import
'@ibiz-template/theme/style/components/editor/ibiz-span-link/ibiz-span-link.scss'
;
import
{
CodeListItem
}
from
'@ibiz-template/service'
;
export
const
IBizSpanLink
=
defineComponent
({
name
:
'IBizSpanLink'
,
props
:
getSpanProps
(),
setup
(
props
)
{
const
ns
=
useNamespace
(
'span-link'
);
const
c
=
props
.
controller
;
const
text
:
Ref
<
string
>
=
ref
(
''
);
const
codeList
=
c
.
model
.
codeList
;
// 值分隔符
let
valueSeparator
=
','
;
if
(
codeList
&&
codeList
.
valueSeparator
)
{
valueSeparator
=
codeList
.
valueSeparator
;
}
watch
(
()
=>
props
.
value
,
(
newVal
,
oldVal
)
=>
{
if
(
newVal
!==
oldVal
)
{
if
(
newVal
==
null
)
{
text
.
value
=
''
;
return
;
}
if
(
c
.
valueFormat
)
{
text
.
value
=
dayjs
(
newVal
).
format
(
c
.
valueFormat
);
}
else
{
text
.
value
=
`
${
newVal
}
`
;
}
if
(
c
.
unitName
)
{
text
.
value
+=
c
.
unitName
;
}
}
},
{
immediate
:
true
,
},
);
// 代码表数据
const
items
=
ref
<
readonly
CodeListItem
[]
>
([]);
if
(
codeList
)
{
watch
(
()
=>
props
.
data
,
newVal
=>
{
c
.
loadCodeList
(
newVal
).
then
(
_codeList
=>
{
items
.
value
=
_codeList
;
});
},
{
immediate
:
true
,
deep
:
true
,
},
);
}
/** 代码表转换后文本 */
const
codeListText
=
computed
(()
=>
{
if
(
!
codeList
||
!
props
.
value
||
items
.
value
.
length
===
0
)
{
return
undefined
;
}
if
(
codeList
.
codeItemValueNumber
)
{
return
items
.
value
.
find
(
item
=>
item
.
value
===
props
.
value
);
}
const
values
=
(
props
.
value
as
string
).
split
(
valueSeparator
);
const
selects
=
items
.
value
.
filter
(
item
=>
values
.
includes
(
item
.
value
as
string
&
Number
),
);
return
selects
.
map
(
item
=>
item
.
text
).
join
(
valueSeparator
);
});
const
openLinkView
=
async
()
=>
{
await
c
.
openLinkView
(
props
.
data
);
};
return
{
ns
,
text
,
codeListText
,
openLinkView
,
};
},
render
()
{
let
text
=
''
;
if
(
this
.
codeListText
!=
null
)
{
text
=
this
.
codeListText
as
string
;
}
else
if
(
this
.
text
!=
null
)
{
text
=
this
.
text
;
}
return
(
<
span
class=
{
[
this
.
ns
.
b
(),
this
.
disabled
?
this
.
ns
.
m
(
'disabled'
)
:
''
,
this
.
readonly
?
this
.
ns
.
m
(
'readonly'
)
:
''
,
]
}
>
<
a
onClick=
{
this
.
openLinkView
}
>
{
text
}
</
a
>
</
span
>
);
},
});
app_Web/src/components/editor/span/index.ts
浏览文件 @
55bb21b2
export
{
IBizSpan
}
from
'./ibiz-span/ibiz-span'
;
export
{
IBizGridSpan
}
from
'./ibiz-grid-span/ibiz-grid-span'
;
export
{
IBizSpanLink
}
from
'./ibiz-span-link/ibiz-span-link'
;
app_Web/src/provider/editor/index.ts
浏览文件 @
55bb21b2
...
...
@@ -21,6 +21,7 @@ export function presetEditorProvider(): void {
}
// 标签
editorRegister
.
register
(
'SPAN'
,
new
SpanEditorProvider
());
editorRegister
.
register
(
'SPAN_LINK'
,
new
SpanEditorProvider
(
'SPAN_LINK'
));
// 输入框
const
textBoxEditorProvider
=
new
TextBoxEditorProvider
();
...
...
app_Web/src/provider/editor/span-provider.ts
浏览文件 @
55bb21b2
...
...
@@ -19,6 +19,13 @@ export class SpanEditorProvider implements IEditorProvider {
gridEditor
:
string
=
'IBizGridSpan'
;
constructor
(
editorType
?:
string
)
{
if
(
editorType
===
'SPAN_LINK'
)
{
this
.
formEditor
=
'IBizSpanLink'
;
this
.
gridEditor
=
'IBizSpanLink'
;
}
}
async
createController
(
editorModel
:
SpanEditorModel
,
parentController
:
FormItemController
|
GridEditItemController
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录