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.
 
 

27 lines
982 B

<!--components/share/share.wxml-->
<view style="display: flex;">
<image class="navi" src="/asset/img/navi.png" bindtap="onRet"></image>
<view style="padding: 0;margin: 0;width: 1px;height:700px;background-color: #7B8B6F;"></view>
<view>
<view class="share">
<view class="title">计划分享</view>
</view>
<view>
<button class="share-button" bindtap="genPic">点击生成行程总结</button>
</view>
<view>
<editor class="share-editor" id="pic"></editor>
</view>
<view style="display: flex;">
<view wx:for="{{list}}" wx:for-item="item" wx:for-index="idx">
<view bindtap="switchFun" id="{{idx}}">
<image src="{{item.path}}" class="share-img" style="padding-inline: 25px;"></image>
<view class="share-text">{{item.text}}</view>
</view>
</view>
</view>
</view>
</view>