<view class="page">
  <form onSubmit="" onReset="">
    <text class="title">意见反馈类型:</text>
    <view>
       <radio-group>
          <label a:for="{{typeList}}" a:for-item="type" class="type">
              <radio value="{{type.value}}" />{{type.name}}
          </label>
       </radio-group>
    </view>
    <text class="title">反馈意见</text>
    <view class="textarea">
        <textarea placeholder="您的反馈将帮助我们快速成长" maxlength="300" />
    </view>
    <view class="contact">
      联系方式<input type="text" placeholder="留下联系方式,我们将尽快与您联系" />
    </view>
    <button class="btn" type="primary" >保存</button>
  </form>
</view>