123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view style="background-color:#fff;margin-top:20rpx">
- <block wx:for='{{data}}' wx:key='{{index}}'>
- <view class="top {{index==5?'border':''}}">
- <view style="width:260rpx;font-size:26rpx;color:#666;">{{item.title}}</view>
- <view class="assess-img">
- <view class="assess">
- <block wx:for='{{items}}' wx:for-index='ind' wx:for-item='it' wx:key='{{ind}}'>
- <image wx:if='{{ind<=item.ind}}' data-index="{{index}}" data-ind='{{ind}}' src="/images/ypj.png"></image>
- <image wx:else data-index="{{index}}" data-ind='{{ind}}' src="/images/wpj.png"></image>
- </block>
- </view>
- <view class="text">{{item.name}}</view>
- </view>
- </view>
- </block>
- </view>
- <view style="background-color:#fff;margin-top:20rpx;">
- <view class="content">
- <text>
- <text style="font-size:24rpx;color:#999;">部门#</text>
- <text style="font-size:24rpx;color:#33ad37">{{assess.deptName}}</text>
- </text>
- <text style="margin-left:40rpx;">
- <text style="font-size:24rpx;color:#999;">事项#</text>
- <text style="font-size:24rpx;color:#33ad37">{{assess.serviceName}}</text>
- </text>
- </view>
- </view>
- <view style="background-color:#fff;">
- <view class="content">
- <view style="font-size:26rpx;color:#666;">评价内容:</view>
- <view style="line-height:50rpx;padding:30rpx 0rpx;color:#333;">
- " {{assess.evaluateContent}} "
- </view>
- <view class="assessTime">
- {{assess.evaluateTime}}
- </view>
- </view>
- </view>
- <!-- <view style="background-color:#fff;margin-top:20rpx;">
- <view class="content">
- <text style="line-height:50rpx">评价部门:{{assess.deptName}}</text>
- </view>
- <view class="content">
- <text style="line-height:50rpx">评价事项:{{assess.serviceName}}</text>
- </view>
- <view class="content">
- <text style="line-height:50rpx">评价时间:{{assess.evaluateTime}}</text>
- </view>
- </view> -->
- <!-- <button catchtap="submit">提交</button> -->
|