Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
2364401f
提交
2364401f
编写于
9月 17, 2020
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加风格改变组件 --fix1
上级
a53b7ca0
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
146 行增加
和
22 行删除
+146
-22
app-mob-select-changeStyle.less
...pp-mob-select-changeStyle/app-mob-select-changeStyle.less
+61
-4
app-mob-select-changeStyle.vue
...app-mob-select-changeStyle/app-mob-select-changeStyle.vue
+83
-16
app-setting.vue
src/components/app-setting/app-setting.vue
+2
-2
未找到文件。
src/components/app-mob-select-changeStyle/app-mob-select-changeStyle.less
浏览文件 @
2364401f
.content {
width: 100%;
height: 100%;
overflow: auto;
}
.app-mob-select-changeStyle{
height: 100%;
background-color: #F5F6FA;
ion-list{
margin: 20px 10px;
ion-list-header{
line-height: 16
px;
padding-bottom: 5
px;
background-color: #F5F6FA;
ion-label{
font-size: 1
6
px;
font-size: 1
3
px;
}
}
ion-item{
ion-label{
font-size: 15px !important;
}
ion-radio{
--color-checked:#00CBFC;
border: 0px;
}
}
.align-boxs{
display: flex;
justify-content: space-around;
padding: 10px;
.alignbox{
position: relative;;
padding: 10px;
width: 100px;
height: 110px;
border: 2px solid #dfdfe4;
border-radius: 10px;
ion-label{
font-size: 16px;
}
.info{
margin-top:10px;
font-size: 12px;
color: #dfdfe4;
}
ion-icon{
font-size: 20px;
position: absolute;
right: 10px;
bottom: 10px;
}
}
.active{
position: relative;;
padding: 10px;
width: 100px;
height: 110px;
border: 2px solid #8181fa;
border-radius: 10px;
ion-label{
font-size: 16px;
}
.info{
margin-top:10px;
font-size: 12px;
color: #dfdfe4;
}
ion-icon{
font-size: 20px;
position: absolute;
right: 10px;
bottom: 10px;
color: #8181fa;
}
}
}
}
...
...
src/components/app-mob-select-changeStyle/app-mob-select-changeStyle.vue
浏览文件 @
2364401f
<
template
>
<div
class=
"app-mob-select-changeStyle"
>
<ion-page
:className=
"
{ 'view-container': true,'app-mob-select-changeStyle': true}">
<ion-header
v-if=
"titleStatus"
>
<ion-toolbar
class=
"ionoc-view-header"
>
<ion-buttons
slot=
"start"
>
<ion-button
@
click=
"closeView"
>
<ion-icon
name=
"chevron-back"
></ion-icon>
{{
$t
(
'app.button.back'
)
}}
</ion-button>
</ion-buttons>
<ion-title
class=
"view-title"
>
<label
class=
"title-label"
>
风格设置
</label>
</ion-title>
</ion-toolbar>
</ion-header>
<div
class=
"content"
>
<ion-list>
<ion-radio-group
:value=
"activeAlign"
>
<ion-radio-group
>
<ion-list-header>
<ion-label>
文本对齐方式
</ion-label>
</ion-list-header>
<ion-item
v-for=
"item in alignItems"
:key=
"item.index"
@
click=
"changeTextAlign"
>
<div
class=
"align-boxs"
>
<div
:class=
"
{alignbox:true,active:activeAlign == item.value}" v-for="item in alignItems" :key="item.index" @click="changeTextAlign(item)">
<ion-label>
{{
item
.
text
}}
</ion-label>
<ion-radio
slot=
"start"
:value=
"item.value"
></ion-radio>
</ion-item>
<div
class=
"info"
>
{{
item
.
info
}}
</div>
<ion-icon
name=
"checkmark-circle-outline"
></ion-icon>
</div>
</div>
</ion-radio-group>
</ion-list>
...
...
@@ -19,15 +37,13 @@
</ion-list-header>
<ion-item
v-for=
"item in naviItems"
:key=
"item.index"
@
click=
"changeNaviStyle"
>
<ion-label>
{{
item
.
text
}}
</ion-label>
<ion-radio
slot=
"
start
"
:value=
"item.value"
></ion-radio>
<ion-radio
slot=
"
end
"
:value=
"item.value"
></ion-radio>
</ion-item>
</ion-radio-group>
</ion-list>
<div
class=
"change-style-btnbox"
>
<ion-button
class=
"change-style-btn success"
@
click=
"save"
expand=
"full"
>
确定
</ion-button>
</div>
</div>
</ion-page>
</
template
>
...
...
@@ -56,8 +72,8 @@ export default class AppSelect extends Vue {
* @memberof AppMobSelectChangeStyle
*/
public
alignItems
:
Array
<
any
>
=
[
{
text
:
'左对齐'
,
value
:
'app-text-align-left'
},
{
text
:
'右对齐'
,
value
:
'app-text-align-right'
},
{
text
:
'左对齐'
,
value
:
'app-text-align-left'
,
info
:
'设置对齐方式为左对齐'
},
{
text
:
'右对齐'
,
value
:
'app-text-align-right'
,
info
:
'设置对齐方式为右对齐'
},
]
/**
...
...
@@ -66,9 +82,36 @@ export default class AppSelect extends Vue {
*/
public
naviItems
:
Array
<
any
>
=
[
{
text
:
'经典'
,
value
:
'app-navi-class'
},
{
text
:
'
创新
'
,
value
:
'app-navi-new'
}
{
text
:
'
新颖
'
,
value
:
'app-navi-new'
}
]
/**
* 生命周期
*/
public
created
()
{
this
.
thirdPartyInit
();
this
.
setViewTitleStatus
();
}
/**
* 标题状态
*
* @memberof ProductCloseMobEditViewBase
*/
public
titleStatus
:
boolean
=
true
;
/**
* 设置标题状态
*
* @memberof ProductCloseMobEditViewBase
*/
public
setViewTitleStatus
(){
const
thirdPartyName
=
this
.
$store
.
getters
.
getThirdPartyName
();
if
(
thirdPartyName
){
this
.
titleStatus
=
false
;
}
}
/**
* 生命周期mounted
* @memberof AppMobSelectChangeStyle
...
...
@@ -110,8 +153,9 @@ export default class AppSelect extends Vue {
* 点击改变文本对齐方式
* @memberof AppMobSelectChangeStyle
*/
public
changeTextAlign
(
$event
:
any
){
this
.
textAlignChange
(
$event
.
target
.
value
);
public
changeTextAlign
(
item
:
any
){
this
.
textAlignChange
(
item
.
value
);
this
.
activeAlign
=
item
.
value
;
}
/**
...
...
@@ -154,6 +198,29 @@ export default class AppSelect extends Vue {
this
.
$emit
(
'close'
);
}
/**
* 关闭视图
*
* @memberof AppMobSelectChangeStyle
*/
public
closeView
()
{
this
.
$emit
(
"close"
);
}
/**
* 第三方容器初始化
*
* @type {function}
* @memberof AppMobSelectChangeStyle
*/
protected
thirdPartyInit
(){
this
.
$viewTool
.
setViewTitleOfThirdParty
(
"风格设置"
);
this
.
$viewTool
.
setThirdPartyEvent
(
this
.
closeView
);
const
thirdPartyName
=
this
.
$store
.
getters
.
getThirdPartyName
();
if
(
thirdPartyName
){
this
.
titleStatus
=
false
;
}
}
}
</
script
>
...
...
src/components/app-setting/app-setting.vue
浏览文件 @
2364401f
...
...
@@ -27,10 +27,10 @@
<app-mob-select-changeTheme
ref=
"changeTheme"
></app-mob-select-changeTheme>
</div>
</ion-item>
<ion-item
v-if=
"settingConfig.layoutStyle"
>
<ion-item
v-if=
"settingConfig.layoutStyle"
@
click=
"openModal"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content-text"
>
风格
</div>
<ion-
button
color=
"primary"
class=
"active-text-align-style"
@
click=
"openModal"
>
风格调整
</ion-butt
on>
<ion-
icon
name=
"chevron-forward-outline"
></ion-ic
on>
</div>
</ion-item>
</ion-list>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录