fstarter 2.10.49 → 2.10.52

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 (80) hide show
  1. package/.babelrc +6 -6
  2. package/.editorconfig +9 -9
  3. package/index.html +22 -22
  4. package/index.js +222 -222
  5. package/package.json +104 -104
  6. package/src/App.vue +38 -38
  7. package/src/i18n/en-US.js +35 -35
  8. package/src/i18n/zh-CN.js +35 -35
  9. package/src/main.js +95 -87
  10. package/src/plugins/assets/ak.js +948 -948
  11. package/src/plugins/assets/callNative.js +490 -488
  12. package/src/plugins/assets/compressImg.js +75 -75
  13. package/src/plugins/assets/config.js +106 -106
  14. package/src/plugins/assets/fileServer.js +469 -469
  15. package/src/plugins/assets/http.js +343 -343
  16. package/src/plugins/assets/ua.js +27 -27
  17. package/src/plugins/components/BSButton.vue +61 -61
  18. package/src/plugins/components/BSCascader.vue +465 -465
  19. package/src/plugins/components/BSCell.vue +48 -48
  20. package/src/plugins/components/BSDatePicker.vue +167 -167
  21. package/src/plugins/components/BSImage.vue +42 -42
  22. package/src/plugins/components/BSInput.vue +140 -140
  23. package/src/plugins/components/BSList.vue +81 -81
  24. package/src/plugins/components/BSPicCode.vue +96 -96
  25. package/src/plugins/components/BSPopup.vue +43 -43
  26. package/src/plugins/components/BSRadio.vue +97 -97
  27. package/src/plugins/components/BSSearch.vue +109 -109
  28. package/src/plugins/components/BSSelect.vue +144 -144
  29. package/src/plugins/components/BSSign.vue +454 -454
  30. package/src/plugins/components/BSStepper.vue +115 -115
  31. package/src/plugins/components/BSUpload.vue +92 -92
  32. package/src/plugins/components/BSUpload2.vue +398 -398
  33. package/src/plugins/components/BSVerCode.vue +128 -128
  34. package/src/plugins/components/BSViewer.vue +92 -92
  35. package/src/plugins/components/base.js +496 -496
  36. package/src/plugins/components/base2.js +489 -489
  37. package/src/plugins/lib/weixin.js +20 -20
  38. package/src/plugins/platform/index.js +7 -7
  39. package/src/plugins/platform/isp_phone.js +310 -306
  40. package/src/plugins/route/index.js +140 -140
  41. package/src/plugins/selector/index.js +342 -342
  42. package/src/plugins/service/index.js +81 -81
  43. package/src/plugins/services/callCamera.js +53 -53
  44. package/src/plugins/services/exit.js +36 -36
  45. package/src/plugins/services/face.js +69 -69
  46. package/src/plugins/services/faceH5.js +54 -0
  47. package/src/plugins/services/faceInApp.js +31 -31
  48. package/src/plugins/services/faceTx.js +61 -61
  49. package/src/plugins/services/getFaceResult.js +104 -104
  50. package/src/plugins/services/getH5FaceResult.js +62 -0
  51. package/src/plugins/services/getMenus.js +40 -40
  52. package/src/plugins/services/getSystemData.js +128 -128
  53. package/src/plugins/services/getToken.js +79 -79
  54. package/src/plugins/services/getTxFaceResult.js +83 -83
  55. package/src/plugins/services/getUserInfo.js +47 -47
  56. package/src/plugins/services/goSetPage.js +40 -40
  57. package/src/plugins/services/hideFhoneTitle.js +36 -36
  58. package/src/plugins/services/index.js +45 -41
  59. package/src/plugins/services/init.js +35 -35
  60. package/src/plugins/services/jumpView.js +40 -40
  61. package/src/plugins/services/logout.js +43 -43
  62. package/src/plugins/services/share.js +113 -113
  63. package/src/plugins/services/statusBarHeight.js +39 -39
  64. package/src/plugins/session/index.js +32 -32
  65. package/src/services/getAuthInfo.js +22 -22
  66. package/src/services/index.js +9 -9
  67. package/src/services/sendVerCode.js +23 -23
  68. package/src/views/auth.vue +367 -370
  69. package/src/views/auth2.vue +90 -90
  70. package/src/views/auth3.vue +157 -157
  71. package/src/views/auth4.vue +8979 -8979
  72. package/src/views/auth5.vue +50 -50
  73. package/src/views/authh5.vue +369 -0
  74. package/src/views/components/BankSelect.vue +55 -55
  75. package/src/views/foot.vue +140 -140
  76. package/src/views/page.vue +222 -219
  77. package/src/views/shellFunc.vue +41 -41
  78. package/themes/basic.css +1 -1
  79. package/webpack.config.js +144 -144
  80. package/fstarter.iml +0 -9
