123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <view class="u-demo">
- <view class="u-demo-wrap">
- <view class="u-demo-title">演示效果</view>
- <view class="u-demo-area">
- <view class="input-wrap">
- <input class="input" disabled type="text" :value="input" placeholder="来自键盘的输入内容" />
- <u-button :custom-style="{height: '32px'}" :hairLine="false" class="clear-btn" @tap="input = ''">清空</u-button>
- </view>
- <u-keyboard :mask="mask" ref="uKeyboard" safe-area-inset-bottom @confirm="confirm"
- :random="random" :dotEnable="false" :mode="mode"
- :confirmBtn="true" :cancelBtn="true" :tooltip="tooltip" v-model="show"
- @change="change" @backspace="backspace"></u-keyboard>
- </view>
- </view>
- <view class="u-config-wrap">
- <view class="u-config-title u-border-bottom">
- 参数配置
- </view>
- <view class="u-config-item">
- <view class="u-item-title">键盘开关</view>
- <u-subsection :current="show == true ? 0 : 1" :list="['开', '关']" @change="statusChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">键盘类型</view>
- <u-subsection :list="['数字键盘', '身份证键盘', '车牌号键盘']" @change="modeChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">打乱顺序</view>
- <u-subsection :current="1" :list="['是', '否']" @change="randomChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">上方工具条</view>
- <u-subsection :list="['显示', '隐藏']" @change="tooltipChange"></u-subsection>
- </view>
- <view class="u-config-item">
- <view class="u-item-title">是否显示遮罩</view>
- <u-subsection :list="['显示', '隐藏']" @change="maskChange"></u-subsection>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- show: false,
- input: '',
- mode: 'number',
- random: false,
- tooltip: true,
- mask: true,
-
- }
- },
- methods: {
- statusChange(index) {
- this.show = index == 0 ? true : false;
- },
- modeChange(index) {
- if(index == 0) this.mode = 'number';
- if(index == 1) this.mode = 'card';
- if(index == 2) this.mode = 'car';
- this.show = true;
- },
- randomChange(index) {
- this.random = index == 0 ? true : false;
- this.show = true;
- },
- tooltipChange(index) {
- this.tooltip = index == 0 ? true : false;
- this.show = true;
- },
- maskChange(index) {
- this.show = true;
- this.mask = !index;
- },
- // 点击退格键
- backspace() {
- if(this.input.length) this.input = this.input.substr(0, this.input.length - 1);
- },
- // 键盘按键发生变化
- change(detail) {
- this.input += detail;
- },
- confirm(e) {
-
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .input {
- border: 1px solid $u-light-color;
- border-radius: 4px;
- margin-bottom: 20px;
- height: 32px;
- font-size: 26rpx;
- flex: 1;
- box-sizing: border-box;
- }
-
- .input-wrap {
- display: flex;
- }
-
- .clear-btn {
- margin-left: 10px;
- font-size: 28rpx;
- }
- </style>
|