Merge remote-tracking branch 'origin/feature-20240104' into feature-20240104

master
382696293@qq.com 2 years ago
commit 285039d7e5

@ -381,6 +381,7 @@ export default {
} }
if (this.form.value) { if (this.form.value) {
this.form.value = this.form.value.replace(/\\/g, '') // this.form.value = this.form.value.replace(/\\/g, '') //
this.form.value = encodeURIComponent(this.form.value)
console.log(" this.form.value", this.form.value) console.log(" this.form.value", this.form.value)
} }
@ -432,30 +433,30 @@ export default {
// //
this.settingList.forEach((item) => { this.settingList.forEach((item) => {
if (item.key == 'USER_AGREEMENT') { if (item.key == 'USER_AGREEMENT') {
this.userAgreementFrom.userAgreement = item.value this.userAgreementFrom.userAgreement = decodeURIComponent(item.value);
this.userAgreementFrom.userAgreementId = item.id this.userAgreementFrom.userAgreementId = item.id
} }
if (item.key == 'PRIVACY_AGREEMENT') { if (item.key == 'PRIVACY_AGREEMENT') {
this.privacyAgreementFrom.privacyAgreement = item.value this.privacyAgreementFrom.privacyAgreement = decodeURIComponent(item.value);
this.privacyAgreementFrom.privacyAgreementId = item.id this.privacyAgreementFrom.privacyAgreementId = item.id
} }
if (item.key == 'INTEGRAL_RULE') { if (item.key == 'INTEGRAL_RULE') {
this.integralRuleFrom.integralRule = item.value this.integralRuleFrom.integralRule = decodeURIComponent(item.value);
this.integralRuleFrom.integralRuleId = item.id this.integralRuleFrom.integralRuleId = item.id
} }
if (item.key == 'ABOUT_US') { if (item.key == 'ABOUT_US') {
this.aboutUsFrom.aboutUs = item.value this.aboutUsFrom.aboutUs = decodeURIComponent(item.value);
this.aboutUsFrom.aboutUsId = item.id this.aboutUsFrom.aboutUsId = item.id
} }
if (item.key == 'BLUETOOTH_GUIDANCE_PERMISSIONS') { if (item.key == 'BLUETOOTH_GUIDANCE_PERMISSIONS') {
this.bluetoothGuidancePermissionsFrom.bluetoothGuidancePermissions = this.bluetoothGuidancePermissionsFrom.bluetoothGuidancePermissions =
item.value decodeURIComponent(item.value);
this.bluetoothGuidancePermissionsFrom.bluetoothGuidancePermissionsId = this.bluetoothGuidancePermissionsFrom.bluetoothGuidancePermissionsId =
item.id item.id
} }
if (item.key == 'LOCATION_GUIDANCE_PERMISSIONS') { if (item.key == 'LOCATION_GUIDANCE_PERMISSIONS') {
this.locationGuidancePermissionsFrom.locationGuidancePermissions = this.locationGuidancePermissionsFrom.locationGuidancePermissions =
item.value decodeURIComponent(item.value);
this.locationGuidancePermissionsFrom.locationGuidancePermissionsId = this.locationGuidancePermissionsFrom.locationGuidancePermissionsId =
item.id item.id
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save