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.
|
|
|
|
<!--pages/activity/huawei/upload/index.wxml-->
|
|
|
|
|
<title title="作品上传"></title>
|
|
|
|
|
<image lazy-load class="topimg" src="https://static.ticket.sz-trip.com/xcxImages/huawei/uploadtop.png" mode="widthFix"></image>
|
|
|
|
|
<view class="input-box">
|
|
|
|
|
<view class="input-item">
|
|
|
|
|
<text>作品标题</text>
|
|
|
|
|
<input type="text" bindinput="changeTitle" placeholder="标题长度限制15个中文字符" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="input-item">
|
|
|
|
|
<text>选择分类</text>
|
|
|
|
|
<picker mode="selector" value="{{typeIndex}}" range="{{types}}" range-key="title" bindchange="changeType">
|
|
|
|
|
<view class="picker">
|
|
|
|
|
<view class="areatext">{{typeIndex==-1?'请选择':types[typeIndex].title}}</view>
|
|
|
|
|
<view class="iconfont icon-xia"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</picker>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="input-item">
|
|
|
|
|
<text>拍摄时间</text>
|
|
|
|
|
<picker mode="date" value="{{date}}" start="2015-09-01" end="2022-09-01" bindchange="bindDateChange">
|
|
|
|
|
<view class="picker">
|
|
|
|
|
<view class="areatext">{{!date?'请选择':date}}</view>
|
|
|
|
|
<view class="iconfont icon-xia"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</picker>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="input-item">
|
|
|
|
|
<text>拍摄地点</text>
|
|
|
|
|
<input type="text" bindinput="changeAddress" placeholder="请输入您所上传照片的拍摄地点" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tip1">上传图片</view>
|
|
|
|
|
<image lazy-load wx:if="{{img}}" class="uploadimg" bindtap="uploadImg" src="{{img}}" mode="aspectFill"></image>
|
|
|
|
|
<image lazy-load wx:else class="uploadimg" bindtap="uploadImg" src="https://static.ticket.sz-trip.com/xcxImages/huawei/uploadimg.png" mode="widthFix"></image>
|
|
|
|
|
<view class="tip1">作品描述</view>
|
|
|
|
|
<textarea bindinput="changeContent" placeholder="请添加您作品的描述(最多300字)" class="textarea"></textarea>
|
|
|
|
|
<image lazy-load bindtap="submit" class="uploadbtn" src="https://static.ticket.sz-trip.com/xcxImages/huawei/uploadbtn.png" mode="widthFix"></image>
|
|
|
|
|
<view class="tip2">一个分类的作品多次提交,平台只保留最近上传的作品</view>
|