first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<view class="list_wrap content" wx:if="{{ searchList.length != 0 }}">
<view class="list_item" wx:for="{{searchList}}" wx:key="thing_id" data-id="{{ item.thing_id }}" bindtap="enterInfo">
<view class="img">
<image src="{{ item.thing_img }}"></image>
<view class="{{ item.thing_status == 1 ? 'over' : '' }}">
{{
item.thing_type == 1
? item.thing_status == 1 ? '已认领' : ''
: item.thing_status == 1 ? '已寻回' : ''
}}
</view>
</view>
<view class="title">{{ item.thing_title }}</view>
<view wx:if="{{showDesc}}" class="desc van-ellipsis">{{ item.thing_introduce }}</view>
<block wx:else></block>
<view class="user">
<image src="{{ item.user_portrait }}"></image>
<view class="name">{{ item.user_name }}</view>
</view>
</view>
</view>
<view wx:else class="ondata">
<image src="../../images/img/noLogin.png"></image>
<view class="tips">无数据</view>
</view>