mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-03-02 01:30:51 +03:00
multi path in tcp request header #1300
This commit is contained in:
parent
1efbb29ba5
commit
f2f066ac3b
@ -21,8 +21,13 @@
|
|||||||
<a-input v-model.trim="inbound.stream.tcp.request.method"></a-input>
|
<a-input v-model.trim="inbound.stream.tcp.request.method"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label='{{ i18n "pages.inbounds.stream.tcp.requestPath" }}'>
|
<a-form-item label='{{ i18n "pages.inbounds.stream.tcp.requestPath" }}'>
|
||||||
|
<a-button size="small" @click="inbound.stream.tcp.request.addPath('/')">+</a-button>
|
||||||
<a-row v-for="(path, index) in inbound.stream.tcp.request.path">
|
<a-row v-for="(path, index) in inbound.stream.tcp.request.path">
|
||||||
<a-input v-model.trim="inbound.stream.tcp.request.path[index]"></a-input>
|
<a-input v-model.trim="inbound.stream.tcp.request.path[index]" style="width: 200px;">
|
||||||
|
<a-button size="small" slot="addonAfter"
|
||||||
|
@click="inbound.stream.tcp.request.removePath(index)"
|
||||||
|
v-if="inbound.stream.tcp.request.path.length>1">-</a-button>
|
||||||
|
</a-input>
|
||||||
</a-row>
|
</a-row>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<br>
|
<br>
|
||||||
|
Loading…
Reference in New Issue
Block a user