Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
aa4db965
提交
aa4db965
编写于
7月 03, 2020
作者:
neko
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
delete
上级
72097f34
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
0 行增加
和
195 行删除
+0
-195
app-theme.less
app_CRM/src/components/app-theme/app-theme.less
+0
-21
app-theme.vue
app_CRM/src/components/app-theme/app-theme.vue
+0
-174
未找到文件。
app_CRM/src/components/app-theme/app-theme.less
已删除
100644 → 0
浏览文件 @
72097f34
.app-theme{
/*** BRGIN:主题选择框样式 ***/
.app-app-theme {
.app-theme-color {
display: flex;
.app-theme-item {
width: 30px;
height: 30px;
margin-right: 5px;
}
.active {
border: 2px solid red;
}
}
.ivu-form-item {
border-top: 1px solid #eee;
margin-bottom: 10px;
}
}
/*** END:主题选择框样式 ***/
}
\ No newline at end of file
app_CRM/src/components/app-theme/app-theme.vue
已删除
100644 → 0
浏览文件 @
72097f34
<
template
>
<div
class=
'app-theme'
>
<poptip
:title=
"$t('components.appTheme.caption.theme')"
popper-class=
'app-app-theme'
placement=
'bottom-end'
:width=
"Object.is($i18n.locale, 'zh-CN') ? 180 : 250"
>
<a>
<icon
class=
'app-theme-icon'
type=
'md-settings'
:size=
"22"
/>
</a>
<template
slot=
'content'
>
<div
class=
'app-theme-color'
>
<template
v-for=
"(theme, index) in defaultThemes"
>
<tooltip
:content=
"theme.title"
:key=
"index"
>
<div
:key=
"index"
:class=
"
{ 'active': selectTheme == theme.tag, 'app-theme-item': true }"
:style="{ 'background': theme.color }"
@click="themeChange(theme.tag)">
</div>
</tooltip>
</
template
>
</div>
<div>
<i-form
label-position=
'left'
>
<form-item
:label=
"$t('components.appTheme.caption.font')"
>
<i-select
:value=
"selectFont"
size=
'small'
:style=
"{ width: Object.is($i18n.locale, 'zh-CN') ? '100px' : '130px' }"
@
on-change=
"fontChange"
transfer
>
<
template
v-for=
"font in fontFamilys"
>
<i-option
:value=
"font.value"
:key=
"font.value"
>
{{
$t
(
`components.appTheme.fontFamilys.${font.label
}
`
)
}}
<
/i-option
>
<
/template
>
<
/i-select
>
<
/form-item
>
<
/i-form
>
<
/div
>
<
/template
>
<
/poptip
>
<
/div
>
<
/template
>
<
script
lang
=
'ts'
>
import
{
Component
,
Vue
}
from
'vue-property-decorator'
;
@
Component
({
}
)
export
default
class
AppTheme
extends
Vue
{
/**
* 所选择的主题
*
* @type {*
}
* @memberof AppTheme
*/
selectTheme
:
any
=
''
;
/**
* 激活主题
*
* @type {*
}
* @memberof AppTheme
*/
public
activeTheme
:
any
;
/**
* 主题集合
*
* @type {Array<any>
}
* @memberof AppTheme
*/
defaultThemes
:
Array
<
any
>
=
[
{
tag
:
'app-default-theme'
,
title
:
'light'
,
color
:
'#f6f6f6'
,
}
,
{
title
:
'Blue'
,
tag
:
'app_theme_blue'
,
color
:
'#6ba1d1'
}
,
{
title
:
'Dark Blue'
,
tag
:
'app_theme_darkblue'
,
color
:
'#606d80'
}
];
/**
* 所选择的字体
*
* @type {*
}
* @memberof AppTheme
*/
public
selectFont
:
any
=
''
;
/**
* 字体集合
*
* @memberof AppTheme
*/
public
fontFamilys
=
[
{
label
:
'MicrosoftYaHei'
,
value
:
'Microsoft YaHei'
,
}
,
{
label
:
'SimHei'
,
value
:
'SimHei'
,
}
,
{
label
:
'YouYuan'
,
value
:
'YouYuan'
,
}
,
];
/**
* 挂载元素事件
*
* @memberof AppTheme
*/
public
mounted
()
{
if
(
localStorage
.
getItem
(
'theme-class'
))
{
this
.
selectTheme
=
localStorage
.
getItem
(
'theme-class'
);
}
else
{
this
.
selectTheme
=
'app-default-theme'
;
}
if
(
localStorage
.
getItem
(
'font-family'
))
{
this
.
selectFont
=
localStorage
.
getItem
(
'font-family'
);
}
else
{
this
.
selectFont
=
'Microsoft YaHei'
;
}
}
/**
* 主题变化
*
* @param {*
}
val
* @memberof AppTheme
*/
public
themeChange
(
val
:
any
)
{
if
(
!
Object
.
is
(
this
.
activeTheme
,
val
))
{
this
.
selectTheme
=
val
;
localStorage
.
setItem
(
'theme-class'
,
val
);
this
.
$router
.
app
.
$store
.
commit
(
'setCurrentSelectTheme'
,
val
);
}
}
/**
* 字体变化
*
* @param {*
}
val
* @memberof AppTheme
*/
public
fontChange
(
val
:
any
)
{
if
(
!
Object
.
is
(
this
.
selectFont
,
val
))
{
this
.
selectFont
=
val
;
localStorage
.
setItem
(
'font-family'
,
val
);
this
.
$router
.
app
.
$store
.
commit
(
'setCurrentSelectFont'
,
val
);
}
}
}
<
/script
>
<
style
lang
=
"less"
>
@
import
'./app-theme.less'
;
<
/style>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录