apply-clients 3.3.77 → 3.3.81
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/build/dev-server-app.js +76 -76
- package/build/dev-server.js +127 -130
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/applyAndroid.js +34 -34
- package/src/components/android/AppServiceView.vue +683 -662
- package/src/components/android/AppSign.vue +142 -151
- package/src/components/android/AppTakePic.vue +143 -144
- package/src/components/android/Process/AppExplorationUser.vue +492 -492
- package/src/components/android/Process/AppServiceControl.vue +1348 -1341
- package/src/components/android/Process/Processes/AppSupplementalAgreement.vue +1 -0
- package/src/components/android/Process/Processes/selectApply.vue +1 -1
- package/src/components/android/Process/Processes/selectUserinfo.vue +1 -1
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +311 -311
- package/src/components/product/Function/InstallInfoSelect.vue +320 -320
- package/src/components/product/ServiceView.vue +23 -2
- package/src/components/product/Supervisory/SupervisoryList.vue +316 -316
- package/src/main.js +28 -27
- package/yarn.lock +9013 -0
- package/.project +0 -17
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<div v-for="(index,item) in data.fields">
|
|
7
7
|
<!--input-->
|
|
8
8
|
<div :style="item.style ? item.style+';height: 40px;margin-bottom: 20px':'height: 40px;margin-bottom: 20px'"
|
|
9
|
-
v-if="(item.type==='input' || item.type==='number'||item.type === 'tel'||item.type === 'email') && !item.hidden && (item.device === 'pc' || !item.device) && (item.label
|
|
9
|
+
v-if="(item.type==='input' || item.type==='number'||item.type === 'tel'||item.type === 'email') && !item.hidden && (item.device === 'pc' || !item.device) && ( item.label != '证件号码')&&( item.label !== '身份证') && (item.label !== '用户电话')"
|
|
10
10
|
:class="[item.required && !(item.value) ? 'has-error' : '',item.bootstraped ? item.bootstraped + ' form-group':'col-sm-4 form-group']">
|
|
11
11
|
<label :style="item.label_style ? item.label_style : ''"
|
|
12
12
|
:class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
|
|
@@ -26,6 +26,27 @@
|
|
|
26
26
|
</div>
|
|
27
27
|
</div>
|
|
28
28
|
|
|
29
|
+
<!--input-->
|
|
30
|
+
<div :style="item.style ? item.style+';height: 40px;margin-bottom: 20px':'height: 40px;margin-bottom: 20px'"
|
|
31
|
+
v-if="((data.f_credentials === '军官证' ||data.f_credentials === '营业执照')&& item.label === '证件号码')"
|
|
32
|
+
:class="[item.required && !(item.value) ? 'has-error' : '',item.bootstraped ? item.bootstraped + ' form-group':'col-sm-4 form-group']">
|
|
33
|
+
<label :style="item.label_style ? item.label_style : ''"
|
|
34
|
+
:class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
|
|
35
|
+
<div :style="item.value_style ? item.value_style:''"
|
|
36
|
+
:class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
|
|
37
|
+
<input class="form-control input_view" style=""
|
|
38
|
+
:type="item.type"
|
|
39
|
+
v-model="data.fields[index].value"
|
|
40
|
+
:placeholder="item.placeholder"
|
|
41
|
+
:value="data.fields[index].value"
|
|
42
|
+
:readonly="item.readonly"
|
|
43
|
+
:disabled="item.disabled"
|
|
44
|
+
@change="onchange(index)"
|
|
45
|
+
@blur="onblur(index)"
|
|
46
|
+
@input="oninput(index)"
|
|
47
|
+
/>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
29
50
|
|
|
30
51
|
<div :style="item.style ? item.style+';height: 40px;margin-bottom: 20px':'height: 40px;margin-bottom: 20px'"
|
|
31
52
|
v-if="(item.label==='身份证') || (data.f_credentials === '身份证' && item.label === '证件号码')"
|
|
@@ -62,7 +83,7 @@
|
|
|
62
83
|
<input class="form-control input_view" style=""
|
|
63
84
|
type="number"
|
|
64
85
|
oninput="if(value.length > 11) value=value.slice(0,11)"
|
|
65
|
-
v-validate:f_user_phone="{minlength:
|
|
86
|
+
v-validate:f_user_phone="{minlength: 7, maxlength: 11 }"
|
|
66
87
|
v-model="data.fields[index].value"
|
|
67
88
|
:placeholder="item.placeholder"
|
|
68
89
|
:value="data.fields[index].value"
|