jufubao-base 1.0.322 → 1.0.323-beta2
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/package.json
CHANGED
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
<view v-if="showCode" class="jfb-base-con-phone__body-wrap-input">
|
|
28
28
|
<view v-if="showID">
|
|
29
29
|
<input
|
|
30
|
-
@input="filterSpaces"
|
|
31
30
|
v-model="staff_id_name"
|
|
32
31
|
:placeholder="holdID"
|
|
33
32
|
type="text"
|
|
@@ -35,7 +34,6 @@
|
|
|
35
34
|
</view>
|
|
36
35
|
<view v-if="showName">
|
|
37
36
|
<input
|
|
38
|
-
@input="filterSpaces"
|
|
39
37
|
v-model="staff_name_name"
|
|
40
38
|
:placeholder="holdName"
|
|
41
39
|
type="text"
|
|
@@ -80,7 +78,6 @@
|
|
|
80
78
|
<view v-else class="jfb-base-con-phone__body-wrap-input">
|
|
81
79
|
<view v-if="showID">
|
|
82
80
|
<input
|
|
83
|
-
@input="filterSpaces"
|
|
84
81
|
v-model="staff_id_name"
|
|
85
82
|
:placeholder="holdID"
|
|
86
83
|
type="text"
|
|
@@ -88,7 +85,6 @@
|
|
|
88
85
|
</view>
|
|
89
86
|
<view v-if="showName">
|
|
90
87
|
<input
|
|
91
|
-
@input="filterSpaces"
|
|
92
88
|
v-model="staff_name_name"
|
|
93
89
|
:placeholder="holdName"
|
|
94
90
|
type="text"
|
|
@@ -530,6 +526,7 @@ export default {
|
|
|
530
526
|
|
|
531
527
|
},
|
|
532
528
|
handleConfirm() {
|
|
529
|
+
debugger
|
|
533
530
|
let data = {
|
|
534
531
|
...this.options,
|
|
535
532
|
distribution_method: this.method,
|
|
@@ -538,11 +535,9 @@ export default {
|
|
|
538
535
|
phone: this.showCode ? this.phoneNumber : null,
|
|
539
536
|
valid_code: this.showCode ? this.valid_code : null,
|
|
540
537
|
biz_name: "login",
|
|
541
|
-
staff_id:this.staff_id_name,
|
|
542
|
-
staff_name:this.staff_name_name,
|
|
543
538
|
}
|
|
544
|
-
if(this.showID) data['
|
|
545
|
-
if(this.showName) data['
|
|
539
|
+
if(this.showID) data['staff_id'] = this.staff_id_name;
|
|
540
|
+
if(this.showName) data['staff_name'] = this.staff_name_name;
|
|
546
541
|
|
|
547
542
|
if(this.phone_signature === 'Y') data['phone_signature'] = this.phone_signature_url;
|
|
548
543
|
this.$xdShowLoading({});
|