rate.wxml 657 B

123456789101112131415161718
  1. <zan-panel title='课程名称:{{ course_name }}\n讲师姓名:{{ teacher }}'>
  2. <form bindsubmit="formSubmit">
  3. <view>
  4. <view wx:for="{{ titles }}">
  5. <zan-cell title="{{ item.name }}">
  6. <zan-field placeholder="(满分10.0)" type="digit" name="{{ item.id }}">
  7. </zan-field>
  8. </zan-cell>
  9. </view>
  10. <zan-cell></zan-cell>
  11. <zan-cell></zan-cell>
  12. <zan-button-group>
  13. <!-- <zan-button type="primary" bindtap="onSubmit">提交</zan-button> -->
  14. <button formType="submit" type='primary' class='submit-btn'>提交</button>
  15. </zan-button-group>
  16. </view>
  17. </form>
  18. </zan-panel>