12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <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" wx:if="{{article.filePath}}" bindtap="clickVideo">
- <image src="{{imgUrl + article.coverImage}}" mode="aspectFit" class="full"></image>
- </view>
- <view class="themerad imgbox col center" bindtap="clickAddvideo" wx:if="{{!article.filePath}}">
- <text>+</text>
- </view>
- </view>
- </view>
- <view class="borbot gapleft inleft row">
- <view>
- <text>预览图 </text>
- </view>
- <view class="row flexible wrap">
- <view class="themerad imgbox col center" wx:if="{{article.coverImage}}" bindtap="clickVideo" data-t="poster">
- <image src="{{imgUrl + article.coverImage}}" mode="aspectFit" class="full"></image>
- </view>
- <view class="themerad imgbox col center" bindtap="clickAddimg" wx:if="{{!article.coverImage}}">
- <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>
|