sale-client 3.5.145 → 3.5.146
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
|
@@ -426,8 +426,9 @@ export default {
|
|
|
426
426
|
// 对综合用户基本信息进行校验
|
|
427
427
|
|
|
428
428
|
// 将oldAddress 置为空,
|
|
429
|
+
debugger
|
|
429
430
|
this.oldAddress = {}
|
|
430
|
-
this.data.baseinfo.base.f_user_state = this.data.baseinfo.base.f_user_state ? [this.data.baseinfo.base.f_user_state]
|
|
431
|
+
this.data.baseinfo.base.f_user_state = this.data.baseinfo.base.f_user_state === '预备' ? ['正常'] : [this.data.baseinfo.base.f_user_state]
|
|
431
432
|
// this.data.baseinfo.base.f_user_nature = this.data.baseinfo.base.f_user_nature ? [this.data.baseinfo.base.f_user_nature] : '民用'
|
|
432
433
|
// this.data.baseinfo.base.f_credentials = this.data.baseinfo.base.f_credentials ? [this.data.baseinfo.base.f_credentials] : '身份证'
|
|
433
434
|
this.data.baseinfo.base.f_cost_type = this.data.baseinfo.base.f_cost_type ? [this.data.baseinfo.base.f_cost_type] : '现金缴费'
|
|
@@ -102,7 +102,7 @@ export default {
|
|
|
102
102
|
data: {
|
|
103
103
|
baseinfo: {
|
|
104
104
|
base: {
|
|
105
|
-
f_user_state: '',
|
|
105
|
+
f_user_state: ['正常'],
|
|
106
106
|
f_print_dh: '暂不选择',
|
|
107
107
|
f_print_lc: '点火单',
|
|
108
108
|
f_credentials: '',
|
|
@@ -353,7 +353,7 @@ export default {
|
|
|
353
353
|
|
|
354
354
|
// 将oldAddress 置为空,
|
|
355
355
|
this.oldAddress = {}
|
|
356
|
-
this.data.baseinfo.base.f_user_state = this.data.baseinfo.base.f_user_state ? ['正常'] : '正常'
|
|
356
|
+
this.data.baseinfo.base.f_user_state = this.data.baseinfo.base.f_user_state ? ['正常'] : ['正常']
|
|
357
357
|
this.data.baseinfo.base.f_credentials = this.data.baseinfo.base.f_credentials ? [this.data.baseinfo.base.f_credentials] : '身份证'
|
|
358
358
|
this.data.baseinfo.base.f_cost_type = this.data.baseinfo.base.f_cost_type ? [this.data.baseinfo.base.f_cost_type] : '现金缴费'
|
|
359
359
|
this.data.baseinfo.base.f_bz_type = this.data.baseinfo.base.f_bz_type ? [this.data.baseinfo.base.f_bz_type] : ''
|