|
|
@ -77,6 +77,9 @@ |
|
|
|
<el-row> |
|
|
|
<el-checkbox v-model="form.sort" label="排序节点"></el-checkbox> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-checkbox v-model="form.appendType" label="节点类型"></el-checkbox> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-checkbox v-model="form.udp" label="启用 UDP"></el-checkbox> |
|
|
|
</el-row> |
|
|
@ -370,7 +373,8 @@ export default { |
|
|
|
udp: false, |
|
|
|
tfo: false, |
|
|
|
scv: false, |
|
|
|
fdn: false |
|
|
|
fdn: false, |
|
|
|
appendType: false |
|
|
|
}, |
|
|
|
|
|
|
|
loading: false, |
|
|
@ -456,6 +460,10 @@ export default { |
|
|
|
this.customSubUrl += |
|
|
|
"&filename=" + encodeURIComponent(this.form.filename); |
|
|
|
} |
|
|
|
if (this.form.appendType) { |
|
|
|
this.customSubUrl += |
|
|
|
"&append_type=" + this.form.appendType.toString(); |
|
|
|
} |
|
|
|
|
|
|
|
this.customSubUrl += |
|
|
|
"&emoji=" + |
|
|
|