1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view class="container">
- <view class="title">您遇到了哪方面的问题</view>
- <view class="radio-box">
- <view class="radio-view {{index == curRadioIndex ? 'curRadio' : ''}}" wx:for="{{radioList}}" wx:key="index" data-index="{{index}}" bindtap="getRadio">
- {{item.name}}
- </view>
- </view>
- <view class="change-view">
- <view class="curSchool" wx:if="{{radioType == 'school'}}">当前学校:智慧汉阳校区</view>
- <view class="picker-view" wx:elif="{{radioType == 'select'}}">
- <view class="section">
- <view class="section__title">请选择板块:</view>
- <picker bindchange="bindPickerChange" value="{{plateIndex}}" range="{{plateList}}">
- <view class="picker">
- {{plateList[plateIndex]}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <view class="line"></view>
- <view class="title">问题描述</view>
- <textarea class="textarea" placeholder="请详细描述你遇到的问题与建议..." maxlength="200"></textarea>
- <view class="line"></view>
- <view class="title">上传图片</view>
- <view class="uploadImg-task-view">
- <view class="my-img-view" wx:for="{{1}}" wx:key="index">
- <view class="new-task-img">
- <image src="/images/logo.png"></image>
- </view>
- <view class="del-btn">X</view>
- </view>
- <view class="upload-btn" bindtap="uploadTap">
- <view style="margin-top:30rpx">
- <image src="/images/addFile.png"></image>
- <view>添加图片</view>
- </view>
- </view>
- </view>
- <view class="submit-btn">提交</view>
- </view>
|