25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

27 satır
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>