| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 加载图层 -->
- <loading wx:if="{{loading}}"></loading>
- <!-- 粘性布局的查询条件 -->
- <van-sticky scroll-top="0">
- <van-search model:value="{{ searchText }}" bind:change="onSearchText" bind:search="doSearch" use-action-slot placeholder="搜索 客户名称/地址/标签/电话/备注">
- </van-search>
- <view style="display: flex; padding: 4vw; background: white;">
- <view class="image-frame">
- <van-image round width="20rpx" height="24rpx" src="/static/img/Vector.png" />
- </view>
- <view>沈阳蒙娜丽莎红星美凯龙专营店</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="itemData" 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="submit" data-key="出库回退" data-type="save" type="info">
- 新建员工
- </van-button>
- </view>
- <view style="width: 50%;padding: 4vw;">
- <van-button round size="large" color="#20365E" custom-style="height:88rpx;" bind:click="toadd" data-key="出库回退" data-type="save" type="default">
- 新建子部门
- </van-button>
- </view>
- </view>
- </view>
- <!-- 弹窗 编辑/新建-->
- <van-popup show="{{showPopup}}" position="bottom" bind:close="onClosePopup" custom-class="function-pop-class">
- <view style="background-color:#F8F9FD;color:#1B365D;font-size: 17px;font-weight: 600;display: flex;justify-content: left;align-items: center;padding: 40rpx;">
- <view>新建部门</view>
- </view>
-
- <van-field disabled="{{false}}" model:value="{{ addForm.orgCode }}" input-width="200rpx" input-class="dk-cell-value-class" input-align="left" label-class="nomal-label" maxlength="50" value="{{'PP00001'}}" input-align="right" label="部门编码" placeholder="{{'请输入' + '品牌编码'}}" autosize border="{{ false }}">
- </van-field>
-
- <van-field label-class="nomal-label" input-width="200rpx" input-class="dk-cell-value-class" input-align="right" data-key="supplier-list" maxlength="25" type="text" value="{{addForm.parentOrgName}}" label="上级部门" placeholder="请选择" autosize border="{{ false }}" right-icon="arrow" color="#95A8CB" catchtap="openChooseOrg" readonly="{{true}}">
- </van-field>
- <van-field disabled="{{false}}" model:value="{{ addForm.orgName }}" input-width="200rpx" input-class="dk-cell-value-class" input-align="left" label-class="nomal-label" maxlength="50" value="{{'PP00001'}}" input-align="right" label="部门名称" placeholder="{{'请输入' + '品牌编码'}}" autosize border="{{ false }}">
- </van-field>
-
- <van-field label-class="nomal-label" input-width="200rpx" input-class="dk-cell-value-class" input-align="right" data-key="supplier-list" maxlength="25" type="text" value="{{'' }}" label="可用仓库" placeholder="看" autosize border="{{ false }}" right-icon="arrow" color="#95A8CB" catchtap="openSingle" readonly="{{true}}">
- </van-field>
- <van-field label-class="nomal-label" input-width="200rpx" input-class="dk-cell-value-class" input-align="right" data-key="supplier-list" maxlength="25" type="text" value="{{'' }}" label="可用资金账号" placeholder="请选择" autosize border="{{ false }}" right-icon="arrow" color="#95A8CB" catchtap="openSingle" readonly="{{true}}">
- </van-field>
-
- <van-field disabled="{{false}}" disabled="{{true}}" input-width="200rpx" input-class="dk-cell-value-class" input-align="left" label-class="nomal-label" maxlength="50" value="{{'PP00001'}}" input-align="right" label="备注" placeholder="{{'请输入' + '品牌编码'}}" autosize border="{{ false }}">
- </van-field>
-
-
-
- <view style="display: flex; padding:35rpx 34rpx 62rpx 34rpx;">
- <view style="width:48%">
- <van-button size="large" plain round color="#1B365D" custom-style="height:88rpx;" bind:click="onClosePopup" type="default">取消
- </van-button>
- </view>
- <view style="width: 4%;"></view>
- <view style="width:48%;">
- <van-button size="large" round color="#1B365D" custom-style="height:88rpx;" bind:click="addSave" type="default">保存
- </van-button>
- </view>
- </view>
- </van-popup>
|