| 123456789101112131415161718192021 |
- <!-- 前台导入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,['orderNo','telephone','adddress'])}}">
- </dk-dropdown-menu>
- <dk-tabs active="{{active}}" list="{{tagList}}" bind:onChange="onChangeTabs"> </dk-tabs>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <!-- 列表区 -->
- <dk-list list="{{tableData}}" contentCol="intoTypeName" title="supplierName" status="intoTypeName" content="{{contentList}}" contentObj="{{contentObj}}" footerAmount="{{footerAmount}}" footerInfo="{{footerInfo}}" bind:toDetail="toDetail" routeObjName="{{routeObjName}}" buttonList="{{buttonList}}" bind:toPoint="toPoint" bind:open="open"></dk-list>
- <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}~</van-divider>
- <view style="height: 180rpx;"></view>
- <!-- 新建按钮 -->
- <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{false}}" btnRightFlag="{{true}}" buttonList="{{buttonFootList}}" contentList="{{contentnFootList}}" bind:open="addOther"></dk-save-button>
|