Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/html/xui/form')
-rw-r--r--web/html/xui/form/client.html386
-rw-r--r--web/html/xui/form/inbound.html139
-rw-r--r--web/html/xui/form/outbound.html681
-rw-r--r--web/html/xui/form/protocol/dokodemo.html56
-rw-r--r--web/html/xui/form/protocol/http.html2
-rw-r--r--web/html/xui/form/protocol/shadowsocks.html74
-rw-r--r--web/html/xui/form/protocol/socks.html79
-rw-r--r--web/html/xui/form/protocol/trojan.html106
-rw-r--r--web/html/xui/form/protocol/vless.html112
-rw-r--r--web/html/xui/form/protocol/vmess.html40
-rw-r--r--web/html/xui/form/sniffing.html37
-rw-r--r--web/html/xui/form/stream/external_proxy.html46
-rw-r--r--web/html/xui/form/stream/stream_grpc.html26
-rw-r--r--web/html/xui/form/stream/stream_http.html37
-rw-r--r--web/html/xui/form/stream/stream_kcp.html118
-rw-r--r--web/html/xui/form/stream/stream_quic.html61
-rw-r--r--web/html/xui/form/stream/stream_settings.html7
-rw-r--r--web/html/xui/form/stream/stream_sockopt.html60
-rw-r--r--web/html/xui/form/stream/stream_tcp.html159
-rw-r--r--web/html/xui/form/stream/stream_ws.html29
-rw-r--r--web/html/xui/form/tls_settings.html564
21 files changed, 1024 insertions, 1795 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html
index 0ade5241..e5236acc 100644
--- a/web/html/xui/form/client.html
+++ b/web/html/xui/form/client.html
@@ -1,223 +1,173 @@
{{define "form/client"}}
-<a-form layout="inline" v-if="client">
- <table width="100%" class="ant-table-tbody">
- <tr>
- <td>{{ i18n "pages.inbounds.enable" }}</td>
- <td>
- <a-form-item>
- <a-switch v-model="client.enable"></a-switch>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>
- <span>{{ i18n "pages.inbounds.email" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.emailDesc" }}</span>
- </template>
- <a-icon type="sync" @click="client.email = RandomUtil.randomLowerAndNum(9)"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input v-model.trim="client.email" style="width: 250px"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS">
- <td>password
- <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS" @click="client.password = RandomUtil.randomShadowsocksPassword()" type="sync"> </a-icon>
- <a-icon v-if="inbound.protocol === Protocols.TROJAN" @click="client.password = RandomUtil.randomSeq(10)" type="sync"> </a-icon>
- </td>
- <td>
- <a-form-item>
- <a-input v-model.trim="client.password" style="width: 250px"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS">
- <td>ID <a-icon @click="client.id = RandomUtil.randomUUID()" type="sync"></a-icon></td>
- <td>
- <a-input v-model.trim="client.id" style="width: 250px;"></a-input>
- </td>
- </tr>
- <tr v-if="client.email && app.subSettings.enable">
- <td>Subscription <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon></td>
- <td>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
- </template>
- </a-tooltip>
- <a-form-item>
- <a-input v-model.trim="client.subId" style="width: 250px;"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="client.email && app.tgBotEnable">
- <td>Telegram ID
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.telegramDesc" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input v-model.trim="client.tgId" style="width: 250px"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>
- <span>{{ i18n "pages.inbounds.IPLimit" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.IPLimitDesc" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input-number v-model="client.limitIp" min="0"></a-input-number>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="client.email && client.limitIp > 0 && isEdit">
- <td>
- <span>{{ i18n "pages.inbounds.IPLimitlog" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span>
- </template>
- <span style="color: #FF4D4F">
- <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon>
- </span>
- </a-tooltip>
- </td>
- <td>
- <a-form layout="block">
- <a-textarea id="clientIPs" readonly @click="getDBClientIps(client.email)"
- placeholder="Click To Get IPs" :auto-size="{ minRows: 5, maxRows: 10 }">
- </a-textarea>
- </a-form>
- </td>
- </tr>
- <tr v-if="inbound.xtls">
- <td>Flow</td>
- <td>
- <a-form-item>
- <a-select v-model="client.flow" style="width: 200px"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="">{{ i18n "none" }}</a-select-option>
- <a-select-option v-for="key in XTLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr v-else-if="inbound.canEnableTlsFlow()">
- <td>Flow</td>
- <td>
- <a-form-item>
- <a-select v-model="client.flow" style="width: 200px"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
- <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>
- <span>{{ i18n "pages.inbounds.totalFlow" }}</span> (GB)
- <a-tooltip>
- <template slot="title">
- 0 <span>{{ i18n "pages.inbounds.meansNoLimit" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input-number v-model="client._totalGB" :min="0"></a-input-number>
- </a-form-item>
- <template v-if="isEdit && clientStats">
- <br>
- <span> {{ i18n "usage" }}:</span>
- <a-tag :color="clientUsageColor(clientStats, app.trafficDiff)">
- [[ sizeFormat(clientStats.up) ]] /
- [[ sizeFormat(clientStats.down) ]]
- ([[ sizeFormat(clientStats.up + clientStats.down) ]])
- </a-tag>
- <a-tooltip>
- <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template>
- <a-icon type="retweet"
- @click="resetClientTraffic(client.email,clientStats.inboundId,$event.target)"
- v-if="client.email.length > 0"></a-icon>
- </a-tooltip>
+<a-form layout="horizontal" v-if="client" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
+ <a-form-item label='{{ i18n "pages.inbounds.enable" }}'>
+ <a-switch v-model="client.enable"></a-switch>
+ </a-form-item>
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.emailDesc" }}</span>
+ </template>
+ {{ i18n "pages.inbounds.email" }}
+ <a-icon type="sync" @click="client.email = RandomUtil.randomLowerAndNum(9)"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="client.email"></a-input>
+ </a-form-item>
+ <a-form-item v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.client.renew" }}</span>
+ </template>
+ {{ i18n "password" }}
+ <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS"@click="client.password = RandomUtil.randomShadowsocksPassword()" type="sync"></a-icon>
+ <a-icon v-if="inbound.protocol === Protocols.TROJAN" @click="client.password = RandomUtil.randomSeq(10)"type="sync"> </a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="client.password"></a-input>
+ </a-form-item>
+ <a-form-item v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.client.renew" }}</span>
+ </template>
+ ID <a-icon @click="client.id = RandomUtil.randomUUID()" type="sync"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="client.id"></a-input>
+ </a-form-item>
+ <a-form-item v-if="client.email && app.subSettings.enable">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
+ </template>
+ Subscription
+ <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="client.subId"></a-input>
+ </a-form-item>
+ <a-form-item v-if="client.email && app.tgBotEnable">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.telegramDesc" }}</span>
+ </template>
+ Telegram ID
+ <a-icon type="question-circle"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="client.tgId"></a-input>
+ </a-form-item>
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.IPLimitDesc"}}</span>
+ </template>
+ <span>{{ i18n "pages.inbounds.IPLimit"}} </span>
+ <a-icon type="question-circle" theme="filled"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input-number v-model="client.limitIp" min="0"></a-input-number>
+ </a-form-item>
+ <a-form-item v-if="client.email && client.limitIp > 0 && isEdit">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span>
+ </template>
+ <span>{{ i18n "pages.inbounds.IPLimitlog" }}</span>
+ <a-icon type="question-circle" theme="filled"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span>
+ </template>
+ <span style="color: #FF4D4F">
+ <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon>
+ </span>
+ </a-tooltip>
+ <a-form layout="block">
+ <a-textarea id="clientIPs" readonly @click="getDBClientIps(client.email)" placeholder="Click To Get IPs"
+ :auto-size="{ minRows: 5, maxRows: 10 }">
+ </a-textarea>
+ </a-form>
+ </a-form-item>
+ <a-form-item v-if="inbound.xtls" label='Flow'>
+ <a-select v-model="client.flow" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
+ <a-select-option v-for="key in XTLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item v-if="inbound.canEnableTlsFlow()" label='Flow'>
+ <a-select v-model="client.flow" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
+ <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ 0 <span>{{ i18n "pages.inbounds.meansNoLimit" }}</span>
+ </template>
+ {{ i18n "pages.inbounds.totalFlow" }}(GB)
+ <a-icon type="question-circle"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input-number v-model="client._totalGB" :min="0"></a-input-number>
+ </a-form-item>
+ <a-form-item v-if="isEdit && clientStats">
+ {{ i18n "usage" }}
+ <a-tag :color="clientUsageColor(clientStats, app.trafficDiff)">
+ [[ sizeFormat(clientStats.up) ]] /
+ [[ sizeFormat(clientStats.down) ]]
+ ([[ sizeFormat(clientStats.up + clientStats.down) ]])
+ </a-tag>
+ <a-tooltip>
+ <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template>
+ <a-icon type="retweet"
+ @click="resetClientTraffic(client.email,clientStats.inboundId,$event.target)"
+ v-if="client.email.length > 0"></a-icon>
+ </a-tooltip>
+ </a-form-item>
+ <a-form-item label='{{ i18n "pages.client.delayedStart" }}'>
+ <a-switch v-model="delayedStart" @click="client._expiryTime=0"></a-switch>
+ </a-form-item>
+ <a-form-item v-if="delayedStart" label='{{ i18n "pages.client.expireDays" }}'>
+ <a-input-number v-model.number="delayedExpireDays" :min="0"></a-input-number>
+ </a-form-item>
+ <a-form-item v-else>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</span>
</template>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "pages.client.delayedStart" }}</td>
- <td>
- <a-form-item>
- <a-switch v-model="delayedStart" @click="client._expiryTime=0"></a-switch>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="delayedStart">
- <td>{{ i18n "pages.client.expireDays" }}</td>
- <td>
- <a-form-item>
- <a-input-number v-model="delayedExpireDays" :min="0"></a-input-number>
- </a-form-item>
- </td>
- </tr>
- <tr v-else>
- <td>
<span>{{ i18n "pages.inbounds.expireDate" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
- :dropdown-class-name="themeSwitcher.currentTheme" v-model="client._expiryTime"
- style="width: 170px;"></a-date-picker>
- <a-tag color="red" v-if="isEdit && isExpiry">Expired</a-tag>
- </a-form-item>
- </td>
- </tr>
- <tr v-if="client.expiryTime != 0">
- <td>
- <span>{{ i18n "pages.client.renew" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.client.renewDesc" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input-number v-model.number="client.reset" :min="0"></a-input-number>
- </a-form-item>
- </td>
- </tr>
- </table>
+ <a-icon type="question-circle" theme="filled"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
+ :dropdown-class-name="themeSwitcher.currentTheme" v-model="client._expiryTime"></a-date-picker>
+ <a-tag color="red" v-if="isEdit && isExpiry">Expired</a-tag>
+ </a-form-item>
+ <a-form-item v-if="client.expiryTime != 0">
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.client.renewDesc" }}</span>
+ </template>
+ {{ i18n "pages.client.renew" }}
+ <a-icon type="question-circle" theme="filled"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input-number v-model.number="client.reset" :min="0"></a-input-number>
+ </a-form-item>
</a-form>
{{end}} \ No newline at end of file
diff --git a/web/html/xui/form/inbound.html b/web/html/xui/form/inbound.html
index 5514472b..6f0480c3 100644
--- a/web/html/xui/form/inbound.html
+++ b/web/html/xui/form/inbound.html
@@ -1,93 +1,64 @@
{{define "form/inbound"}}
<!-- base -->
-<a-form layout="inline">
- <table width="100%" class="ant-table-tbody">
- <tr>
- <td>{{ i18n "enable" }}</td>
- <td>
- <a-form-item>
- <a-switch v-model="dbInbound.enable"></a-switch>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "remark" }}</td>
- <td>
- <a-form-item>
- <a-input v-model.trim="dbInbound.remark" style="width: 250px;"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "protocol" }}</td>
- <td>
- <a-form-item>
- <a-select v-model="inbound.protocol" style="width: 250px;" :disabled="isEdit" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="p in Protocols" :key="p" :value="p">[[ p ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "monitor" }}
- <a-tooltip>
+<a-form :colon="false" :label-col="{ md: {span:6} }" :wrapper-col="{ md: {span:14} }">
+ <a-form-item label='{{ i18n "enable" }}'>
+ <a-switch v-model="dbInbound.enable"></a-switch>
+ </a-form-item>
+ <a-form-item label='{{ i18n "remark" }}'>
+ <a-input v-model.trim="dbInbound.remark"></a-input>
+ </a-form-item>
+
+ <a-form-item label='{{ i18n "protocol" }}'>
+ <a-select v-model="inbound.protocol" :disabled="isEdit" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="p in Protocols" :key="p" :value="p">[[ p ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
<template slot="title">
<span>{{ i18n "pages.inbounds.monitorDesc" }}</span>
</template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input v-model.trim="inbound.listen" style="width: 250px;"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "pages.inbounds.port" }}</td>
- <td>
- <a-form-item>
- <a-input-number v-model.number="inbound.port"></a-input-number>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>
- <span>{{ i18n "pages.inbounds.totalFlow" }}</span>(GB)
- <a-tooltip>
- <template slot="title">
- 0 <span>{{ i18n "pages.inbounds.meansNoLimit" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-input-number v-model="dbInbound.totalGB" :min="0"></a-input-number>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>
- <span>{{ i18n "pages.inbounds.expireDate" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </td>
- <td>
- <a-form-item>
- <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
- :dropdown-class-name="themeSwitcher.currentTheme"
- v-model="dbInbound._expiryTime" style="width: 250px;"></a-date-picker>
- </a-form-item>
- </td>
- </tr>
- </table>
-</a-form>
+ {{ i18n "monitor" }}
+ <a-icon type="question-circle"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input v-model.trim="inbound.listen"></a-input>
+ </a-form-item>
+
+ <a-form-item label='{{ i18n "pages.inbounds.port" }}'>
+ <a-input-number v-model.number="inbound.port"></a-input-number>
+ </a-form-item>
+
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ 0 <span>{{ i18n "pages.inbounds.meansNoLimit" }}</span>
+ </template>
+ {{ i18n "pages.inbounds.totalFlow" }}(GB)
+ <a-icon type="question-circle"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-input-number v-model="dbInbound.totalGB" :min="0"></a-input-number>
+ </a-form-item>
+ <a-form-item>
+ <template slot="label">
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</span>
+ </template>
+ {{ i18n "pages.inbounds.expireDate" }}
+ <a-icon type="question-circle"></a-icon>
+ </a-tooltip>
+ </template>
+ <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
+ :dropdown-class-name="themeSwitcher.currentTheme"
+ v-model="dbInbound._expiryTime"></a-date-picker>
+ </a-form-item>
+</a-form>
<!-- vmess settings -->
<template v-if="inbound.protocol === Protocols.VMESS">
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index 3473713b..28ef2285 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -2,535 +2,298 @@
<!-- base -->
<a-tabs :active-key="outModal.activeKey" style="padding: 0; background-color: transparent;" @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }">
<a-tab-pane key="1" tab="Form">
-<a-form layout="inline">
- <table width="100%" class="ant-table-tbody">
- <tr>
- <td>{{ i18n "protocol" }}</td>
- <td>
- <a-form-item>
- <a-select v-model="outbound.protocol" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>{{ i18n "pages.xray.outbound.tag" }}</td>
- <td>
- <a-form-item has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
- <a-input v-model.trim="outbound.tag" style="width: 250px" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
- </a-form-item>
- </td>
- </tr>
+<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
+ <a-form-item label='{{ i18n "protocol" }}'>
+ <a-select v-model="outbound.protocol" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item label='{{ i18n "pages.xray.outbound.tag" }}' has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
+ <a-input v-model.trim="outbound.tag" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
+ </a-form-item>
<!-- freedom settings-->
<template v-if="outbound.protocol === Protocols.Freedom">
- <tr>
- <td>Strategy</td>
- <td>
- <a-form-item>
- <a-select
- v-model="outbound.settings.domainStrategy"
- style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in outboundDomainStrategies" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>Fragment</td>
- <td>
- <a-form-item>
- <a-switch
- :checked="Object.keys(outbound.settings.fragment).length >0"
- @change="checked => outbound.settings.fragment = checked ? new Outbound.FreedomSettings.Fragment() : {}">
- </a-switch>
- </a-form-item>
- </td>
- </tr>
+ <a-form-item label='Strategy'>
+ <a-select
+ v-model="outbound.settings.domainStrategy"
+ :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="s in outboundDomainStrategies" :value="s">[[ s ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item label='Fragment'>
+ <a-switch
+ :checked="Object.keys(outbound.settings.fragment).length >0"
+ @change="checked => outbound.settings.fragment = checked ? new Outbound.FreedomSettings.Fragment() : {}">
+ </a-switch>
+ </a-form-item>
<template v-if="Object.keys(outbound.settings.fragment).length >0">
- <tr>
- <td>Packets</td>
- <td>
- <a-form-item>
- <a-select
- v-model="outbound.settings.fragment.packets"
- style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['1-3','tlshello']" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>Length</td>
- <td>
- <a-form-item>
- <a-input v-model.trim="outbound.settings.fragment.length" style="width: 250px"></a-input>
- </a-form-item>
- </td>
- </tr>
- <tr>
- <td>Interval</td>
- <td>
- <a-form-item>
- <a-input v-model.trim="outbound.settings.fragment.interval" style="width: 250px"></a-input>
- </a-form-item>
- </td>
- </tr>
+ <a-form-item label='Packets'>
+ <a-select
+ v-model="outbound.settings.fragment.packets"
+ :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="s in ['1-3','tlshello']" :value="s">[[ s ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item label='Length'>
+ <a-input v-model.trim="outbound.settings.fragment.length"></a-input>
+ </a-form-item>
+ <a-form-item label='Interval'>
+ <a-input v-model.trim="outbound.settings.fragment.interval"></a-input>
+ </a-form-item>
</template>
</template>
<!-- blackhole settings -->
<template v-if="outbound.protocol === Protocols.Blackhole">
- <tr>
- <td>Response Type</td>
- <td>
- <a-form-item>
- <a-select
- v-model="outbound.settings.type"
- style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['', 'none','http']" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- </td>
- </tr>
+ <a-form-item label='Response Type'>