| 1234567891011121314151617181920 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='../../../utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <loading wx:if="{{loading}}" loadingName="加载中" backgroundColor="#f2f2f2;" opacity="0.8"></loading>
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu model:searchForm="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['customerName','telephone'])}}">
- </dk-dropdown-menu>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{dataList.length<=0}}" description="暂无数据" />
- <!-- 列表区 -->
- <dk-list list="{{dataList}}" titleCorner="salesChannelName" title="customerName" status="displayStatus" subTitle="makeTime" content="{{contentList}}" contentObj="{{contentObj}}" contentCol="displayStatus" 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">到底了~</van-divider>
- <view style="height: 135rpx;"></view>
- <!-- 新建按钮 -->
- <dk-save-bottom flagTypeName="customers" submitFlag="{{Customer_Add}}" totallength="{{totallength}}" bind:submit="toAdd" />
|