123456789101112131415161718 |
- <zan-panel title='课程名称:{{ course_name }}\n讲师姓名:{{ teacher }}'>
- <form bindsubmit="formSubmit">
- <view>
- <view wx:for="{{ titles }}">
- <zan-cell title="{{ item.name }}">
- <zan-field placeholder="(满分10.0)" type="digit" name="{{ item.id }}">
- </zan-field>
- </zan-cell>
- </view>
- <zan-cell></zan-cell>
- <zan-cell></zan-cell>
- <zan-button-group>
- <!-- <zan-button type="primary" bindtap="onSubmit">提交</zan-button> -->
- <button formType="submit" type='primary' class='submit-btn'>提交</button>
- </zan-button-group>
- </view>
- </form>
- </zan-panel>
|