|
|
@@ -80,11 +80,6 @@
|
|
|
text-align: center;
|
|
|
margin: 35px auto;
|
|
|
}
|
|
|
- .add-rate .submitBox label {
|
|
|
- font-size: 14px;
|
|
|
- font-weight: normal;
|
|
|
- margin-right: 22px;
|
|
|
- }
|
|
|
.add-rate .submitBox >span.submit-btn {
|
|
|
font-size: 14px;
|
|
|
padding: 4px 17px;
|
|
|
@@ -92,6 +87,27 @@
|
|
|
color: #fff;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+ .add-rate .submitBox .rate-status {
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ .add-rate .submitBox .rate-status i {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .add-rate .submitBox .rate-status .no-rate {
|
|
|
+ width: 12px;
|
|
|
+ height: 12px;
|
|
|
+ display: inline-block;
|
|
|
+ background: #ccc;
|
|
|
+ border: 1px solid;
|
|
|
+ border-radius: 2px;
|
|
|
+ position: relative;
|
|
|
+ top: 1px;
|
|
|
+ }
|
|
|
+ .add-rate .submitBox .rate-status span:last-child {
|
|
|
+ color: #999;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
.add-rate table thead tr.line02 {
|
|
|
background: #f5f8fe;
|
|
|
}
|
|
|
@@ -321,11 +337,11 @@
|
|
|
</tbody>
|
|
|
</table>
|
|
|
<div class="submitBox">
|
|
|
- <label class="check-active">
|
|
|
- <input ng-model="isSetTop" type="checkbox" id="check-act" class="ng-pristine ng-untouched ng-valid" disabled ng-checked="isAnony" >
|
|
|
- <label for="check-act"></label>
|
|
|
- <span style="font-size: 14px; color: black">匿名评价</span>
|
|
|
- </label>
|
|
|
+ <div class="rate-status">
|
|
|
+ <i class="fa fa-check-square" aria-hidden="true" ng-if="isAnony"></i>
|
|
|
+ <span class="no-rate" ng-if="!isAnony"></span>
|
|
|
+ <span>匿名评价</span>
|
|
|
+ </div>
|
|
|
<span class="submit-btn" ng-click="submit()">提交</span>
|
|
|
</div>
|
|
|
</div>
|