diff --git a/src/views/Subconverter.vue b/src/views/Subconverter.vue index faaaed9..5414310 100644 --- a/src/views/Subconverter.vue +++ b/src/views/Subconverter.vue @@ -25,10 +25,6 @@
- - - - + + + + + + + + + + + + + + + + + + + + 更多选项 + + +
@@ -195,11 +214,18 @@ export default { form: { sourceSubUrl: "", clientType: "", - emoji: "true", customBackend: "", remoteConfig: "", excludeRemarks: "", includeRemarks: "", + emoji: true, + nodeList: false, + extraset: false, + sort: false, + udp: false, + tfo: false, + scv: false, + fdn: true }, loading: false, @@ -286,6 +312,16 @@ export default { this.customSubUrl += "&include=" + encodeURIComponent(this.form.includeRemarks); } + + this.customSubUrl += + "&list=" + + this.form.nodeList.toString() + + "&udp=" + + this.form.udp.toString() + + "&tfo=" + + this.form.tfo.toString() + + "&scv=" + + this.form.scv.toString(); } this.$copyText(this.customSubUrl);