fstarter 2.10.43 → 2.10.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/.babelrc +6 -6
  2. package/.editorconfig +9 -9
  3. package/README.md +18 -18
  4. package/fstarter.iml +9 -0
  5. package/index.html +22 -22
  6. package/index.js +222 -222
  7. package/package.json +104 -104
  8. package/src/App.vue +38 -38
  9. package/src/i18n/en-US.js +35 -35
  10. package/src/i18n/zh-CN.js +35 -35
  11. package/src/main.js +87 -87
  12. package/src/plugins/assets/ak.js +948 -948
  13. package/src/plugins/assets/callNative.js +488 -488
  14. package/src/plugins/assets/compressImg.js +75 -75
  15. package/src/plugins/assets/config.js +106 -106
  16. package/src/plugins/assets/fileServer.js +469 -469
  17. package/src/plugins/assets/http.js +343 -343
  18. package/src/plugins/assets/ua.js +27 -27
  19. package/src/plugins/components/BSButton.vue +61 -61
  20. package/src/plugins/components/BSCascader.vue +465 -465
  21. package/src/plugins/components/BSCell.vue +48 -48
  22. package/src/plugins/components/BSDatePicker.vue +167 -170
  23. package/src/plugins/components/BSImage.vue +42 -42
  24. package/src/plugins/components/BSInput.vue +140 -140
  25. package/src/plugins/components/BSList.vue +81 -81
  26. package/src/plugins/components/BSPicCode.vue +96 -96
  27. package/src/plugins/components/BSPopup.vue +43 -43
  28. package/src/plugins/components/BSRadio.vue +97 -97
  29. package/src/plugins/components/BSSearch.vue +109 -109
  30. package/src/plugins/components/BSSelect.vue +144 -144
  31. package/src/plugins/components/BSSign.vue +454 -454
  32. package/src/plugins/components/BSStepper.vue +115 -115
  33. package/src/plugins/components/BSUpload.vue +92 -92
  34. package/src/plugins/components/BSUpload2.vue +388 -382
  35. package/src/plugins/components/BSVerCode.vue +131 -134
  36. package/src/plugins/components/BSViewer.vue +92 -92
  37. package/src/plugins/components/base.js +496 -496
  38. package/src/plugins/components/base2.js +489 -489
  39. package/src/plugins/lib/weixin.js +20 -20
  40. package/src/plugins/platform/index.js +7 -7
  41. package/src/plugins/platform/isp_phone.js +306 -306
  42. package/src/plugins/route/index.js +140 -140
  43. package/src/plugins/selector/index.js +342 -342
  44. package/src/plugins/service/index.js +81 -81
  45. package/src/plugins/services/callCamera.js +53 -53
  46. package/src/plugins/services/exit.js +36 -36
  47. package/src/plugins/services/face.js +69 -69
  48. package/src/plugins/services/faceInApp.js +31 -31
  49. package/src/plugins/services/getFaceResult.js +104 -104
  50. package/src/plugins/services/getMenus.js +40 -40
  51. package/src/plugins/services/getSystemData.js +128 -128
  52. package/src/plugins/services/getToken.js +79 -79
  53. package/src/plugins/services/getUserInfo.js +47 -47
  54. package/src/plugins/services/goSetPage.js +40 -40
  55. package/src/plugins/services/hideFhoneTitle.js +36 -36
  56. package/src/plugins/services/index.js +37 -37
  57. package/src/plugins/services/init.js +35 -35
  58. package/src/plugins/services/jumpView.js +40 -40
  59. package/src/plugins/services/logout.js +43 -43
  60. package/src/plugins/services/share.js +113 -113
  61. package/src/plugins/services/statusBarHeight.js +39 -39
  62. package/src/plugins/session/index.js +32 -32
  63. package/src/services/getAuthInfo.js +22 -22
  64. package/src/services/index.js +9 -9
  65. package/src/services/sendVerCode.js +23 -23
  66. package/src/views/auth.vue +360 -354
  67. package/src/views/auth2.vue +90 -90
  68. package/src/views/auth3.vue +148 -148
  69. package/src/views/auth4.vue +8979 -8979
  70. package/src/views/auth5.vue +50 -50
  71. package/src/views/components/BankSelect.vue +55 -55
  72. package/src/views/foot.vue +140 -140
  73. package/src/views/page.vue +219 -219
  74. package/src/views/shellFunc.vue +41 -41
  75. package/themes/basic.css +1 -1
  76. package/webpack.config.js +144 -144
