index.wxml 675 B

123456789
  1. <!--nova-werun/pages/send-circle/index.wxml-->
  2. <nav type="back" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
  3. <view class="all" style="height: {{contentHeight}}rpx;">
  4. <view class="{{fileList.length==0&&!inputValue?'send2':'send'}}" bindtap="send">发送</view>
  5. <view class="text">
  6. <textarea placeholder="输入内容" class="textarea" style="height: {{textareaHeight}}rpx;" maxlength='300' auto-height='true' bindinput="onInput" value="{{inputValue}}"></textarea>
  7. </view>
  8. <upload style="width: 50%;" bind:onChangeFile="picture" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}" maxCount="12" />
  9. </view>