| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!-- 前台导入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,['orgId'])}}">
- </dk-dropdown-menu>
- <view style="display: flex; padding: 4vw; background: white;">
- <view class="image-frame">
- <van-image round width="20rpx" height="24rpx" src="/static/image/Vector.png" />
- </view>
- <view>todo: 沈阳蒙娜丽莎红星美凯龙专营店</view>
- </view>
- </van-sticky>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <!-- 列表 -->
-
- <dk-tree-form treeList="{{tableData}}" idKey="orgId" nameKey="orgName" parentIdKey="parentId" itemListKey="children" id="treeSelect" bind:onclick="treeClick"></dk-tree-form>
- <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}</van-divider>
- <view style="height: 135rpx;"></view>
- <!-- 底部按钮相关 -->
- <view class="bottom-class-org">
- <view style="padding:10rpx 34rpx 61rpx 43rpx; display: flex;">
- <view style="width: 50%;padding: 4vw;">
- <van-button round plain size="large" color="#1B365D" custom-style="height:88rpx;" bind:click="toAddStaff" type="info">
- {{$t['newStaff']}}
- </van-button>
- </view>
- <view style="width: 50%;padding: 4vw;">
- <van-button round size="large" color="#20365E" custom-style="height:88rpx;" bind:click="toadd" type="default">
- {{$t['newSubOrg']}}
- </van-button>
- </view>
- </view>
- </view>
-
- <!-- 新建 框 -->
- <dk-popup routeObjName="{{routeObjName}}" type="basic"
- priceCol="pricePromotion" subCol="desc"
- title="{{$t['newDepartment']}}" defaultFlagTitle="默认" value="{{form}}" show="{{showPop}}"
- contentObj="{{popContent}}" bind:commit="editItems" validFlag ="{{true}}">
- </dk-popup>
|