瀏覽代碼

Keep style unified

szkzn 1 年之前
父節點
當前提交
e538e52f6e
共有 1 個文件被更改,包括 8 次插入4 次删除
  1. 8 4
      src/views/Subconverter.vue

+ 8 - 4
src/views/Subconverter.vue

@@ -409,16 +409,20 @@ export default {
 
       if (this.advanced === "2") {
         if (this.form.remoteConfig) {
-          this.customSubUrl += "&config=" + encodeURIComponent(this.form.remoteConfig);
+          this.customSubUrl +=
+            "&config=" + encodeURIComponent(this.form.remoteConfig);
         }
         if (this.form.excludeRemarks) {
-          this.customSubUrl += "&exclude=" + encodeURIComponent(this.form.excludeRemarks);
+          this.customSubUrl +=
+            "&exclude=" + encodeURIComponent(this.form.excludeRemarks);
         }
         if (this.form.includeRemarks) {
-          this.customSubUrl += "&include=" + encodeURIComponent(this.form.includeRemarks);
+          this.customSubUrl +=
+            "&include=" + encodeURIComponent(this.form.includeRemarks);
         }
         if (this.form.filename) {
-          this.customSubUrl += "&filename=" + encodeURIComponent(this.form.filename);
+          this.customSubUrl +=
+            "&filename=" + encodeURIComponent(this.form.filename);
         }
         if (this.form.appendType) {
           this.customSubUrl +=