12345678910111213141516171819202122232425262728 |
- <view class="item">
- <label>今转出资金</label>
- <input placeholder-style="color:rgba(203, 203, 203, 1)" type="text" placeholder="请填写"/>
- <text>万 <text>(单位)</text></text>
- </view>
- <view class="item">
- <label>今转入资金</label>
- <input placeholder-style="color:rgba(203, 203, 203, 1)" type="text" placeholder="请填写"/>
- <text>万 <text>(单位)</text></text>
- </view>
- <view class="item">
- <label>账户截图</label>
- <view wx:for='{{today_stock_img}}' class="stock_imgs">
- <image src="{{item}}" bindtap="prview" data-src="{{item}}"></image>
- <view class="edit">
- <text bindtap="del" data-id='{{index}}'>删除</text>
- </view>
- </view>
- <view class="upload" bindtap="uploadImg">
- <image mode="widthFix" src="../../images/img.png"></image>
- 上传图片
- </view>
- </view>
- <view class="item">
- <label>规则</label>
- <text style="margin: 0;">入金比赛成绩稀释,出金保持成绩不变</text>
- </view>
- <button bindtap="post">提交</button>
|