Browse Source

打分bug修复 -刘绍文 -2020.5.29

feature/v2.0
liushaowen 6 years ago
parent
commit
2162296944
  1. 4
      epdc-resident-mp-yushan/pages/property/property.wxml

4
epdc-resident-mp-yushan/pages/property/property.wxml

@ -48,9 +48,9 @@
<view class="info-detail">我的物业评分:</view>
<view class="info-detail" style="width:59%;display:inline-flex" wx:if="{{projectInfo.propertyId != undefined}}">
<view class="scoreInput" style="margin-top:25rpx">
<input class="scoreInput" value="{{projectInfo.userScore==''?showSubmit?tempScore:'未打分':projectInfo.userScore}}" type="number" disabled="{{!showSubmit}}" bindinput="handleScoreInput" focus="{{showSubmit}}"></input>
<input class="scoreInput" value="{{projectInfo.userScore===''?showSubmit?tempScore:'未打分':projectInfo.userScore}}" type="number" disabled="{{!showSubmit}}" bindinput="handleScoreInput" focus="{{showSubmit}}"></input>
</view>
<view wx:if="{{!showSubmit}}" class="scoreBtn" bindtap="changeScore">{{projectInfo.userScore==''?'打分':'修改'}}</view>
<view wx:if="{{!showSubmit}}" class="scoreBtn" bindtap="changeScore">{{projectInfo.userScore===''?'打分':'修改'}}</view>
<view wx:else class="scoreBtn" bindtap="submitScore">确定</view>
</view>
</view>

Loading…
Cancel
Save