form.uvue 3.1 KB
Newer Older
1
<template>
2
  <!-- #ifdef APP -->
雪洛's avatar
雪洛 已提交
3
  <scroll-view class="scroll-view">
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  <!-- #endif -->
    <view class="page">
      <form @submit="onFormSubmit" @reset="onFormReset">
        <view class="uni-form-item">
          <view class="title">姓名</view>
          <input class="uni-input" name="nickname" :value="nickname" placeholder="请输入姓名" />
        </view>
        <view class="uni-form-item">
          <view class="title">性别</view>
          <radio-group name="gender" class="flex-row">
            <view class="group-item">
              <radio value="0" :checked="gender=='0'" /><text>男</text>
            </view>
            <view class="group-item">
              <radio value="1" :checked="gender=='1'" /><text>女</text>
            </view>
          </radio-group>
        </view>
        <view class="uni-form-item">
          <view class="title">爱好</view>
          <checkbox-group name="loves" class="flex-row">
            <view class="group-item">
              <checkbox value="0" :checked="loves.indexOf('0')>-1" /><text>读书</text>
            </view>
            <view class="group-item">
              <checkbox value="1" :checked="loves.indexOf('1')>-1" /><text>写字</text>
            </view>
          </checkbox-group>
        </view>
        <view class="uni-form-item">
          <view class="title">年龄</view>
          <slider name="age" :value="age" :show-value="true"></slider>
        </view>
        <view class="uni-form-item">
          <view class="title">保留选项</view>
          <view>
            <switch name="switch" :checked="switch" />
41 42
          </view>
        </view>
43 44 45 46 47 48 49 50 51
        <view class="uni-btn-v flex-row">
          <button class="btn btn-submit" form-type="submit" type="primary">Submit</button>
          <button class="btn btn-reset" type="default" form-type="reset">Reset</button>
        </view>
      </form>
      <view class="result">提交的表单数据</view>
      <textarea class="textarea" :value="formDataText" :maxlength="-1" :auto-height="true"></textarea>
    </view>
  <!-- #ifdef APP -->
52
  </scroll-view>
53
  <!-- #endif -->
54 55 56 57 58 59
</template>

<script>
  export default {
    data() {
      return {
H
hdx 已提交
60
        nickname: '',
61
        gender: '0',
H
hdx 已提交
62
        age: 18,
H
hdx 已提交
63
        loves: ['0'],
H
hdx 已提交
64
        switch: true,
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
        formData: {} as UTSJSONObject
      }
    },
    computed: {
      formDataText() : string {
        return JSON.stringify(this.formData)
      }
    },
    methods: {
      onFormSubmit: function (e : FormSubmitEvent) {
        this.formData = e.detail.value
      },
      onFormReset: function (_ : FormResetEvent) {
        this.formData = {}
      }
    }
  }
</script>

<style>
85
  .scroll-view {
86
    flex: 1;
87 88 89
  }

  .page {
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    padding: 15px;
  }

  .flex-row {
    flex-direction: row;
  }

  .uni-form-item {
    padding: 15px 0;
  }

  .title {
    margin-bottom: 10px;
  }

  .group-item {
    flex-direction: row;
    margin-right: 20px;
  }

  .btn {
    flex: 1;
  }

H
hdx 已提交
114
  .btn-submit {
115 116 117
    margin-right: 5px;
  }

H
hdx 已提交
118
  .btn-reset {
119 120 121 122 123 124 125 126 127
    margin-left: 5px;
  }

  .result {
    margin-top: 30px;
  }

  .textarea {
    margin-top: 5px;
128
    padding: 5px;
129 130 131
    background-color: #fff;
  }
</style>