disabled="item.isshow">
<view style="border-bottom: 1rpx solid #d5d5d5;" class="uni-list-cell"
hover-class="uni-list-cell-hover" @click="View_click(item)">
<view class="uni-media-list">
<image class="uni-media-list-logo" :src="item.StoreDoorPhoto"></image>
<view class="uni-media-list-body">
<view class="uni-media-list-text-top">{{ item.Title }}
</view>
<view class="uni-media-list-text-bottom" style="right:40rpx">
<view class="uni-flex uni-row">
<text style="-webkit-flex: 1;flex: 1;"> 申请人:{{item.ApplicantName}}
{{item.ApplicantPhone}}</text>
<text style="-webkit-flex: 1;flex: 1;color: #007AFF;"
v-if="item.state =='1'">审核中...</text>
<text style="-webkit-flex: 1;flex: 1;color: green;"
v-if="item.state =='2'">审核通过</text>
<text style="-webkit-flex: 1;flex: 1;color: red;"
v-if="item.state =='3'">审核未通过</text>
<!-- <view class="flex-item" style="color: #007AFF;margin-right:60rpx;"
@click="Edit_onClick(item)">修改</view>
<view class="flex-item" style="color: #007AFF;margin-right:60rpx;"
@click="View_click(item)">详情</view> -->
</view>
</view>
</view>
</view>
</view>
</uni-swipe-action-item>
</uni-swipe-action>
</block>
TaoHuang (作者)
HbuilderX 是用的 uni-swipe-action 示例使用没问题 但是一道我项目就报TypeError: Cannot read properties of undefined (reading 'querySelector') at view.umd.min.js:1 但是他不影响我使用 这个at后面的js包我项目里也没得 不知道啥情况 循环输出值 只要有一个uni-swipe-action-item 就会出现一次这个
2023-09-03 11:41