fstarter 2.10.56 → 2.11.1
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.
- package/.babelrc +6 -6
- package/.editorconfig +9 -9
- package/index.html +22 -22
- package/index.js +222 -222
- package/package.json +104 -104
- package/src/App.vue +38 -38
- package/src/i18n/en-US.js +35 -35
- package/src/i18n/zh-CN.js +35 -35
- package/src/main.js +95 -95
- package/src/plugins/assets/ak.js +948 -948
- package/src/plugins/assets/callNative.js +490 -490
- package/src/plugins/assets/compressImg.js +75 -75
- package/src/plugins/assets/config.js +106 -106
- package/src/plugins/assets/fileServer.js +469 -469
- package/src/plugins/assets/http.js +344 -344
- package/src/plugins/assets/ua.js +27 -27
- package/src/plugins/components/BSButton.vue +61 -61
- package/src/plugins/components/BSCascader.vue +465 -465
- package/src/plugins/components/BSCell.vue +48 -48
- package/src/plugins/components/BSDatePicker.vue +167 -167
- package/src/plugins/components/BSImage.vue +42 -42
- package/src/plugins/components/BSInput.vue +140 -140
- package/src/plugins/components/BSList.vue +81 -81
- package/src/plugins/components/BSPicCode.vue +96 -96
- package/src/plugins/components/BSPopup.vue +43 -43
- package/src/plugins/components/BSRadio.vue +97 -97
- package/src/plugins/components/BSSearch.vue +109 -109
- package/src/plugins/components/BSSelect.vue +144 -144
- package/src/plugins/components/BSSign.vue +454 -454
- package/src/plugins/components/BSStepper.vue +115 -115
- package/src/plugins/components/BSUpload.vue +92 -92
- package/src/plugins/components/BSUpload2.vue +397 -397
- package/src/plugins/components/BSVerCode.vue +128 -128
- package/src/plugins/components/BSViewer.vue +92 -92
- package/src/plugins/components/base.js +496 -496
- package/src/plugins/components/base2.js +489 -489
- package/src/plugins/lib/weixin.js +20 -20
- package/src/plugins/platform/index.js +7 -7
- package/src/plugins/platform/isp_phone.js +310 -310
- package/src/plugins/plugins/README.md +560 -0
- package/src/plugins/plugins/browserUtils.js +925 -0
- package/src/plugins/plugins/components/imageCropper.vue +299 -0
- package/src/plugins/plugins/components/images/bz.png +0 -0
- package/src/plugins/plugins/components/images/correct.png +0 -0
- package/src/plugins/plugins/components/images/error.png +0 -0
- package/src/plugins/plugins/components/images/mohu.png +0 -0
- package/src/plugins/plugins/components/images/qs.png +0 -0
- package/src/plugins/plugins/components/images/zd.png +0 -0
- package/src/plugins/plugins/components/pdfPreview.vue +688 -0
- package/src/plugins/plugins/demo.vue +832 -0
- package/src/plugins/plugins/native-js-sdk.js +360 -0
- package/src/plugins/plugins/nativeUtils.js +1444 -0
- package/src/plugins/route/index.js +140 -140
- package/src/plugins/selector/index.js +342 -342
- package/src/plugins/service/index.js +81 -81
- package/src/plugins/services/callCamera.js +53 -53
- package/src/plugins/services/exit.js +37 -36
- package/src/plugins/services/face.js +69 -69
- package/src/plugins/services/faceH5.js +54 -54
- package/src/plugins/services/faceInApp.js +31 -31
- package/src/plugins/services/faceTx.js +61 -61
- package/src/plugins/services/getFaceResult.js +104 -104
- package/src/plugins/services/getH5FaceResult.js +62 -62
- package/src/plugins/services/getMenus.js +40 -40
- package/src/plugins/services/getSystemData.js +144 -128
- package/src/plugins/services/getToken.js +93 -79
- package/src/plugins/services/getTxFaceResult.js +83 -83
- package/src/plugins/services/getUserInfo.js +47 -47
- package/src/plugins/services/goSetPage.js +40 -40
- package/src/plugins/services/hideFhoneTitle.js +36 -36
- package/src/plugins/services/index.js +45 -45
- package/src/plugins/services/init.js +35 -35
- package/src/plugins/services/jumpView.js +42 -40
- package/src/plugins/services/logout.js +44 -43
- package/src/plugins/services/share.js +113 -113
- package/src/plugins/services/statusBarHeight.js +39 -39
- package/src/plugins/session/index.js +32 -32
- package/src/services/getAuthInfo.js +22 -22
- package/src/services/index.js +9 -9
- package/src/services/sendVerCode.js +23 -23
- package/src/views/auth.vue +367 -367
- package/src/views/auth2.vue +90 -90
- package/src/views/auth3.vue +157 -157
- package/src/views/auth4.vue +8979 -8979
- package/src/views/auth5.vue +50 -50
- package/src/views/authh5.vue +369 -369
- package/src/views/components/BankSelect.vue +55 -55
- package/src/views/foot.vue +140 -140
- package/src/views/page.vue +222 -222
- package/src/views/shellFunc.vue +41 -41
- package/themes/basic.css +1 -1
- package/webpack.config.js +144 -144
- package/fstarter.iml +0 -9
|
@@ -1,144 +1,144 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
|
|
4
|
-
<van-field
|
|
5
|
-
:label="model.label"
|
|
6
|
-
v-model="model.text"
|
|
7
|
-
:placeholder="placeholder2"
|
|
8
|
-
:input-align="model.inputAlign"
|
|
9
|
-
@click="popUp"
|
|
10
|
-
readonly
|
|
11
|
-
:error-message="model.hiddenValidate ? '': model.validateResult.message"
|
|
12
|
-
:class="ctlClass"
|
|
13
|
-
@blur="blur"
|
|
14
|
-
right-icon="arrow-down"
|
|
15
|
-
>
|
|
16
|
-
|
|
17
|
-
</van-field>
|
|
18
|
-
|
|
19
|
-
<van-popup v-model="isPopup" position="bottom" :overlay="true">
|
|
20
|
-
<van-picker
|
|
21
|
-
:title="model.placeholder"
|
|
22
|
-
:columns="model.items"
|
|
23
|
-
show-toolbar @confirm="confirm" @cancel='cancel'
|
|
24
|
-
value-key="value"
|
|
25
|
-
/>
|
|
26
|
-
</van-popup>
|
|
27
|
-
|
|
28
|
-
</div>
|
|
29
|
-
</template>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
|
|
33
|
-
import config from '../assets/config.js'
|
|
34
|
-
import base2 from './base2.js'
|
|
35
|
-
|
|
36
|
-
export default {
|
|
37
|
-
name: "bs-select",
|
|
38
|
-
mixins: [base2],
|
|
39
|
-
components: { },
|
|
40
|
-
props: {
|
|
41
|
-
|
|
42
|
-
},
|
|
43
|
-
data() {
|
|
44
|
-
return {
|
|
45
|
-
validateCtl:true,
|
|
46
|
-
isPopup:false
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
mounted() {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
},
|
|
53
|
-
methods: {
|
|
54
|
-
createDefaultModel() {
|
|
55
|
-
return {
|
|
56
|
-
value:'',
|
|
57
|
-
text:'',
|
|
58
|
-
inputAlign: 'left',
|
|
59
|
-
type:'BSSelect',
|
|
60
|
-
placeholder:'lang.ctl.BSSelect.placeholder',
|
|
61
|
-
items: []
|
|
62
|
-
};
|
|
63
|
-
},
|
|
64
|
-
popUp(){
|
|
65
|
-
|
|
66
|
-
this.isPopup = true && !this.model.readonly
|
|
67
|
-
},
|
|
68
|
-
cancel(){
|
|
69
|
-
|
|
70
|
-
this.isPopup = false
|
|
71
|
-
},
|
|
72
|
-
confirm(value){
|
|
73
|
-
|
|
74
|
-
this.model.value = value.key;
|
|
75
|
-
this.model.validateToken++
|
|
76
|
-
this.isPopup = false
|
|
77
|
-
|
|
78
|
-
//将废弃change
|
|
79
|
-
this.$emit('change', value)
|
|
80
|
-
this.$emit('changed',function(){
|
|
81
|
-
|
|
82
|
-
},this.fullName)
|
|
83
|
-
},
|
|
84
|
-
blur(){
|
|
85
|
-
|
|
86
|
-
if(!this.model.readonly)
|
|
87
|
-
this.model.validateToken++
|
|
88
|
-
|
|
89
|
-
this.$emit('blur',function(){
|
|
90
|
-
|
|
91
|
-
},this.fullName)
|
|
92
|
-
|
|
93
|
-
},
|
|
94
|
-
},
|
|
95
|
-
watch: {
|
|
96
|
-
|
|
97
|
-
'model.value':{
|
|
98
|
-
handler(val,oldval){
|
|
99
|
-
|
|
100
|
-
this.saveLocalValue(val)
|
|
101
|
-
|
|
102
|
-
this.model.items.forEach((item, index) => {
|
|
103
|
-
if (item.key == val) {
|
|
104
|
-
this.model.text = item.value
|
|
105
|
-
}
|
|
106
|
-
})
|
|
107
|
-
|
|
108
|
-
this.setEventString(this.fullName,this.sname,'value',val,oldval)
|
|
109
|
-
},
|
|
110
|
-
deep:false
|
|
111
|
-
},
|
|
112
|
-
'model.items':{
|
|
113
|
-
handler(val,oldval){
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
},
|
|
118
|
-
deep:false
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
computed: {
|
|
122
|
-
|
|
123
|
-
placeholder2(){
|
|
124
|
-
|
|
125
|
-
if(this.model.readonly){
|
|
126
|
-
return ''
|
|
127
|
-
}else{
|
|
128
|
-
return this.model.placeholder
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
</script>
|
|
137
|
-
|
|
138
|
-
<style scoped>
|
|
139
|
-
|
|
140
|
-
.BSSelect_readonly{
|
|
141
|
-
color:#999999;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
|
|
4
|
+
<van-field
|
|
5
|
+
:label="model.label"
|
|
6
|
+
v-model="model.text"
|
|
7
|
+
:placeholder="placeholder2"
|
|
8
|
+
:input-align="model.inputAlign"
|
|
9
|
+
@click="popUp"
|
|
10
|
+
readonly
|
|
11
|
+
:error-message="model.hiddenValidate ? '': model.validateResult.message"
|
|
12
|
+
:class="ctlClass"
|
|
13
|
+
@blur="blur"
|
|
14
|
+
right-icon="arrow-down"
|
|
15
|
+
>
|
|
16
|
+
|
|
17
|
+
</van-field>
|
|
18
|
+
|
|
19
|
+
<van-popup v-model="isPopup" position="bottom" :overlay="true">
|
|
20
|
+
<van-picker
|
|
21
|
+
:title="model.placeholder"
|
|
22
|
+
:columns="model.items"
|
|
23
|
+
show-toolbar @confirm="confirm" @cancel='cancel'
|
|
24
|
+
value-key="value"
|
|
25
|
+
/>
|
|
26
|
+
</van-popup>
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script>
|
|
32
|
+
|
|
33
|
+
import config from '../assets/config.js'
|
|
34
|
+
import base2 from './base2.js'
|
|
35
|
+
|
|
36
|
+
export default {
|
|
37
|
+
name: "bs-select",
|
|
38
|
+
mixins: [base2],
|
|
39
|
+
components: { },
|
|
40
|
+
props: {
|
|
41
|
+
|
|
42
|
+
},
|
|
43
|
+
data() {
|
|
44
|
+
return {
|
|
45
|
+
validateCtl:true,
|
|
46
|
+
isPopup:false
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
mounted() {
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
},
|
|
53
|
+
methods: {
|
|
54
|
+
createDefaultModel() {
|
|
55
|
+
return {
|
|
56
|
+
value:'',
|
|
57
|
+
text:'',
|
|
58
|
+
inputAlign: 'left',
|
|
59
|
+
type:'BSSelect',
|
|
60
|
+
placeholder:'lang.ctl.BSSelect.placeholder',
|
|
61
|
+
items: []
|
|
62
|
+
};
|
|
63
|
+
},
|
|
64
|
+
popUp(){
|
|
65
|
+
|
|
66
|
+
this.isPopup = true && !this.model.readonly
|
|
67
|
+
},
|
|
68
|
+
cancel(){
|
|
69
|
+
|
|
70
|
+
this.isPopup = false
|
|
71
|
+
},
|
|
72
|
+
confirm(value){
|
|
73
|
+
|
|
74
|
+
this.model.value = value.key;
|
|
75
|
+
this.model.validateToken++
|
|
76
|
+
this.isPopup = false
|
|
77
|
+
|
|
78
|
+
//将废弃change
|
|
79
|
+
this.$emit('change', value)
|
|
80
|
+
this.$emit('changed',function(){
|
|
81
|
+
|
|
82
|
+
},this.fullName)
|
|
83
|
+
},
|
|
84
|
+
blur(){
|
|
85
|
+
|
|
86
|
+
if(!this.model.readonly)
|
|
87
|
+
this.model.validateToken++
|
|
88
|
+
|
|
89
|
+
this.$emit('blur',function(){
|
|
90
|
+
|
|
91
|
+
},this.fullName)
|
|
92
|
+
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
watch: {
|
|
96
|
+
|
|
97
|
+
'model.value':{
|
|
98
|
+
handler(val,oldval){
|
|
99
|
+
|
|
100
|
+
this.saveLocalValue(val)
|
|
101
|
+
|
|
102
|
+
this.model.items.forEach((item, index) => {
|
|
103
|
+
if (item.key == val) {
|
|
104
|
+
this.model.text = item.value
|
|
105
|
+
}
|
|
106
|
+
})
|
|
107
|
+
|
|
108
|
+
this.setEventString(this.fullName,this.sname,'value',val,oldval)
|
|
109
|
+
},
|
|
110
|
+
deep:false
|
|
111
|
+
},
|
|
112
|
+
'model.items':{
|
|
113
|
+
handler(val,oldval){
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
},
|
|
118
|
+
deep:false
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
computed: {
|
|
122
|
+
|
|
123
|
+
placeholder2(){
|
|
124
|
+
|
|
125
|
+
if(this.model.readonly){
|
|
126
|
+
return ''
|
|
127
|
+
}else{
|
|
128
|
+
return this.model.placeholder
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
</script>
|
|
137
|
+
|
|
138
|
+
<style scoped>
|
|
139
|
+
|
|
140
|
+
.BSSelect_readonly{
|
|
141
|
+
color:#999999;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
</style>
|