<view class="page" onTouchMove="move" onTouchEnd="stop"> <view for="" class="drag" style="display:{{drag.display}};left:{{drag.x}};top:{{drag.y}}"></view> <view class="left"> <text class="title">与会人员</text> <view class="visitor"> <text a:for="{{visitorList}}" a:for-item="visitor" a:for-index="index" > <view id="visitor{{index}}" data-id="{{visitor.signId}}" data-name="{{visitor.signName}}" onLongTap="longTap"> {{visitor.signName}} </view> </text> </view> </view> <view class="right"> <view class="seattitle" > <image src="../../../resource/images/3.png" mode="aspectFit" /> </view> <!-- <view class="seattop" a:for="{{seatList}}" a:for-item="seat"> <view class="name">{{seat.name}}</view> <image src="{{src}}" mode="seat.mode" onError="imageError" onLoad="imageLoad" /> <view class="num">{{seat.num}}</view> </view> --> <view id="top" class="seattop" a:if="{{topSeat!=null}}"> <view > <text style="color:{{topSeat.color}}">{{topSeat.name}}</text> <label >{{topSeat.num}}</label> </view> </view> <view class="noseattop" a:if="{{topSeat==null}}"> </view> <view class="seatleft" id="right{{i}}" a:for="{{leftSeatList}}" a:for-item="leftSeat" a:for-index="i"> <view > <text style="color:{{leftSeat.color}}">{{leftSeat.name}}</text> <label>{{leftSeat.num}}</label> </view> </view> <view class="seatright_box"> <view class="seatright" id="right{{i}}" a:for="{{rightSeatList}}" a:for-item="rightSeat" a:for-index="i" > <view > <label >{{rightSeat.num}}</label> <text style="color:{{rightSeat.color}}">{{rightSeat.name}}</text> </view> </view> </view> <view class="seatcenter" a:for="{{seatNum%2==0?(seatNum-2)/2:(seatNum-1)/2}}" a:for-item="centerSeat" a:for-index="i"></view> <view class="seatbottom" id="bottom" a:if="{{bottomSeat!=null}}"> <view > <label >{{bottomSeat.num}}</label> <text style="color:{{bottomSeat.color}}">{{bottomSeat.name}}</text> </view> </view> </view>