| 12345678910111213141516171819202122 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 加载图层 -->
- <loading wx:if="{{loading}}"></loading>
- <!-- 粘性布局的查询条件 -->
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['customerName','telephone'])}}">
- </dk-dropdown-menu>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <!-- 列表区 -->
- <dk-list list="{{tableData}}" titleCorner="orgName" title="staffName" status="flgCanLogin" collectCol="collectAmount" collectName="收款" subTitle="orgName" content="{{contentList}}" contentObj="{{contentObj}}" contentCol="flgCanLogin" footerAmount="{{footerAmount}}" footerInfo="{{footerInfo}}" bind:toDetail="toDetail" bind:toTitle="toTitle" bind:toStatus="toStatus" bind:toPoint="toPoint" routeObjName="{{routeObjName}}" buttonList="{{buttonList}}" bind:open="open"></dk-list>
- <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}</van-divider>
- <view style="height: 135rpx;"></view>
- <!-- 新建按钮 -->
- <dk-save-bottom flagTypeName="customers" totallength="{{totallength}}" bind:submit="toAdd" />
|