Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
963b7c4e
提交
963b7c4e
编写于
12月 05, 2020
作者:
hudan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增日历面板自定义插件及国际化内容
上级
a5aa5bc5
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
86 行增加
和
0 行删除
+86
-0
app-register.ts
src/app-register.ts
+9
-0
app-calendar-itemlayoutpanel.less
...alendar-itemlayoutpanel/app-calendar-itemlayoutpanel.less
+31
-0
app-calendar-itemlayoutpanel.vue
...calendar-itemlayoutpanel/app-calendar-itemlayoutpanel.vue
+38
-0
components_en_US.ts
src/locale/lanres/components/components_en_US.ts
+4
-0
components_zh_CN.ts
src/locale/lanres/components/components_zh_CN.ts
+4
-0
未找到文件。
src/app-register.ts
浏览文件 @
963b7c4e
...
...
@@ -107,6 +107,11 @@ import AppInputIp from './components/app-input-ip/app-input-ip.vue';
import
Loadding
from
'./directive/loadding/loadding'
;
import
AppColorSpan
from
'./components/app-color-span/app-color-span.vue'
;
import
AppColorPicker
from
'./components/app-color-picker/app-color-picker.vue'
;
import
AppListItemlayoutpanel
from
'./components/app-list-itemlayoutpanel/app-list-itemlayoutpanel.vue'
;
import
AppDataCard
from
'./components/app-data-card/app-data-card.vue'
;
import
AppCalendarItemlayoutpanel
from
'./components/app-calendar-itemlayoutpanel/app-calendar-itemlayoutpanel.vue'
;
import
AppRadioButton
from
'./components/app-radio-button/app-radio-button.vue'
;
// 全局挂载UI实体服务注册中心
window
[
'uiServiceRegister'
]
=
uiServiceRegister
;
...
...
@@ -229,5 +234,9 @@ export const AppComponents = {
v
.
directive
(
'loading'
,
Loadding
);
v
.
component
(
'app-color-span'
,
AppColorSpan
);
v
.
component
(
'app-color-picker'
,
AppColorPicker
);
v
.
component
(
'app-list-itemlayoutpanel'
,
AppListItemlayoutpanel
);
v
.
component
(
'app-data-card'
,
AppDataCard
);
v
.
component
(
'app-calendar-itemlayoutpanel'
,
AppCalendarItemlayoutpanel
);
v
.
component
(
'app-radio-button'
,
AppRadioButton
);
},
};
\ No newline at end of file
src/components/app-calendar-itemlayoutpanel/app-calendar-itemlayoutpanel.less
0 → 100644
浏览文件 @
963b7c4e
.app-calendar-itemlayoutpanel{
display: flex;
.item-icon{
width: 40px;
height: 40px;
margin-right: 10px;
img{
width: 100%;
height: 100%;
border-radius: 50%;
}
}
.item-text{
.title{
font-size: 18px;
font-weight: bold;
}
.srfdescription{
margin-top: 14px;
margin-bottom: 14px;
}
.date{
.start{
margin:0 6px;
}
.end{
margin:0 6px;
}
}
}
}
src/components/app-calendar-itemlayoutpanel/app-calendar-itemlayoutpanel.vue
0 → 100644
浏览文件 @
963b7c4e
<
template
>
<div
class=
"app-calendar-itemlayoutpanel"
>
<div
class=
"item-icon"
>
</div>
<div
class=
"item-text"
>
<div
class=
"title"
>
{{
inputData
.
title
}}
</div>
<div
class=
"srfdescription"
>
{{
inputData
.
srfdescription
}}
</div>
<div
class=
"date"
>
{{
$t
(
'components.AppCalendarItemlayoutpanel.from'
)
}}
<span
class=
"start"
>
{{
inputData
.
start
}}
</span>
{{
$t
(
'components.AppCalendarItemlayoutpanel.to'
)
}}
<span
class=
"end"
>
{{
inputData
.
end
}}
</span>
</div>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Component
,
Vue
,
Prop
,
Model
,
Watch
}
from
'vue-property-decorator'
;
import
{
Subject
,
Subscription
}
from
'rxjs'
;
@
Component
({
})
export
default
class
AppCalendarItemlayoutpanel
extends
Vue
{
/**
* 面板数据对象
*
* @type {*}
* @memberof AppCalendarItemlayoutpanel
*/
@
Prop
()
public
inputData
?:
any
;
}
</
script
>
<
style
lang=
"less"
>
@import './app-calendar-itemlayoutpanel.less';
</
style
>
\ No newline at end of file
src/locale/lanres/components/components_en_US.ts
浏览文件 @
963b7c4e
...
...
@@ -389,5 +389,9 @@ export default {
dayAgo
:
'days ago'
,
monthsAgo
:
'months ago'
,
yearsAgo
:
'years ago'
},
AppCalendarItemlayoutpanel
:{
from
:
'from'
,
to
:
'to'
}
};
\ No newline at end of file
src/locale/lanres/components/components_zh_CN.ts
浏览文件 @
963b7c4e
...
...
@@ -390,5 +390,9 @@ export default {
dayAgo
:
'天前'
,
monthsAgo
:
'月前'
,
yearsAgo
:
'年前'
},
AppCalendarItemlayoutpanel
:{
from
:
'从'
,
to
:
'至'
}
};
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录