Files
FirstUI-vue/pages/component/expand/singleInput-B/singleInput-B.vue
2023-08-17 21:28:49 +08:00

46 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 1 8614 0 7 254 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title fui-align__center" @tap="vip">SingleInput <image
src="/static/images/index/light/icon_member_3x.png"></image>
</view>
<view class="fui-page__desc">SingleInput 单输入框每个输入框只允许输入一个字符可自定义样式可设置输入长度</view>
</view>
<view class="fui-page__bd">
<fui-single-input border="1" borderWidth="1" radius="16" activeColor="#FFB703" cursorHeight="40"
cursorColor="#FFB703" :length="6" width="80" height="80" size="24" password isFocus @input="onInput" @complete="onComplete">
</fui-single-input>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
onInput(e) {
//e.detail.value
console.log(e)
},
onComplete(e) {
//e.detail.value
console.log(e)
this.fui.toast(`您输入的密码为:${e.detail.value}`)
},
vip() {
this.fui.href("/pages/my/qa/qa?index=2&title=VIP专属内容")
}
}
}
</script>
<style>
page {
background-color: #fff;
}
</style>