'checked'
This commit is contained in:
parent
d42f399a49
commit
b4634994bf
|
@ -80,9 +80,6 @@
|
|||
password: '2345678',*/
|
||||
},
|
||||
result: {},
|
||||
/*SSL: [],
|
||||
TLS: [],
|
||||
SMTP: [],*/
|
||||
showEdit: true,
|
||||
showSave: false,
|
||||
showCancel: false,
|
||||
|
@ -123,9 +120,9 @@
|
|||
this.$set(this.formInline, "port", response.data[1].paramValue);
|
||||
this.$set(this.formInline, "account", response.data[2].paramValue);
|
||||
this.$set(this.formInline, "password", response.data[3].paramValue);
|
||||
this.$set(this.formInline, "SSL", response.data[4].paramValue);
|
||||
this.$set(this.formInline, "TLS", response.data[5].paramValue);
|
||||
this.$set(this.formInline, "SMTP", response.data[6].paramValue);
|
||||
this.$set(this.formInline, "SSL", JSON.parse(response.data[4].paramValue));
|
||||
this.$set(this.formInline, "TLS", JSON.parse(response.data[5].paramValue));
|
||||
this.$set(this.formInline, "SMTP", JSON.parse(response.data[6].paramValue));
|
||||
})
|
||||
},
|
||||
change() {
|
||||
|
|
Loading…
Reference in New Issue