1234567891011121314151617181920212223242526272829 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="main" style="height:{{infoHeight}}px;">
- <view class="tianjia">
- <button class="button" bindtap="addTo">添加</button>
- </view>
- <view class="one">
- <view class="list">
- <view class="two" wx:key="item" wx:for="{{alreadyList}}">
- <view class="left">
- <view class="fourright4">
- <view class="fourright1_2">
- <view class="fourright1_2t"><text>{{item.blue_name}}</text></view>
- <view class="fourright1_2i">
- <text class="fourtext6-1">{{item.blue_branch||0}}</text>
- <text class="fourtext8-1">:</text>
- <text class="fourtext7-1">{{item.red_branch||0}}</text>
- </view>
- <view class="fourright1_2t"><text>{{item.red_name}}</text></view>
- </view>
- </view>
- </view>
- <view class="right">
- <text class="wei" bindtap="modify" data-id="{{item._id}}">维护</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </mobile-main>
|