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.

26 lines
982 B

  1. <!--components/share/share.wxml-->
  2. <view style="display: flex;">
  3. <image class="navi" src="/asset/img/navi.png" bindtap="onRet"></image>
  4. <view style="padding: 0;margin: 0;width: 1px;height:700px;background-color: #7B8B6F;"></view>
  5. <view>
  6. <view class="share">
  7. <view class="title">计划分享</view>
  8. </view>
  9. <view>
  10. <button class="share-button" bindtap="genPic">点击生成行程总结</button>
  11. </view>
  12. <view>
  13. <editor class="share-editor" id="pic"></editor>
  14. </view>
  15. <view style="display: flex;">
  16. <view wx:for="{{list}}" wx:for-item="item" wx:for-index="idx">
  17. <view bindtap="switchFun" id="{{idx}}">
  18. <image src="{{item.path}}" class="share-img" style="padding-inline: 25px;"></image>
  19. <view class="share-text">{{item.text}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>