communityForm.wxml 588 B

123456789
  1. <view class="container">
  2. <needs wx:if="{{type == formTypesEnum.NEEDS}}" directionData="{{directionData}}" modelData="{{modelData}}"
  3. typeData="{{typeData}}"
  4. bind:postFinish="postFinish"/>
  5. <hot wx:if="{{type == formTypesEnum.HOT}}" bind:postFinish="postFinish"/>
  6. <typical wx:if="{{type == formTypesEnum.TYPICAL}}" categoryData="{{categoryData}}" bind:postFinish="postFinish"/>
  7. <dynamic wx:if="{{type == formTypesEnum.DYNAMIC}}" bind:postFinish="postFinish"
  8. teamId="{{teamId}}" eduStuId="{{eduStuId}}" eduStuName="{{eduStuName}}"/>
  9. </view>