package/webpack.config.js CHANGED
@@ -1,144 +1,144 @@
1
- var path = require('path')
2
- var webpack = require('webpack')
3
- const NODE_ENV = process.env.NODE_ENV
4
-
5
- function resolve (dir) {
6
- return path.join(__dirname, '..', dir)
7
- }
8
-
9
- module.exports = {
10
- entry: NODE_ENV == 'development' ? './src/main.js' : './index.js',
11
- output: {
12
- path: path.resolve(__dirname, './dist'),
13
- publicPath: '/dist/',
14
- filename: 'build.js',
15
- library:'bstarter',
16
- libraryTarget:'umd',
17
- umdNamedDefine:true
18
- },
19
- module: {
20
- rules: [
21
- {
22
- test: /\.css$/,
23
- use: [
24
- 'vue-style-loader',
25
- 'css-loader'
26
- ],
27
- },
28
- {
29
- test: /\.scss$/,
30
- use: [
31
- 'vue-style-loader',
32
- 'css-loader',
33
- 'sass-loader'
34
- ],
35
- },
36
- {
37
- test: /\.sass$/,
38
- use: [
39
- 'vue-style-loader',
40
- 'css-loader',
41
- 'sass-loader?indentedSyntax'
42
- ],
43
- },
44
- {
45
- test: /\.vue$/,
46
- loader: 'vue-loader',
47
- options: {
48
- loaders: {
49
- // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
50
- // the "scss" and "sass" values for the lang attribute to the right configs here.
51
- // other preprocessors should work out of the box, no loader config like this necessary.
52
- 'scss': [
53
- 'vue-style-loader',
54
- 'css-loader',
55
- 'sass-loader'
56
- ],
57
- 'sass': [
58
- 'vue-style-loader',
59
- 'css-loader',
60
- 'sass-loader?indentedSyntax'
61
- ]
62
- }
63
- // other vue-loader options go here
64
- }
65
- },
66
- {
67
- test: /\.js$/,
68
- loader: 'babel-loader',
69
- exclude: /node_modules/
70
- },
71
- {
72
- test: /\.(png|jpg|gif|svg)$/,
73
- loader: 'file-loader',
74
- options: {
75
- name: '[name].[ext]?[hash]'
76
- }
77
- }
78
- ]
79
- },
80
- resolve: {
81
- alias: {
82
- 'vue$': 'vue/dist/vue.esm.js',
83
- '@': resolve('src')
84
- },
85
- extensions: ['*', '.js', '.vue', '.json']
86
- },
87
- devServer: {
88
- setup(app) {
89
- app.post('*', (req, res) => {
90
- res.redirect(req.originalUrl);
91
- });
92
- },
93
- host:'0.0.0.0',
94
- historyApiFallback: true,
95
- noInfo: true,
96
- overlay: true,
97
- proxy: {
98
- '/api/*': {
99
- target: 'https://testgemini.ihasl.com',
100
- changeOrigin: true,
101
- secure: true
102
- },'/mock/*': {
103
- target: 'https://testgemini.ihasl.com',
104
- changeOrigin: true,
105
- secure: true
106
- },
107
- '/find/*': {
108
- target: 'http://175.24.244.148',
109
- changeOrigin: true,
110
- secure: true
111
- },
112
- '/find/': {
113
- target: 'http://175.24.244.148',
114
- changeOrigin: true,
115
- secure: true
116
- }
117
- }
118
- },
119
- performance: {
120
- hints: false
121
- },
122
- devtool: '#eval-source-map'
123
- }
124
-
125
- if (process.env.NODE_ENV === 'production') {
126
- module.exports.devtool = '#source-map'
127
- // http://vue-loader.vuejs.org/en/workflow/production.html
128
- module.exports.plugins = (module.exports.plugins || []).concat([
129
- new webpack.DefinePlugin({
130
- 'process.env': {
131
- NODE_ENV: '"production"'
132
- }
133
- }),
134
- new webpack.optimize.UglifyJsPlugin({
135
- sourceMap: true,
136
- compress: {
137
- warnings: false
138
- }
139
- }),
140
- new webpack.LoaderOptionsPlugin({
141
- minimize: true
142
- })
143
- ])
144
- }
1
+ var path = require('path')
2
+ var webpack = require('webpack')
3
+ const NODE_ENV = process.env.NODE_ENV
4
+
5
+ function resolve (dir) {
6
+ return path.join(__dirname, '..', dir)
7
+ }
8
+
9
+ module.exports = {
10
+ entry: NODE_ENV == 'development' ? './src/main.js' : './index.js',
11
+ output: {
12
+ path: path.resolve(__dirname, './dist'),
13
+ publicPath: '/dist/',
14
+ filename: 'build.js',
15
+ library:'bstarter',
16
+ libraryTarget:'umd',
17
+ umdNamedDefine:true
18
+ },
19
+ module: {
20
+ rules: [
21
+ {
22
+ test: /\.css$/,
23
+ use: [
24
+ 'vue-style-loader',
25
+ 'css-loader'
26
+ ],
27
+ },
28
+ {
29
+ test: /\.scss$/,
30
+ use: [
31
+ 'vue-style-loader',
32
+ 'css-loader',
33
+ 'sass-loader'
34
+ ],
35
+ },
36
+ {
37
+ test: /\.sass$/,
38
+ use: [
39
+ 'vue-style-loader',
40
+ 'css-loader',
41
+ 'sass-loader?indentedSyntax'
42
+ ],
43
+ },
44
+ {
45
+ test: /\.vue$/,
46
+ loader: 'vue-loader',
47
+ options: {
48
+ loaders: {
49
+ // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
50
+ // the "scss" and "sass" values for the lang attribute to the right configs here.
51
+ // other preprocessors should work out of the box, no loader config like this necessary.
52
+ 'scss': [
53
+ 'vue-style-loader',
54
+ 'css-loader',
55
+ 'sass-loader'
56
+ ],
57
+ 'sass': [
58
+ 'vue-style-loader',
59
+ 'css-loader',
60
+ 'sass-loader?indentedSyntax'
61
+ ]
62
+ }
63
+ // other vue-loader options go here
64
+ }
65
+ },
66
+ {
67
+ test: /\.js$/,
68
+ loader: 'babel-loader',
69
+ exclude: /node_modules/
70
+ },
71
+ {
72
+ test: /\.(png|jpg|gif|svg)$/,
73
+ loader: 'file-loader',
74
+ options: {
75
+ name: '[name].[ext]?[hash]'
76
+ }
77
+ }
78
+ ]
79
+ },
80
+ resolve: {
81
+ alias: {
82
+ 'vue$': 'vue/dist/vue.esm.js',
83
+ '@': resolve('src')
84
+ },
85
+ extensions: ['*', '.js', '.vue', '.json']
86
+ },
87
+ devServer: {
88
+ setup(app) {
89
+ app.post('*', (req, res) => {
90
+ res.redirect(req.originalUrl);
91
+ });
92
+ },
93
+ host:'0.0.0.0',
94
+ historyApiFallback: true,
95
+ noInfo: true,
96
+ overlay: true,
97
+ proxy: {
98
+ '/api/*': {
99
+ target: 'https://testgemini.ihasl.com',
100
+ changeOrigin: true,
101
+ secure: true
102
+ },'/mock/*': {
103
+ target: 'https://testgemini.ihasl.com',
104
+ changeOrigin: true,
105
+ secure: true
106
+ },
107
+ '/find/*': {
108
+ target: 'http://175.24.244.148',
109
+ changeOrigin: true,
110
+ secure: true
111
+ },
112
+ '/find/': {
113
+ target: 'http://175.24.244.148',
114
+ changeOrigin: true,
115
+ secure: true
116
+ }
117
+ }
118
+ },
119
+ performance: {
120
+ hints: false
121
+ },
122
+ devtool: '#eval-source-map'
123
+ }
124
+
125
+ if (process.env.NODE_ENV === 'production') {
126
+ module.exports.devtool = '#source-map'
127
+ // http://vue-loader.vuejs.org/en/workflow/production.html
128
+ module.exports.plugins = (module.exports.plugins || []).concat([
129
+ new webpack.DefinePlugin({
130
+ 'process.env': {
131
+ NODE_ENV: '"production"'
132
+ }
133
+ }),
134
+ new webpack.optimize.UglifyJsPlugin({
135
+ sourceMap: true,
136
+ compress: {
137
+ warnings: false
138
+ }
139
+ }),
140
+ new webpack.LoaderOptionsPlugin({
141
+ minimize: true
142
+ })
143
+ ])
144
+ }
package/fstarter.iml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="NewModuleRootManager" inherit-compiler-output="true">
4
- <exclude-output />
5
- <content url="file://$MODULE_DIR$" />
6
- <orderEntry type="inheritedJdk" />
7
- <orderEntry type="sourceFolder" forTests="false" />
8
- </component>
9
- </module>