| 123456789101112131415161718192021 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <loading wx:if="{{loading}}" loadingName="{{$t['loading']}}" backgroundColor="#f2f2f2;" opacity="0.8"></loading>
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu model:searchForm="{{searchForm}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['roleName'])}}">
- </dk-dropdown-menu>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <!-- 列表区 -->
- <dk-list list="{{tableData}}" titleCorner="" title="roleName" status="displayStatus" content="{{contentList}}" collectCol="sumAccount" collectName="" contentObj="{{contentObj}}" contentCol="" 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: 200rpx;"></view>
- <!-- 新建按钮 -->
- <dk-save-bottom flagTypeName="role-add" bottomClass="{{true}}" bind:submit="toClose" bind:allClean="toAdd" />
|