textarea.uvue 6.3 KB
Newer Older
1
<script>
雪洛's avatar
雪洛 已提交
2
import { ItemType } from '@/components/enum-data/enum-data'
3 4
export default {
	data() {
5 6 7 8 9 10 11
		return {
			adjust_position_boolean: false,
			show_confirm_bar_boolean: false,
			fixed_boolean: false,
			auto_height_boolean: false,
			confirm_hold_boolean: false,
			focus_boolean: false,
张磊 已提交
12 13 14
			auto_focus_boolean: false,
      default_value:"",
      maxlength:-1,
15
			inputmode_enum: [{"value":1,"name":"text"},{"value":2,"name":"decimal"},{"value":3,"name":"numeric"},{"value":4,"name":"tel"},{"value":5,"name":"search"},{"value":6,"name":"email"},{"value":7,"name":"url"},{"value":0,"name":"none"}] as ItemType[],
16
      cursor_color: "#3393E2",
17 18
			inputmode_enum_current: 0
		}
张磊 已提交
19 20
	},

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
	methods: {
		textarea_click() { console.log("组件被点击时触发") },
		textarea_touchstart() { console.log("手指触摸动作开始") },
		textarea_touchmove() { console.log("手指触摸后移动") },
		textarea_touchcancel() { console.log("手指触摸动作被打断,如来电提醒,弹窗") },
		textarea_touchend() { console.log("手指触摸动作结束") },
		textarea_tap() { console.log("手指触摸后马上离开") },
		textarea_longpress() { console.log("如果一个组件被绑定了 longpress 事件,那么当用户长按这个组件时,该事件将会被触发。") },
		textarea_confirm() { console.log("点击完成时, 触发 confirm 事件,event.detail = {value: value}") },
		textarea_input() { console.log("当键盘输入时,触发 input 事件,event.detail = {value, cursor}, @input 处理函数的返回值并不会反映到 textarea 上") },
		textarea_linechange() { console.log("输入框行数变化时调用,event.detail = {height: 0, heightRpx: 0, lineCount: 0}") },
		textarea_blur() { console.log("输入框失去焦点时触发,event.detail = {value, cursor}") },
		textarea_keyboardheightchange() { console.log("键盘高度发生变化的时候触发此事件,event.detail = {height: height, duration: duration}") },
		textarea_focus() { console.log("输入框聚焦时触发,event.detail = { value, height },height 为键盘高度,在基础库 1.9.90 起支持") },
		change_adjust_position_boolean(checked : boolean) { this.adjust_position_boolean = checked },
		change_show_confirm_bar_boolean(checked : boolean) { this.show_confirm_bar_boolean = checked },
		change_fixed_boolean(checked : boolean) { this.fixed_boolean = checked },
		change_auto_height_boolean(checked : boolean) { this.auto_height_boolean = checked },
		change_confirm_hold_boolean(checked : boolean) { this.confirm_hold_boolean = checked },
		change_focus_boolean(checked : boolean) { this.focus_boolean = checked },
41 42
		change_auto_focus_boolean(checked : boolean) { this.auto_focus_boolean = checked },
    change_cursor_color_boolean(checked : boolean) { if(checked){ this.cursor_color = "transparent"} else {this.cursor_color = "#3393E2"}},
43 44 45 46 47
		radio_change_inputmode_enum(checked : number) { this.inputmode_enum_current = checked }
	}
}
</script>

Y
init  
yurj26 已提交
48
<template>
雪洛's avatar
雪洛 已提交
49
  <scroll-view style="flex: 1">
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    <view class="main">
      <textarea
      :value="default_value"
        class="uni-textarea"
        :auto-focus="true"
        :focus="focus_boolean"
        :confirm-hold="confirm_hold_boolean"
        :auto-height="auto_height_boolean"
        :fixed="fixed_boolean"
        :show-confirm-bar="show_confirm_bar_boolean"
        :adjust-position="adjust_position_boolean"
        :cursor-color="cursor_color"
        :inputmode="inputmode_enum[inputmode_enum_current].name"
        :maxlength="maxlength"
        @click="textarea_click"
        @touchstart="textarea_touchstart"
        @touchmove="textarea_touchmove"
        @touchcancel="textarea_touchcancel"
        @touchend="textarea_touchend"
        @tap="textarea_tap"
        @longpress="textarea_longpress"
        @confirm="textarea_confirm"
        @input="textarea_input"
        @linechange="textarea_linechange"
        @blur="textarea_blur"
        @keyboardheightchange="textarea_keyboardheightchange"
        @focus="textarea_focus"
        style="padding: 20rpx; border: 1px solid #666"
      />
    </view>
    <view class="content">
      <!-- #ifndef WEB -->
82 83 84 85
      <boolean-data
        :defaultValue="false"
        title="键盘弹起时,是否自动上推页面"
        @change="change_adjust_position_boolean"
张磊 已提交
86
      ></boolean-data>
87 88
      <!-- #endif -->
      <!-- #ifdef MP -->
89 90
      <boolean-data
        :defaultValue="false"
DCloud-yyl's avatar
DCloud-yyl 已提交
91
        title="是否显示键盘上方带有“完成”按钮那一栏"
92 93 94 95 96 97
        @change="change_show_confirm_bar_boolean"
      ></boolean-data>
      <boolean-data
        :defaultValue="false"
        title="如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true"
        @change="change_fixed_boolean"
98
      ></boolean-data>
张磊 已提交
99
      <!-- #endif -->
100 101 102 103 104 105 106 107 108 109 110
      <boolean-data
        :defaultValue="false"
        title="是否自动增高,设置auto-height时,style.height不生效"
        @change="change_auto_height_boolean"
      ></boolean-data>
      <boolean-data
        :defaultValue="false"
        title="点击键盘右下角按钮时是否保持键盘不收起"
        @change="change_confirm_hold_boolean"
      ></boolean-data>
      <boolean-data
张磊 已提交
111
        :defaultValue="focus_boolean"
112
        title="获取焦点"
A
Anne_LXM 已提交
113
        @change="change_focus_boolean"
114 115
      ></boolean-data>
      <boolean-data
116 117
        :defaultValue="true"
        title="首次自动获取焦点"
118
        @change="change_auto_focus_boolean"
119 120 121 122 123
      ></boolean-data>
      <boolean-data
        :defaultValue="false"
        title="改变光标颜色为透明"
        @change="change_cursor_color_boolean"
124 125 126 127 128 129 130 131
      ></boolean-data>
      <!-- #ifdef WEB -->
      <enum-data
        :items="inputmode_enum"
        title="是一个枚举属性,它提供了用户在编辑元素或其内容时可能输入的数据类型的提示。在符合条件的高版本webview里,uni-app的 web 和 app-vue 平台中可使用本属性。"
        @change="radio_change_inputmode_enum"
      ></enum-data>
      <!-- #endif -->
132 133
    </view>
  </scroll-view>
Y
init  
yurj26 已提交
134
</template>
135 136 137

<style>
.main {
138
  min-height: 200rpx;
139 140 141
  padding: 10rpx 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-direction: row;
142
  justify-content: center;
143 144 145
}

.main .list-item {
146 147 148
  width: 100%;
  height: 200rpx;
  border: 1px solid #666;
149 150
}
</style>