Commit 0716ea6a by 陈玉桐

fix 报名按钮置灰

parent 2bc50ae8
...@@ -26,7 +26,8 @@ ...@@ -26,7 +26,8 @@
<img :src="detailImgUrl"> <img :src="detailImgUrl">
</div> </div>
<div id="applyButtonBox"> <div id="applyButtonBox">
<span @click="toApply">立即报名</span> <span @click="toApply" class="canApplyButton" v-if="qualifications==1">立即报名</span>
<span class="noApplyButton" v-else>立即报名</span>
</div> </div>
<div class="tipDialog" v-show="tipDialogShow"> <div class="tipDialog" v-show="tipDialogShow">
<div class="tipDialogCon"> <div class="tipDialogCon">
...@@ -293,12 +294,17 @@ export default { ...@@ -293,12 +294,17 @@ export default {
text-align: center; text-align: center;
font-size: 18px; font-size: 18px;
color: #FFFFFF; color: #FFFFFF;
background-color: #F7B500;
height: 38px; height: 38px;
width: 250px; width: 250px;
line-height: 38px; line-height: 38px;
border-radius: 19px; border-radius: 19px;
} }
.canApplyButton{
background-color: #F7B500;
}
.noApplyButton{
background-color: #ccc;
}
} }
#shareWrap{ #shareWrap{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment