锦水居民端小程序
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.
 

41 lines
1.7 KiB

<view class="publish-evaluation">
<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 class="satisify-content">
<textarea
maxlength="99"
value="{{textareaValue}}"
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}}">
</evaluation-callback>