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.
25 lines
1.3 KiB
25 lines
1.3 KiB
<view class="problem-list">
|
|
<view class="problem-item" bind:tap="gotopage" data-obj="{{item}}" wx:for="{{data[tabValue]}}" wx:key="index" wx:if="{{index<3}}">
|
|
<view class="frequency">
|
|
<view class="frequency_title">
|
|
<image style="height: 36rpx; width: 36rpx;" src="https://elink-esua-epdc.oss-cn-qingdao.aliyuncs.com/epmet-saas/dev/20250107/98ae411b86df48529139259c58c8e748.png"></image>
|
|
<view class="workOrde">工单号:{{item.amount}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="right-con">
|
|
<view class="right-con-txt">
|
|
{{item.content}}
|
|
</view>
|
|
<view class="right-con-address">
|
|
<block wx:if="{{tabValue === 'mobileEvent'}}">
|
|
<image src="../../../../images/statistics/avatar.png" mode="widthFix" class="icon" />
|
|
<text class="right-con-address-txt"> {{item.mobile}}</text>
|
|
</block>
|
|
<block wx:else>
|
|
<image src="../../../../images/statistics/address.png" mode="widthFix" class="icon" />
|
|
<text class="right-con-address-txt"> {{item.name ? item.name : ''}} {{item.address}}</text>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|