You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.7 KiB

5 years ago
<!--pages/info/groupOrderInfo/index.wxml-->
<title title="团队信息"></title>
5 years ago
<view class="box" wx:if="{{info && info.list && info.list.state==0}}">
<view class="code">{{info.list.state_text}}</view>
<view class="code">{{info.list.team_name}}</view>
5 years ago
<view class="top-tips">
<view class="top-tip">预约人数:{{info.list.member_num}}</view>
<view class="line"></view>
<view class="top-tip">填写信息人数:{{info.list.members_count}}</view>
</view>
5 years ago
<button open-type="share" style="width:100%" class="top-btn">立即邀请</button>
5 years ago
<view class="top-btn full" bindtap="order">提交订单</view>
</view>
5 years ago
<view wx:else class="box">
<view class="code">{{info.list.state_text}}</view>
<view class="code">成功预约人数</view>
<view class="code" style="margin-top:50rpx">{{info.list.members_count}}</view>
</view>
5 years ago
<view class="box" wx:if="{{info && info.list}}">
5 years ago
<view class="box-title" wx:if="{{info.list.state==0}}">已填写信息团员</view>
<view class="box-title" wx:else>预约成功团员</view>
5 years ago
<view class="search-box">
<view class="iconfont icon-sousuo"></view>
<input bindinput="changeKeywords" placeholder="请输入关键字查找" />
<view class="btn" bindtap="search">搜索</view>
</view>
<view class="item" wx:for="{{info.list.members}}">
<view class="item-top">
<text>{{item.name}} {{item.mobile}}</text>
<text>{{item.id_number}}</text>
</view>
5 years ago
<view class="item-btns" wx:if="{{info && info.type==1 && info.list.state==0}}">
5 years ago
<view bindtap="edit" data-item="{{item}}" class="item-btn">修改</view>
<view class="item-btn" bindtap="delItem" data-index="{{index}}" data-item="{{item}}">删除</view>
</view>
</view>
</view>