1234567891011121314151617181920212223 |
- <view class="add">
- <navigator class="box" url="#" bindtap="handleCallBack">
- <view class="content">
- <image style="height: 48rpx; width: 48rpx; background: aqua; margin-right: 30rpx;" />
- <view class="text">添加联系人{{types}}</view>
- <van-icon size='14' color='#D2D2D2' style="margin-right: 30rpx;" name="arrow" />
- </view>
- </navigator>
- <navigator wx:if="{{isGroup}}" class="box" url="#" bindtap="addGroup">
- <view class="content">
- <image style="height: 48rpx; width: 48rpx; background: aqua; margin-right: 30rpx;" />
- <view class="text">添加群组</view>
- <van-icon size='14' color='#D2D2D2' style="margin-right: 30rpx;" name="arrow" />
- </view>
- </navigator>
- </view>
- <van-dialog use-slot title="添加群组" show="{{ show }}" showCancelButton confirmButtonText='确定' confirm-button-color='var(--assist)' bind:confirm='handleAddGroup' bind:cancel='onClose'>
- <view class="group-box">
- <input type="text" placeholder="请输入群组名称" bindinput="inputName" value="{{groupName}}" class="group-name" />
- </view>
- </van-dialog>
- <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />
|