| 123456789101112131415161718192021222324252627282930313233343536 |
- <view wx:if="{{currentTab == 0}}" class="con">
- <view class="title2">修改权限类型</view>
- <view class="buttons">
- <myButton class="button" type="primary" bindtap="switch1">主管理员</myButton>
- <myButton class="button" type="primary" bindtap="switch2">副管理员</myButton>
- </view>
- </view>
- <view wx:if="{{currentTab == 1}}" class="con">
- <view class="block">
- <view class="cate">新管理员ID</view>
- <input class="input" placeholder="可以在设置页面查看" />
- </view>
- <myButton class="button" type="primary">提交</myButton>
- </view>
- <view wx:if="{{currentTab == 2}}" class="con">
- <view class="primary-text-color text">管理管理员</view>
- <view class="block2">
- <view class="left">
- <image class="btn-icon" src="/images/Tin.png" mode="aspectFill" />
- <text>第一个组织</text>
- </view>
- <view class="primary-text-color">删除</view>
- </view>
- <!-- 之后写成组件 -->
- <view class="primary-text-color text">添加管理员</view>
- <view class="block">
- <view class="cate">新管理员ID</view>
- <input class="input" placeholder="可以在设置页面查看" />
- </view>
- <myButton class="button" type="primary">提交</myButton>
- </view>
|