|
@@ -1,14 +1,13 @@
|
|
|
<template>
|
|
|
<popup ref="Message" :show="show">
|
|
|
<div class="ui-message">
|
|
|
- <div class="ui-message-header">
|
|
|
- <img @click="onClose" :src="`${$cdn}images/img_guestbook_close@2x.png`" alt="" />
|
|
|
- <p>{{title}}</p>
|
|
|
- </div>
|
|
|
<div class="ui-message-main">
|
|
|
- <!-- <img :src="`${$cdn}images/img_guestbook_${icon}@2x.png`" alt="" /> -->
|
|
|
+ <img :src="require('@/assets/images/icon/ic_error_24px.png')" alt="" />
|
|
|
<span>{{tips}}</span>
|
|
|
</div>
|
|
|
+ <div class="ui-message-footer">
|
|
|
+ <button @click="onClose" class="ui-button">{{okText}}</button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</popup>
|
|
|
</template>
|
|
@@ -23,8 +22,7 @@ export default {
|
|
|
return {
|
|
|
show: false,
|
|
|
duration: 0,
|
|
|
- title: "您的关注,会让我们做得更好!",
|
|
|
- tips: "留言成功!",
|
|
|
+ tips: "",
|
|
|
content: "",
|
|
|
okText: "确定",
|
|
|
ok: null,
|
|
@@ -59,72 +57,54 @@ textarea::placeholder {
|
|
|
}
|
|
|
|
|
|
.ui-message {
|
|
|
- width: 400px;
|
|
|
- height: 240px;
|
|
|
+ width: 330px;
|
|
|
+ min-height: 210px;
|
|
|
position: relative;
|
|
|
- background: #f5ede2;
|
|
|
+ background: rgba(160, 28, 38, 0.7);
|
|
|
+ border-radius: 14px;
|
|
|
padding: 20px 50px;
|
|
|
- .ui-message-header {
|
|
|
- text-align: center;
|
|
|
- margin: 0 auto;
|
|
|
- p {
|
|
|
- color: @theme;
|
|
|
- font-size: 20px;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
- img{
|
|
|
- position: absolute;
|
|
|
- right: 6px;
|
|
|
- top: 6px;
|
|
|
- width: 24px;
|
|
|
- height: 24px;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- }
|
|
|
.ui-message-main {
|
|
|
text-align: center;
|
|
|
width: 100%;
|
|
|
position: absolute;
|
|
|
- top: 55%;
|
|
|
+ top: 33px;
|
|
|
left: 50%;
|
|
|
- transform: translate(-50%,-50%);
|
|
|
+ transform: translateX(-50%);
|
|
|
+ padding-bottom: 50px;
|
|
|
>span{
|
|
|
- display: inline-block;
|
|
|
- vertical-align: middle;
|
|
|
- font-size: 14px;
|
|
|
+ display: block;
|
|
|
+ font-size: 16px;
|
|
|
+ margin-top: 20px;
|
|
|
+ color: #FCD67B;
|
|
|
}
|
|
|
img{
|
|
|
vertical-align: middle;
|
|
|
width: 52px;
|
|
|
height: 52px;
|
|
|
- margin-right: 12px;
|
|
|
}
|
|
|
}
|
|
|
.ui-message-footer {
|
|
|
text-align: center;
|
|
|
- margin-top: 20px;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ border-top: rgba(252, 214, 123, 0.2) 1px solid;
|
|
|
+ width: 100%;
|
|
|
.ui-button {
|
|
|
display: inline-block;
|
|
|
cursor: pointer;
|
|
|
font-size: 14px;
|
|
|
- width: 104px;
|
|
|
- height: 38px;
|
|
|
- line-height: 38px;
|
|
|
- border: none;
|
|
|
- background: url("@{cdn}img_guestbook_btnbg_normal@2x.png") no-repeat
|
|
|
- center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- color: #382e2c;
|
|
|
+ width: 100%;
|
|
|
+ height: 48px;
|
|
|
+ line-height: 48px;
|
|
|
+ color: #FCD67B;
|
|
|
+
|
|
|
&:first-of-type {
|
|
|
margin-right: 30px;
|
|
|
}
|
|
|
}
|
|
|
- .submit {
|
|
|
- background: url("@{cdn}img_guestbook_btnbg_first@2x.png") no-repeat center
|
|
|
- center;
|
|
|
- background-size: 100% 100%;
|
|
|
- color: #f5ede2;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
</style>
|