|
|
@@ -730,6 +730,7 @@
|
|
|
height: 30px;
|
|
|
border: 1px solid rgb( 233, 233, 233 );
|
|
|
padding-left: 10px;
|
|
|
+ margin-top: 30px;
|
|
|
}
|
|
|
.sellOder .reply-box .reply-box-btn .modal-btn {
|
|
|
float: none;
|
|
|
@@ -1086,7 +1087,7 @@
|
|
|
</div>
|
|
|
<div class="reply-box" ng-show="showRateBoxFlag">
|
|
|
<img src="static/img/vendor/images/rate-box-del.png" ng-click="setShowRateBoxFlag(false)" alt="">
|
|
|
- <div class="vendor-modal-header">
|
|
|
+ <div class="vendor-modal-header" ng-show="boxStatus == 1 || boxStatus == 2">
|
|
|
<div class="modal-first-rate" ng-show="rateType == 'firstRate'">
|
|
|
<span>
|
|
|
<label class="check-act">
|
|
|
@@ -1142,14 +1143,14 @@
|
|
|
<input type="text" ng-model="modalTempData.modalTitle" ng-trim="false" ng-change="listenModalTitle()" ng-if="boxStatus == 3 || boxStatus == 4" class="modal-head" placeholder="请填写模板名称">
|
|
|
</div>
|
|
|
<div class="reply-box-text">
|
|
|
- <textarea ng-readonly="boxStatus == 1" ng-trim="false" ng-change="listenRateContent()" placeholder="{{boxStatus==2?'请填写您对此评价的回复':boxStatus==3||boxStatus==4?'请填写模板内容':''}}" ng-class="{'active': boxStatus != 1}" ng-model="modalTempData.rateContent"></textarea>
|
|
|
+ <textarea ng-readonly="boxStatus == 1" ng-trim="false" ng-change="listenRateContent()" placeholder="{{boxStatus==2?'请输入不超过200字的评价':boxStatus==3||boxStatus==4?'请填写模板内容':''}}" ng-class="{'active': boxStatus != 1}" ng-model="modalTempData.rateContent"></textarea>
|
|
|
<div class="add-rate-remind" ng-show="boxStatus != 1">
|
|
|
<span>{{modalTempData.rateContent.length || 0}}</span>
|
|
|
<span>/200</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="reply-box-btn">
|
|
|
- <span class="modal-btn modify-modal" ng-click="setBoxStatus(4)" ng-show="boxStatus == 1">修改模板</span>
|
|
|
+ <span class="modal-btn modify-modal" ng-click="setBoxStatus(4)" ng-show="boxStatus == 1 && modalTempData.modalTitle">修改模板</span>
|
|
|
<span class="modal-btn cancel-modal" ng-click="setShowRateBoxFlag(false)" ng-show="boxStatus == 1 || boxStatus == 2">取消</span>
|
|
|
<span class="modal-btn cancel-modal" ng-click="setBoxStatus(1)" ng-show="boxStatus == 3 || boxStatus == 4">返回上一步</span>
|
|
|
<span class="modal-btn submit-modal" ng-show="boxStatus == 3 || boxStatus == 4" ng-click="saveModal()">保存</span>
|