|
|
@@ -89,9 +89,15 @@ export default {
|
|
89
|
89
|
},
|
|
90
|
90
|
methods: {
|
|
91
|
91
|
clickEye() {
|
|
92
|
|
- this.ruleForm.idcard = decrypt(this.ruleForm.F_IdCardShow)
|
|
93
|
|
- this.ruleForm.telphone = decrypt(this.ruleForm.F_TelephoneShow)
|
|
94
|
|
- this.ruleForm.adddress = decrypt(this.ruleForm.F_AddressShow)
|
|
|
92
|
+ if (this.ruleForm.F_IdCardShow) {
|
|
|
93
|
+ this.ruleForm.idcard = decrypt(this.ruleForm.F_IdCardShow)
|
|
|
94
|
+ }
|
|
|
95
|
+ if (this.ruleForm.F_TelephoneShow) {
|
|
|
96
|
+ this.ruleForm.telphone = decrypt(this.ruleForm.F_TelephoneShow)
|
|
|
97
|
+ }
|
|
|
98
|
+ if (this.ruleForm.F_AddressShow) {
|
|
|
99
|
+ this.ruleForm.adddress = decrypt(this.ruleForm.F_AddressShow)
|
|
|
100
|
+ }
|
|
95
|
101
|
this.clickbefore = 1
|
|
96
|
102
|
// const params = {
|
|
97
|
103
|
// id:this.ruleForm.id
|