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.
28 lines
2.1 KiB
Plaintext
28 lines
2.1 KiB
Plaintext
<view class="mineAgencyContainer" hover-class="none" hover-stop-propagation="false">
|
|
<view class="weui-search-bar__box flex-1 fss" style="background-color: #f5f5f5;border-radius: 17px;">
|
|
<i class="iconfont icon-sousuo poa" style="left:12px"></i>
|
|
<input type="text" class="weui-search-bar__input flex-1 c3" style placeholder-style="color:#999;" value="{{inputVal}}" placeholder="{{'搜索代理名称'}}" bindinput="inputTyping" bindconfirm="searchKey" auto-focus confirm-type="search" />
|
|
<view class="iconfont icon-qingchu1 biggerSize" wx:if="{{inputVal}}" catchtap="clearInput"></view>
|
|
</view>
|
|
<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>
|
|
<view class="fsa subItem" 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>
|