You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
2.5 KiB
Plaintext

2 years ago
<view class="mineAgencyContainer bt1" hover-class="none" hover-stop-propagation="false">
2 years ago
<view class="weui-search-bar__box weui-search-bar flex-1 fss mt12" style="background-color: hsl(0, 0%, 96%);border-radius: 17px;">
2 years ago
<i class="iconfont icon-sousuo poa cccc" style="left:9px"></i>
<input type="text" class="weui-search-bar__input flex-1 c3" style placeholder-style="color:#999;" value="{{inputVal}}" placeholder="{{'搜索代理名称'}}" bindinput="inputTyping" bindconfirm="searchKey" confirm-type="search" />
<view class="iconfont icon-qingchu1 biggerSize" wx:if="{{inputVal}}" catchtap="clearInput"></view>
2 years ago
<view class="search f14" catchtap="searchKey" style="color: var(--color-ysd);">搜索</view>
</view>
2 years ago
</view>
<view class="">
<scroll-view class="mineAgencyBody mt10" scroll-x="false" scroll-y="true" scroll-top="0" scroll-left="0" scroll-into-view scroll-with-animation="false" enable-flex enable-back-to-top="false" bindscrolltoupper bindscrolltolower bindscroll>
2 years ago
<view wx:if="{{list == null || list.length == 0}}" class="tc">
<view class="t-icon t-icon-zanwu" style="width: 80px; height: 80px; margin: 80px auto 20px"></view>
<view class="tc f14 c045">暂无记录</view>
</view>
2 years ago
<view class="fsa subItem bb1 p010" wx:for="{{list}}" hover-class="none" hover-stop-propagation="false">
<view class="fss" hover-class="none" hover-stop-propagation="false">
<image class="logoImg" src="{{item.logo}}" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view class="ml16" hover-class="none" hover-stop-propagation="false">{{item.title}}</view>
</view>
<view class="iconfont icon-gengduo2 cccc rotate90" hover-class="none" bindtap="deleteAgency" hover-stop-propagation="false"></view>
</view>
</scroll-view>
</view>
<!-- 复制确认框显示 -->
<bottom-drawer show="{{deleteAgencyShow}}" cancerShow="{{false}}" drawerType="deleteAgencyShow" bindhidedrawer="hidedrawershow" touchClose="{{true}}" class="bottomDrawer" height>
<view class hover-class="none" style="background-color:#f5f5f5" hover-stop-propagation="false">
<view class="weui-actionsheet__menu bgf">
<view aria-role="button" class="weui-actionsheet__cell cfred" bindtap="sureDelete">删除</view>
</view>
<view class="weui-actionsheet__action">
<view aria-role="button" class="weui-actionsheet__cell bgf mt8 chref pb32" bindtap="cancelDelete">取消</view>
</view>
</view>
</bottom-drawer>