Browse Source

数字键盘增加二个00

shish 4 years ago
parent
commit
923f9682ab
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ghsPad/src/components/plugin/vKeyboard/utils.js

+ 2 - 2
ghsPad/src/components/plugin/vKeyboard/utils.js

@@ -1,5 +1,5 @@
 //所有自然数
-export const natural = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '0'];
+export const natural = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '0','00'];
 //所有英文字母
 export const chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
 	'v', 'w', 'x', 'y', 'z'
@@ -7,7 +7,7 @@ export const chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l'
 
 //顺序排序全键盘
 export const order = [
-	// ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0'],
+	// ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0','00'],
 	['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p'],
 	['a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l'],
 	['z', 'x', 'c', 'v', 'b', 'n', 'm']