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

51 lines
1.5 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 86 1407 2 5 49身份证尾号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-button type="gray" btn-size="medium" text="验证码输入框" bold :margin="['24rpx']"
@click="href(1)">
</fui-button>
<fui-button type="gray" btn-size="medium" text="密码输入框" bold @click="href(2)">
</fui-button>
<fui-button type="gray" btn-size="medium" text="结合自定义键盘" bold :margin="['24rpx']" @click="dk">
</fui-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
vip() {
this.fui.href("/pages/my/qa/qa?index=2&title=VIP专属内容")
},
href(type) {
let url = type == 1 ? '../singleInput-A/singleInput-A' : '../singleInput-B/singleInput-B'
this.fui.href(url)
},
dk() {
this.fui.href('../digitalKeyboard/digitalKeyboard')
}
}
}
</script>
<style>
.fui-page__bd {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
</style>