test.wxml 1.3 KB

12345678910111213141516171819202122
  1. <!-- 前台导入wxmlUtil.wxs -->
  2. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  3. <!-- 加载图层 -->
  4. <loading wx:if="{{loading}}"></loading>
  5. <!-- 粘性布局的查询条件 -->
  6. <van-sticky scroll-top="0">
  7. <!-- 查询条件 -->
  8. <dk-dropdown-menu model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['customerName','telephone'])}}">
  9. </dk-dropdown-menu>
  10. </van-sticky>
  11. <!-- 暂无数据 -->
  12. <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
  13. <!-- 列表区 -->
  14. <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>
  15. <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}</van-divider>
  16. <view style="height: 135rpx;"></view>
  17. <!-- 新建按钮 -->
  18. <dk-save-bottom flagTypeName="customers" totallength="{{totallength}}" bind:submit="toAdd" />