mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-02 11:47:57 +08:00
Merge branch 'main' of https://github.com/eolinker/eoapi
This commit is contained in:
commit
c68966ed4a
@ -80,7 +80,7 @@ export class ParamsImportComponent {
|
||||
}
|
||||
}
|
||||
if (this.contentType === 'query') {
|
||||
paramCode = qs.parse(this.paramCode.split('?')[1]);
|
||||
paramCode = qs.parse(this.paramCode.indexOf('?') > -1 ? this.paramCode.split('?')[1] : this.paramCode);
|
||||
// console.log('-->', paramCode);
|
||||
}
|
||||
if (this.contentType === 'formData') {
|
||||
|
@ -34,6 +34,7 @@ export class SettingComponent implements OnInit {
|
||||
extensitonConfigurations: any[];
|
||||
@Input() set isShowModal(val) {
|
||||
this.$isShowModal = val;
|
||||
this.isShowModalChange.emit(val);
|
||||
if (val) {
|
||||
this.init();
|
||||
this.remoteServerUrl = this.settings['eoapi-common.remoteServer.url'];
|
||||
@ -272,6 +273,6 @@ export class SettingComponent implements OnInit {
|
||||
this.handleSave();
|
||||
|
||||
this.isShowModal = false;
|
||||
this.isShowModalChange.emit(false);
|
||||
// this.isShowModalChange.emit(false);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user