Commit 0716ea6a by 陈玉桐

fix 报名按钮置灰

parent 2bc50ae8
......@@ -26,7 +26,8 @@
<img :src="detailImgUrl">
</div>
<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 class="tipDialog" v-show="tipDialogShow">
<div class="tipDialogCon">
......@@ -293,12 +294,17 @@ export default {
text-align: center;
font-size: 18px;
color: #FFFFFF;
background-color: #F7B500;
height: 38px;
width: 250px;
line-height: 38px;
border-radius: 19px;
}
.canApplyButton{
background-color: #F7B500;
}
.noApplyButton{
background-color: #ccc;
}
}
#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