业务交流通
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.wxml 1.4KB

1234567891011121314151617181920212223242526272829
  1. <!-- pages/release/release.wxml -->
  2. <view class="release-page page-container">
  3. <view class="list-loading text-center" wx:if="{{ pageLoading }}">
  4. <van-loading size="24px">加载中...</van-loading>
  5. </view>
  6. <view wx:else>
  7. <!-- 顶部 -->
  8. <view class="section">
  9. <textarea class="section-textarea" value="{{ detailValue }}" bindinput="textareaInput" maxlength="{{ max }}" placeholder="请输入你的需求详情~ " bindblur="textareaBlur" />
  10. <view class="limit">{{min}}/{{max}}</view>
  11. </view>
  12. <view class="tags-view">
  13. <view class="title">需求类型(最少选择一个,最多可选择三个)</view>
  14. <view class="tags-item-box clearfix">
  15. <view class="tag-item {{ item.isActive }}" wx:for="{{tags}}" wx:key="index">
  16. <view class="tag" bindtap="tagSelectedChange" data-typename="{{ item.typeName }}">
  17. {{ item.typeName }}
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="submit-btn">
  23. <van-button block color="#5e73e5" round disabled="{{ !(!!detailValue && selectedTag.length > 0) }}" bind:click="releaseDemands" loading="{{ saveLoading }}">
  24. {{ businessCommunicationDemandId ? '确认修改':'发布需求'}}
  25. </van-button>
  26. </view>
  27. </view>
  28. <tabBar currentIndex="{{currentIndex}}"></tabBar>
  29. </view>