publish.wxml 839 B

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