123456789101112131415161718 |
- <!--pages/publish/publish.wxml-->
- <!-- 导航栏 -->
- <view class='nav-wrap' style='height: {{height*2 + 20}}px;'>
- <view class='nav-title' style='line-height: {{height*2 + 44}}px;'>优团小栈</view>
- </view>
- <view style="height: {{height*2 + 20}}px;width: 10rpx;"></view>
- <view class="pub-top">
- <button class="pub-but-one" bindtap="navgo" data-url="/pages/announce/announce?type=add">创建新拼团</button>
- <button class="pub-but-two" bindtap="navgo" data-url="/pages/copypastgroup/copypastgroup">复制往期拼团</button>
- </view>
- <view class="pub-line">
- <view class="pub-line-1"></view>
- <p>我发布的拼团</p>
- <view class="pub-line-2"></view>
- </view>
- <view class="pub-orders">
- <order-card wx:for="{{pintuan}}" wx:key="index" cardData="{{item}}" data-id="{{item.id}}" bindtap="navToPinTuanDetail"></order-card>
- </view>
|