[improvement] Dialog: optimize style (#717)

This commit is contained in:
neverland 2018-10-09 13:52:45 +08:00 committed by GitHub
parent c40a55d007
commit 2e2879a6e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,8 @@
import Page from '../../common/page';
import Dialog from '../../dist/dialog/dialog';
const message = '有赞是一家零售科技公司,致力于成为商家服务领域里最被信任的引领者';
Page({
data: {
show: false,
@ -15,7 +17,7 @@ Page({
onClickAlert() {
Dialog.alert({
title: '标题',
message: '内容'
message
});
},
@ -25,14 +27,14 @@ Page({
onClickAlert2() {
Dialog.alert({
message: '内容'
message
});
},
onClickConfirm() {
Dialog.confirm({
title: '标题',
message: '内容'
message
});
},

View File

@ -8,7 +8,8 @@
background-color: @white;
&__header {
padding: 15px 0 0;
font-weight: 500;
padding-top: 25px;
text-align: center;
&--isolated {
@ -17,12 +18,13 @@
}
&__message {
padding: 20px;
padding: 25px;
line-height: 1.5;
&--has-title {
color: @gray-darker;
font-size: 14px;
padding-top: 12px;
color: @gray-darker;
}
}
@ -44,7 +46,7 @@
&__confirm {
&,
&:active {
color: @red !important;
color: @blue !important;
}
}