| 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:searchForm="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['customerName','orderNo','telephone','adddress','contractNumber'])}}">
- </dk-dropdown-menu>
- <dk-tabs active="{{active}}" list="{{tagList}}" bind:onChange="onChangeTabs"> </dk-tabs>
- </van-sticky>
- <!-- 列表区 -->
- <dk-list list="{{tableData}}" footerTag="cusFromName" title="cusName" collectCol="collectAmount" status="saleStatusName" subTitle="makeTime" content="{{contentList}}" contentObj="{{contentObj}}" 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>
- <view style="height: 200rpx;"></view>
- <!-- 新建按钮 -->
- <dk-save-bottom flagTypeName="customers" totallength="{{tableData.length}}" bind:submit="toAdd" />
|