247a13d3 by simon

默认提交

1 parent 9dc41fba
......@@ -303,8 +303,6 @@ textarea {
padding: 0;
}
.main-container {
position: relative;
margin: 0 auto;
......@@ -346,12 +344,13 @@ textarea {
// // 视频
.video-js {
background-color: transparent !important;
border-radius: $borderRadiusSmall;
background-color: transparent !important;
border-radius: $borderRadiusSmall;
}
.video-js .vjs-tech,.video-js .vjs-poster{
border-radius: $borderRadiusSmall;
.video-js .vjs-tech,
.video-js .vjs-poster {
border-radius: $borderRadiusSmall;
}
.video-js .vjs-big-play-button {
......@@ -373,7 +372,7 @@ textarea {
// vant
.v-header {
.van-cell {
padding: 16px 16px !important;
padding: 16px 16px !important;
}
.van-collapse-item__content {
......@@ -385,7 +384,6 @@ textarea {
}
}
@media (max-width: 1200px) {
.page-index {
.video-js {
......@@ -408,9 +406,9 @@ textarea {
@media (max-width: 768px) {
$fontSizeTitle: $fontSizeTitle-M;
$fontSize: $fontSize-M;
$fontSizeSmall: $fontSizeSmall-M;
.main-container{
margin-bottom: $marginMedium-M;
}
$fontSizeSmall: $fontSizeSmall-M;
.main-container {
margin-bottom: $marginMedium-M;
}
}
</style>
......
......@@ -278,6 +278,8 @@ module.exports = {
infomationImprove: {
title: "請完善您的信息",
t1: "姓名",
t1c1: "姓",
t1c2: "名",
t1Placeholder: "",
t2: "性別",
t2Placeholder: "",
......
......@@ -278,6 +278,8 @@ module.exports = {
infomationImprove: {
title: "請完善您的信息",
t1: "姓名",
t1c1: "姓",
t1c2: "名",
t1Placeholder: "",
t2: "性別",
t2Placeholder: "",
......
......@@ -277,6 +277,8 @@ module.exports = {
infomationImprove: {
title: "请完善您的信息",
t1: "姓名",
t1c1: "姓",
t1c2: "名",
t1Placeholder: "",
t2: "性别",
t2Placeholder: "",
......
......@@ -61,7 +61,6 @@ export default {
})
},
onShowDropdown(evtStr) {
console.log("evtStr:", evtStr);
this.dropdownMVisible = false;
this.loginMVisible = false;
if (evtStr == 'nav') {
......
......@@ -230,12 +230,6 @@ input {
font-size: 12px;
}
.disabled {
background-color: gray !important;
background-image: none !important;
}
@media (max-width: 768px) {
.form {
display: block;
......
......@@ -24,6 +24,16 @@ export default {
e1: "",
e2: "",
e3: ""
},
dataForm: {
},
insuranceForm: {
f1: true,
f2: true,
f3: true,
f4: true,
f5: true,
}
}
},
......
......@@ -203,11 +203,6 @@ input {
background-image: linear-gradient(to top, #000000, #ffffff), linear-gradient(to bottom, #ec6429, #ec6429);
}
.disabled {
background-color: gray !important;
background-image: none !important;
}
@media (max-width: 768px) {
.form {
&-item2 {
......
......@@ -148,6 +148,7 @@
&-item {
position: relative;
margin-bottom: 1.75rem;
padding: 0 $marginSmall;
.label {
color: $cOrange;
......
......@@ -13,9 +13,21 @@
<div class="login-tit-space-1"></div>
<div class="gird-g form">
<div class="pure-u-1 form-item">
<div class="pure-u-1 pure-u-md-1-2 form-item">
<div class="label">
<img src="@/assets/images/improve-infomation/icon-improve-infomation-user.png"> {{$t('infomationImprove.t1c1')}}
</div>
<div class="ipt-wrap">
<input class="ipt" :class="{err : errorTips.e1.length > 0}" type="text" v-model="information.cnName">
</div>
<div class="validator" v-if="errorTips.e1.length > 0 ">
<img src="@/assets/images/common/icon-notice.png" alt=""> {{errorTips.e1}}
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 form-item">
<div class="label">
<img src="@/assets/images/improve-infomation/icon-improve-infomation-user.png"> {{$t('infomationImprove.t1')}}
<img src="@/assets/images/improve-infomation/icon-improve-infomation-user.png"> {{$t('infomationImprove.t1c2')}}
</div>
<div class="ipt-wrap">
<input class="ipt" :class="{err : errorTips.e1.length > 0}" type="text" v-model="information.cnName">
......@@ -27,7 +39,7 @@
<div class="pure-u-1 form-item">
<div class="label">
<img src="@/assets/images/improve-infomation/icon-improve-infomation-user.png"> {{$t('infomationImprove.t2')}}
<img src="@/assets/images/improve-infomation/icon-improve-infomation-sex.png"> {{$t('infomationImprove.t2')}}
</div>
<div class="ipt-wrap">
<div class="down-arrow"></div>
......
......@@ -217,6 +217,11 @@
justify-content: space-between;
align-items: center;
.ipt-tel {
flex: 1;
padding-left: 1.75rem;
}
.ipt-code {
flex: 1;
padding-right: 1.75rem;
......@@ -265,7 +270,7 @@
height: 0;
}
.step{
.step {
margin-bottom: 1rem;
}
......
......@@ -65,3 +65,10 @@
.flex1 {
flex: 1;
}
.disabled {
color: $cFontGray !important;
background-color: #dcdddd !important;
background-image: none !important;
box-shadow: none !important;
}
......