市北党建引领小程序初始化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

49 lines
2.1 KiB

<view class="publish-evaluation">
<picker class="satisify_solve" range="{{solveList}}" bindchange='handleChangeSolve'>
<view class="header">
<view>处理结果</view>
<view class="solve">{{solutionInfo == '01'?'解决':solutionInfo == '02'?'基本解决':solutionInfo == '03'?'未解决':''}}></view>
</view>
</picker>
<view class="content">
<view class="satisify">
<view class="header">满意度评价</view>
<view class="satisify-btn">
<view class="type">
<image bindtap="chooseSatisifyType" data-type="notSatisify" src="{{satisifyType == 'notSatisify' ? notSatisifySelected : notSatisify}}" />
<view style="color: {{satisifyType == 'notSatisify' ? '#666' : '#999'}}">不满意</view>
</view>
<view class="type">
<image bindtap="chooseSatisifyType" data-type="normalSatisify" src="{{satisifyType == 'normalSatisify' ? normalSatisifySelected : normalSatisify}}" />
<view style="color: {{satisifyType == 'normalSatisify' ? '#666' : '#999'}}">基本满意</view>
</view>
<view class="type">
<image bindtap="chooseSatisifyType" data-type="verySatisify" src="{{satisifyType == 'verySatisify' ? verySatisifySelected : verySatisify}}" />
<view style="color: {{satisifyType == 'verySatisify' ? '#666' : '#999'}}">非常满意</view>
</view>
</view>
</view>
<view wx:if="{{ !evaluationCallbackVisible }}" class="satisify-content">
<textarea
maxlength="99"
value="{{textareaValue}}"
bindblur="bindTextareaValue"
bindinput="bindTextareaValue"
placeholder="请您对处理结果进行满意度评价,并可以填写您的建议"
placeholder-class="textarea-satisify">
</textarea>
</view>
<view class="publish-evaluation-btn">
<button bindtap="publishEvaluation" hover-class="hover-btn">发表评价</button>
</view>
</view>
</view>
<evaluation-callback
evaluationCallbackVisible="{{evaluationCallbackVisible}}"
satisifyType="{{satisifyType}}"
formPage="{{ formPage }}">
</evaluation-callback>