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

<script>
  export default {
    data() {
      return {
H
hdx 已提交
54
        nickname: '',
55
        gender: '0',
H
hdx 已提交
56
        age: 18,
H
hdx 已提交
57
        loves: ['0'],
H
hdx 已提交
58
        switch: true,
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        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>
  .page {
    flex: 1;
    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 已提交
105
  .btn-submit {
106 107 108
    margin-right: 5px;
  }

H
hdx 已提交
109
  .btn-reset {
110 111 112 113 114 115 116 117 118 119 120 121
    margin-left: 5px;
  }

  .result {
    margin-top: 30px;
  }

  .textarea {
    margin-top: 5px;
    background-color: #fff;
  }
</style>