|
@@ -13,7 +13,8 @@
|
|
|
<div class="content">
|
|
|
<div class="preQuestion" v-for="(item,index) in checkDatas.questionMapping">
|
|
|
<div class="quest" @click="slideToggle($event,index)">
|
|
|
- <img class="sign" v-if="item.required==1" src="../images/important.svg" alt="">
|
|
|
+ <!-- <img class="sign" v-if="item.required==1" src="../images/important.svg" alt=""> -->
|
|
|
+ <span class="sign"></span>
|
|
|
<p class="title clearfix">{{index + 1 +'.'+(item.description || item.name)}}{{item.controlType==1?'(单选)':item.controlType==2?'(多选)':''}}</p>
|
|
|
<p class="result" v-if="item.valueP&&item.slide!=1">{{item.valueP}}</p>
|
|
|
<i :class="[{'slideT':item.slide}]"></i>
|
|
@@ -414,10 +415,12 @@ import $ from 'jquery';
|
|
|
.sign {
|
|
|
display: inline-block;
|
|
|
position: absolute;
|
|
|
- left: 0.16rem;
|
|
|
- top: 0.45rem;
|
|
|
- width: 0.32rem;
|
|
|
- color: red;
|
|
|
+ left: 0.22rem;
|
|
|
+ top: 0.55rem;
|
|
|
+ width: 0.14rem;
|
|
|
+ height: .14rem;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #FFAD00;
|
|
|
}
|
|
|
.order {
|
|
|
// float: left;
|
|
@@ -429,7 +432,7 @@ import $ from 'jquery';
|
|
|
}
|
|
|
.title {
|
|
|
color: #000;
|
|
|
- padding-left: .24rem;
|
|
|
+ padding-left: .22rem;
|
|
|
display: inline-block;
|
|
|
}
|
|
|
i{
|