123456789101112131415161718192021222324252627282930 |
- <view class="bory gapleft inleft row crosscenter">
- <text>标题 </text>
- <input placeholder="请添加一个标题" bindinput="inputTitle" class="flexible"></input>
- </view>
- <view class="borbot gapleft inleft row">
- <view>
- <text>图片 </text>
- </view>
- <view class="row flexible wrap">
- <view class="themerad imgbox col center gaprt" wx:for="{{article.imgs}}" wx:key bindtap="clickImg" data-i="{{index}}">
- <image src="{{imgUrl + item.url}}" mode="aspectFit" class="full"></image>
- </view>
- <view class="themerad imgbox col center gaprt" bindtap="clickAddpic">
- <text>+</text>
- </view>
- </view>
- </view>
- <view class="borbot wrp row">
- <view>
- <text>正文 </text>
- </view>
- <view class="flexible">
- <textarea class="fullx" placeholder="文字符号限制100字之内" maxlength="100" bindinput="inputContent"></textarea>
- </view>
- </view>
- <view class="row bot maincenter flexible" style="padding-bottom: 2.4rem">
- <view class="btn danger" bindtap="clickUpload">提交审核</view>
- </view>
|