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.
73 lines
3.1 KiB
73 lines
3.1 KiB
<view class="header">
|
|
<image class="header-bg" src="../../../../images/work/bg.png" mode="widthFix" />
|
|
<image src="../../../../images/back.png" class="back" bind:tap="back" style=" top: {{statusHeight}}px;width: 50rpx;height: 50rpx;" bindtap="back" mode=""/>
|
|
<view class="navigation" style="height: {{navigationHeight}}px; top: {{statusHeight}}px;">
|
|
社区满意度自查
|
|
</view>
|
|
<view class="content">
|
|
<view class="h2" style="font-size: {{fontSize}};">{{agencyName}}{{monthName}}月份满意度自查</view>
|
|
<view class="tag"> <image src="../../../../images/tag.png" mode=""/> 进行中</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="body">
|
|
<view class="top">
|
|
<image src="../../../../images/work/messageBg.png" class="bg" mode=""/>
|
|
<view class="top_box">
|
|
<view>
|
|
<view class="tagB">提交人数</view>
|
|
<view class="blue"> <b>{{personQty}}</b>人 </view>
|
|
</view>
|
|
<view>
|
|
<view class="tagR">目前得分</view>
|
|
<view class="red"> <b>{{synthesisScore}}</b>分 </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bto">
|
|
<view class="th">
|
|
<view class="tr">
|
|
<view class="td">
|
|
类型
|
|
</view>
|
|
<view class="td">
|
|
满意
|
|
</view>
|
|
<view class="td">
|
|
基本满意
|
|
</view>
|
|
<view class="td">
|
|
不满意
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="tr {{index%2 == 0?'tr_bg':''}}" wx:for="{{tableData}}" wx:key="index">
|
|
<view class="td">
|
|
{{item.satisfactionCategoryName}}
|
|
</view>
|
|
<view class="td">
|
|
{{item.veryGoodQty}}
|
|
</view>
|
|
<view class="td">
|
|
{{item.goodQty}}
|
|
</view>
|
|
<view class="td" style="color:#FF502E " data-item="{{item}}" bind:tap="toDissatisfactionDetails">
|
|
{{item.badQty}} <image src="../../../../images/work/rightCri.png" mode=""/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bto_btn">
|
|
<button hover-class="btn-hover" class="btn_blue" open-type="share">分享给好友参与测评</button>
|
|
<button bind:tap="showCodeImg" class="btn_yellow">满意度自查二维码</button>
|
|
</view>
|
|
<view class="mask" wx:if="{{maskStatus}}">
|
|
<view class="bg-box">
|
|
<image src="../../../../images/cancle.png" class="cancle" mode="" bind:tap="hideCodeImg"/>
|
|
<image src="{{qrCodeImgUrl}}" style="width: 100%;" mode="" class="qrCodeImg" show-menu-by-longpress="true"/>
|
|
<view class="top20 font32">{{agencyName}}</view>
|
|
<view class="gray top20">2023年{{monthName}}月份满意度自查二维码</view>
|
|
<view class="mask_btn" bind:tap="downImage">下载二维码</view>
|
|
</view>
|
|
</view>
|
|
|
|
|