@@ -1,28 +1,28 @@
1
- export const ua = (function() {
2
- const u = (navigator.userAgent ? navigator.userAgent : navigator.appVersion).toLowerCase()
3
- console.log('agent', u)
4
- return {
5
-
6
- isIspPhone: u.indexOf('yjapp') > -1 || !!u.match(/mobile.*ios/),
7
- mobile: !!u.match(/.*applewebkit.*mobile.*/),
8
- microMsg: u.indexOf('micromessenger') > -1,
9
-
10
- iPhone: u.indexOf('iphone') > -1,
11
- iPad: u.indexOf('ipad') > -1
12
-
13
- }
14
- })()
15
- export const ua2 = function() {
16
- const u = (navigator.userAgent ? navigator.userAgent : navigator.appVersion).toLowerCase()
17
- console.log('agent', u)
18
- return {
19
-
20
- isIspPhone: u.indexOf('yjapp') > -1 || !!u.match(/mobile.*ios/),
21
- mobile: !!u.match(/.*applewebkit.*mobile.*/),
22
- microMsg: u.indexOf('micromessenger') > -1,
23
-
24
- iPhone: u.indexOf('iphone') > -1,
25
- iPad: u.indexOf('ipad') > -1
26
-
27
- }
1
+ export const ua = (function() {
2
+ const u = (navigator.userAgent ? navigator.userAgent : navigator.appVersion).toLowerCase()
3
+ console.log('agent', u)
4
+ return {
5
+
6
+ isIspPhone: u.indexOf('yjapp') > -1 || !!u.match(/mobile.*ios/),
7
+ mobile: !!u.match(/.*applewebkit.*mobile.*/),
8
+ microMsg: u.indexOf('micromessenger') > -1,
9
+
10
+ iPhone: u.indexOf('iphone') > -1,
11
+ iPad: u.indexOf('ipad') > -1
12
+
13
+ }
14
+ })()
15
+ export const ua2 = function() {
16
+ const u = (navigator.userAgent ? navigator.userAgent : navigator.appVersion).toLowerCase()
17
+ console.log('agent', u)
18
+ return {
19
+
20
+ isIspPhone: u.indexOf('yjapp') > -1 || !!u.match(/mobile.*ios/),
21
+ mobile: !!u.match(/.*applewebkit.*mobile.*/),
22
+ microMsg: u.indexOf('micromessenger') > -1,
23
+
24
+ iPhone: u.indexOf('iphone') > -1,
25
+ iPad: u.indexOf('ipad') > -1
26
+
27
+ }
28
28
  }
@@ -1,61 +1,61 @@
1
- <template>
2
- <van-button
3
- :type="model.btnType"
4
- :size="model.size"
5
- :disabled="model.disabled"
6
- block
7
- @click="click"
8
- >
9
- {{model.label}}
10
- </van-button>
11
- </template>
12
-
13
- <script>
14
-
15
- import base2 from './base2.js'
16
-
17
- export default {
18
- name: "bs-button",
19
- mixins: [base2],
20
- props: {
21
-
22
- },
23
- data() {
24
- return {
25
-
26
- }
27
- },
28
- mounted() {
29
-
30
-
31
- },
32
- methods: {
33
- createDefaultModel() {
34
- return {
35
- type: 'BSButton',
36
- value: '',
37
- btnType: 'primary',
38
- size: 'large'
39
- };
40
- },
41
- click(){
42
-
43
- this.model.disabled = true
44
- let self = this
45
- this.$emit('click',function(){
46
-
47
- self.model.disabled = false
48
- },this.fullName)
49
- }
50
- },
51
- computed:{
52
-
53
- }
54
-
55
- }
56
-
57
- </script>
58
-
59
- <style scoped>
60
-
61
- </style>
1
+ <template>
2
+ <van-button
3
+ :type="model.btnType"
4
+ :size="model.size"
5
+ :disabled="model.disabled"
6
+ block
7
+ @click="click"
8
+ >
9
+ {{model.label}}
10
+ </van-button>
11
+ </template>
12
+
13
+ <script>
14
+
15
+ import base2 from './base2.js'
16
+
17
+ export default {
18
+ name: "bs-button",
19
+ mixins: [base2],
20
+ props: {
21
+
22
+ },
23
+ data() {
24
+ return {
25
+
26
+ }
27
+ },
28
+ mounted() {
29
+
30
+
31
+ },
32
+ methods: {
33
+ createDefaultModel() {
34
+ return {
35
+ type: 'BSButton',
36
+ value: '',
37
+ btnType: 'primary',
38
+ size: 'large'
39
+ };
40
+ },
41
+ click(){
42
+
43
+ this.model.disabled = true
44
+ let self = this
45
+ this.$emit('click',function(){
46
+
47
+ self.model.disabled = false
48
+ },this.fullName)
49
+ }
50
+ },
51
+ computed:{
52
+
53
+ }
54
+
55
+ }
56
+
57
+ </script>
58
+
59
+ <style scoped>
60
+
61
+ </style>