| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <template>
- <view v-if="showKeyboard"
- :class="['enl-size', digital?'enl-size_custom':'',keyboardStyle]">
- <view class="digit-keyboard" v-if="mode === 'digit' || digital">
- <view class="digit-button-box">
- <template v-for="(digit, index) in digits">
- <!-- <view :key="index" class="enl-key-button enl-digit" @tap="typing('.')" v-if="index === 9">.</view> -->
- <view :key="index" class="enl-key-button enl-digit" @tap="typing(digit)">
- <text>{{digit}}</text>
- </view>
- </template>
- <view class="enl-key-button enl-digit" v-if="!digital">
- <!-- <i class="iconfont icon-shouqijianpan enl-middle" @tap="deactivate"></i> -->
- <i class="iconfont icon-ABC enl-middle" v-if="!digital" @tap="typingLetter"></i>
- </view>
- </view>
- <view class="special-button-box">
- <view class="enl-key-button special-button enl-gray" @tap="backspace"><i class="iconfont icon-backspace enl-large"></i></view>
- <view class="enl-key-button special-button enl-gray" @tap="enter">
- <!-- <i class="iconfont icon-huiche enl-large"></i> -->
- <text>确定</text>
- </view>
- </view>
- </view>
- <view class="full-keyboard" v-else>
- <view class="line" v-for="(letters, index) in lines" :key="index">
- <view class="enl-letter enl-key-button special-key enl-gray" v-if="index === 2 && mode === 'letter'" @tap="toggleCase"><i
- :class="'iconfont ' + (lowercase ? 'icon-xiaoxie' : 'icon-daxie')"></i></view>
- <view class="enl-letter enl-key-button normal" v-for="letter in letters" @tap="typing(letter)" :key="letter">
- <text>{{letter}}</text>
- </view>
- <view class="enl-letter enl-key-button special-key enl-gray" v-if="index === 2" @tap="backspace"><i class="iconfont icon-backspace"></i></view>
- </view>
- <view class="line special-line">
- <view class="enl-letter enl-key-button swith-key enl-gray">
- <i class="iconfont icon-fuhao" @tap="typingSymbol" v-if="mode === 'letter'"></i>
- <i class="iconfont icon-ABC" @tap="typingLetter" v-if="mode === 'symbol'"></i>
- </view>
- <view class="enl-letter enl-key-button space" @tap="typing(' ')"><text class="enl-logo">spacebar</text></view>
- <view class="enl-letter enl-key-button swith-key enl-gray" @tap="typingDigit"><i class="iconfont icon-shuzi"></i></view>
- <!-- <view class="enl-letter enl-key-button swith-key enl-gray" @tap="enter">
- <i class="iconfont icon-huiche"></i>
- </view> -->
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- natural,
- order,
- disorder,
- symbols,
- digits,
- KEYBOARD_MODE
- } from './utils'
- export default {
- props: {
- //是否为纯数字键盘
- digital: {
- type: [Boolean, String],
- default: false
- },
- //是否无序的排序键盘
- disorderly: {
- type: [Boolean, String],
- default: false
- },
- pointIsShow:{
- type: Boolean,
- default: true
- },
- isEffect:{
- type:Boolean,
- default: false
- }
- /* ,
- value: String */
- },
- //app中不生效,不知道为什么
- /* model: {
- prop: 'value',
- event: 'typing'
- }, */
- computed: {
- keyboardStyle() {
- return 'v-keyboard ' + this.cls;
- }
- },
- data() {
- return {
- cls: '',
- visible: false, //是否显示
- showKeyboard: false, //是否隐藏
- digits: [], //自然数数组
- lines: [], //字母+数字数组
- lowercase: true, //是否小写输入状态
- mode: KEYBOARD_MODE.LETTER, //键盘模式
- keys: [] //键入的键值
- }
- },
- methods: {
- //大小写转换
- toggleCase() {
- this.lowercase = !this.lowercase;
- },
- //输入符号
- typingSymbol() {
- this.mode = KEYBOARD_MODE.SYMBOL;
- this.lines = symbols;
- },
- //输入字母
- typingLetter() {
- this.mode = KEYBOARD_MODE.LETTER;
- this.lines = this.disorderly ? disorder() : order;
- },
- //键入数字
- typingDigit() {
- this.mode = KEYBOARD_MODE.DIGIT;
- },
- //键盘键入
- typing(input) {
- this.keys.push(input);
- //app中v-model不生效,改用事件方式在外处理
- //this.$emit('typing', this.keys.join(''));
- this.$emit('typing', {
- backspace: false,
- char: input
- })
- },
- //退格键
- backspace() {
- if (this.keys.length) {
- this.keys.pop()
- }
- //this.$emit('typing', this.keys.join(''));
- this.$emit('typing', {
- backspace: true
- })
- },
- //键入回车
- enter() {
- //this.deactivate();
- this.$emit('enter');
- },
- //激活键盘
- activate() {
- // #ifdef APP-PLUS
- plus.key.hideSoftKeybord();
- // #endif
- this.showKeyboard = true
- this.$nextTick(() => {
- this.visible = true;
- })
- },
- //隐藏键盘
- deactivate() {
- this.visible = false;
- setTimeout(() => {
- this.showKeyboard = false
- }, 250)
- }
- },
- watch: {
- lowercase(val) {
- let [...temp] = this.lines;
- temp.forEach(line => {
- line.forEach((letter, index) => {
- line[index] = val ? letter.toLowerCase() : letter.toUpperCase();
- });
- });
- this.lines = temp;
- },
- visible(val) {
- if(this.isEffect) {
- this.cls = val ? 'slideup' : 'slidedown';
- }
- }
- },
- created() {
- this.lines = this.disorderly ? disorder() : order;
- this.digits = this.disorderly ? digits() : natural;
- if(!this.pointIsShow) {
- this.digits = this.digits.filter(i=>i!=='.')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './css.scss'; //引入键盘样式
- @import './icon.css'; //引入键盘icon
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 24rpx;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .enl-size {
- // font-size: 24rpx;
- height: 100%;
- }
- .enl-size_custom {
- // width: 700rpx!important;
- }
- .enl-key-button {
- display: inline-block;
- overflow: hidden;
- // vertical-align: middle;
- border: 1px solid #e6e6e6;
- color: #333;
- background-color: #fff;
- box-shadow: 0 2px 2px rgba(230, 230, 230, .7);
- border-radius: 3upx;
- text-align: center;
- white-space: nowrap;
- user-select: none;
- cursor: pointer;
- &:active {
- background: #d6d6d6;
- scale: 0.7;
- }
- }
- .v-keyboard {
- width: 100%;
- position: relative;
- bottom: 0;
- left: 0;
- background: #f5f5f5;
- padding: 1% 0;
- height: 100%;
- z-index: 100;
- /*全键盘*/
- .full-keyboard {
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100%;
- .line {
- text-align: center;
- flex: 1;
- width: 100%;
- &:not(:last-child) {
- // margin-bottom: 1%;
- }
- .enl-letter {
- height: 95%;
- font-size: 20rpx;
- padding: 0rpx 0rpx;
- &:not(:last-child) {
- margin-right: 1%;
- }
- }
- .normal {
- // width: 1.73em;
- width: 9%;
- }
- .special-key {
- width: 9%;
- }
- }
- .special-line {
- padding: 0 1%;
- display: flex !important;
- justify-content: space-around;
- font-size: 24rpx;
- .space {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .swith-key {
- width: 13%;
-
- }
- .enl-logo {
- font-size: 30rpx;
- }
- }
- }
- /*数字键盘*/
- .digit-keyboard {
- display: flex;
- flex-direction: row;
- font-size: 24rpx;
- justify-content: center;
- height: 100%;
- .digit-button-box {
- padding: 0 1%;
- flex: 80;
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- .enl-digit {
- width: 32%;
- height: 23%;
- // line-height: 20%;
- margin-bottom: 1%;
- // vertical-align: middle;
- // display: flex;
- // align-items: center;
- &:nth-child(10),
- &:nth-child(11),
- &:nth-child(12) {
- margin-bottom: 0;
- }
- &:not(:last-child) {
- margin-right: 1%;
- }
- }
- & .enl-key-button {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .special-button-box {
- flex: 20;
- padding: 0 3% 0 0;
- .special-button {
- line-height: 20%;
- height: 45%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- &:not(:last-child) {
- margin-bottom: 3%;
- }
- }
- }
- }
- .enl-gray {
- background: #e1e1e1 !important;
- &:active {
- background: #fff !important;
- }
- }
- .enl-large {
- font-size: 24rpx !important;
- }
- .enl-middle {
- font-size: 24rpx !important;
- display: block;
- }
- }
- </style>
|