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:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-12-09 18:18:06 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-12-09 18:18:06 +0300
commit0f1f3d843907ee35b19bd5f0aadc37958cee09e1 (patch)
treeaef111aecb13794a4e50debf042191a4f5dacb9b /web/html/xui
parent2088a4f815a6ddbb1d8a991614640797fa6ed598 (diff)
<tr> <td> instead of <a-form-item>
convert the form structure to use <tr> and <td> instead of <a-form-item>,
Diffstat (limited to 'web/html/xui')
-rw-r--r--web/html/xui/client_bulk_modal.html319
-rw-r--r--web/html/xui/form/client.html381
-rw-r--r--web/html/xui/form/inbound.html133
-rw-r--r--web/html/xui/form/protocol/dokodemo.html56
-rw-r--r--web/html/xui/form/protocol/http.html24
-rw-r--r--web/html/xui/form/protocol/shadowsocks.html58
-rw-r--r--web/html/xui/form/protocol/socks.html77
-rw-r--r--web/html/xui/form/stream/stream_grpc.html24
-rw-r--r--web/html/xui/form/stream/stream_http.html28
-rw-r--r--web/html/xui/form/stream/stream_kcp.html125
-rw-r--r--web/html/xui/form/stream/stream_quic.html60
-rw-r--r--web/html/xui/form/stream/stream_settings.html3
-rw-r--r--web/html/xui/form/stream/stream_tcp.html160
-rw-r--r--web/html/xui/form/stream/stream_ws.html10
-rw-r--r--web/html/xui/form/tls_settings.html560
15 files changed, 1285 insertions, 733 deletions
diff --git a/web/html/xui/client_bulk_modal.html b/web/html/xui/client_bulk_modal.html
index 9d79bee1..e0295110 100644
--- a/web/html/xui/client_bulk_modal.html
+++ b/web/html/xui/client_bulk_modal.html
@@ -1,134 +1,207 @@
{{define "clientsBulkModal"}}
-<a-modal id="client-bulk-modal" v-model="clientsBulkModal.visible" :title="clientsBulkModal.title" @ok="clientsBulkModal.ok"
- :confirm-loading="clientsBulkModal.confirmLoading" :closable="true" :mask-closable="false"
- :class="themeSwitcher.currentTheme"
- :ok-text="clientsBulkModal.okText" cancel-text='{{ i18n "close" }}'>
+<a-modal id="client-bulk-modal" v-model="clientsBulkModal.visible" :title="clientsBulkModal.title"
+ @ok="clientsBulkModal.ok" :confirm-loading="clientsBulkModal.confirmLoading" :closable="true" :mask-closable="false"
+ :ok-text="clientsBulkModal.okText" cancel-text='{{ i18n "close" }}' :class="themeSwitcher.currentTheme">
<a-form layout="inline">
- <a-form-item label='{{ i18n "pages.client.method" }}'>
- <a-select v-model="clientsBulkModal.emailMethod" buttonStyle="solid" style="width: 350px" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option :value="0">Random</a-select-option>
- <a-select-option :value="1">Random+Prefix</a-select-option>
- <a-select-option :value="2">Random+Prefix+Num</a-select-option>
- <a-select-option :value="3">Random+Prefix+Num+Postfix</a-select-option>
- <a-select-option :value="4">Prefix+Num+Postfix [ BE CAREFUL! ]</a-select-option>
- </a-select>
- </a-form-item><br />
- <a-form-item v-if="clientsBulkModal.emailMethod>1">
- <span slot="label">{{ i18n "pages.client.first" }}</span>
- <a-input-number v-model="clientsBulkModal.firstNum" :min="1"></a-input-number>
- </a-form-item>
- <a-form-item v-if="clientsBulkModal.emailMethod>1">
- <span slot="label">{{ i18n "pages.client.last" }}</span>
- <a-input-number v-model="clientsBulkModal.lastNum" :min="clientsBulkModal.firstNum"></a-input-number>
- </a-form-item>
- <a-form-item v-if="clientsBulkModal.emailMethod>0">
- <span slot="label">{{ i18n "pages.client.prefix" }}</span>
- <a-input v-model="clientsBulkModal.emailPrefix" style="width: 120px"></a-input>
- </a-form-item>
- <a-form-item v-if="clientsBulkModal.emailMethod>2">
- <span slot="label">{{ i18n "pages.client.postfix" }}</span>
- <a-input v-model="clientsBulkModal.emailPostfix" style="width: 120px"></a-input>
- </a-form-item>
- <a-form-item v-if="clientsBulkModal.emailMethod < 2">
- <span slot="label">{{ i18n "pages.client.clientCount" }}</span>
- <a-input-number v-model="clientsBulkModal.quantity" :min="1" :max="100"></a-input-number>
- </a-form-item>
- <a-form-item v-if="app.subSettings.enable">
- <span slot="label">
- Subscription
+ <table width="100%" class="ant-table-tbody">
+ <tr>
+ <td>{{ i18n "pages.client.method" }}</td>
+ <td>
+ <a-form-item>
+ <a-select v-model="clientsBulkModal.emailMethod" buttonStyle="solid" style="width: 250px"
+ :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option :value="0">Random</a-select-option>
+ <a-select-option :value="1">Random+Prefix</a-select-option>
+ <a-select-option :value="2">Random+Prefix+Num</a-select-option>
+ <a-select-option :value="3">Random+Prefix+Num+Postfix</a-select-option>
+ <a-select-option :value="4">Prefix+Num+Postfix</a-select-option>
+ </a-select>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.emailMethod>1">
+ <td>{{ i18n "pages.client.first" }}</td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model="clientsBulkModal.firstNum" :min="1"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.emailMethod>1">
+ <td>{{ i18n "pages.client.last" }}</td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model="clientsBulkModal.lastNum"
+ :min="clientsBulkModal.firstNum"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.emailMethod>0">
+ <td>{{ i18n "pages.client.prefix" }}</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="clientsBulkModal.emailPrefix" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.emailMethod>2">
+ <td>{{ i18n "pages.client.postfix" }}</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="clientsBulkModal.emailPostfix" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.emailMethod < 2">
+ <td>{{ i18n "pages.client.clientCount" }}</td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model="clientsBulkModal.quantity" :min="1" :max="100"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.inbound.canEnableTlsFlow()">
+ <td>Flow</td>
+ <td>
+ <a-form-item>
+ <a-select v-model="clientsBulkModal.flow" style="width: 250px"
+ :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 v-if="app.subSettings.enable">
+ <td>Subscription
<a-tooltip>
<template slot="title">
<span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
</template>
+ <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon>
+ </a-tooltip>
+ </td>
+ <td>
+ <a-form-item>
+ <a-input v-model.trim="clientsBulkModal.subId" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="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="clientsBulkModal.tgId" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <label>
+ <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>
+ </label>
+ </td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model="clientsBulkModal.limitIp" min="0"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td v-if="clientsBulkModal.inbound.xtls">
+ <label>Flow</label>
+ </td>
+ <td v-if="clientsBulkModal.inbound.xtls">
+ <a-form-item>
+ <a-select v-model="clientsBulkModal.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>
+ <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="clientsBulkModal.totalGB" :min="0"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>{{ i18n "pages.client.delayedStart" }}</td>
+ <td>
+ <a-form-item>
+ <a-switch v-model="clientsBulkModal.delayedStart"
+ @click="clientsBulkModal.expiryTime=0"></a-switch>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.delayedStart">
+ <td>{{ i18n "pages.client.expireDays" }}</td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model.number="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="clientsBulkModal.expiryTime"
+ style="width: 250px;"></a-date-picker>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="clientsBulkModal.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>
- </span>
- <a-input v-model.trim="clientsBulkModal.subId"></a-input>
- </a-form-item>
- <a-form-item v-if="app.tgBotEnable">
- <span slot="label">
- 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>
- </span>
- <a-input v-model.trim="clientsBulkModal.tgId"></a-input>
- </a-form-item>
- <br>
- <a-form-item>
- <span slot="label">
- <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>
- </span>
- <a-input-number v-model="clientsBulkModal.limitIp" min="0"></a-input-number>
- </a-form-item>
- <br>
- <a-form-item v-if="clientsBulkModal.inbound.xtls" label="Flow">
- <a-select v-model="clientsBulkModal.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>
- <a-form-item v-if="clientsBulkModal.inbound.canEnableTlsFlow()" label="Flow" layout="inline">
- <a-select v-model="clientsBulkModal.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>
- <a-form-item>
- <span slot="label">
- <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>
- </span>
- <a-input-number v-model="clientsBulkModal.totalGB" :min="0"></a-input-number>
- </a-form-item>
- <br>
- <a-form-item label='{{ i18n "pages.client.delayedStart" }}'>
- <a-switch v-model="clientsBulkModal.delayedStart" @click="clientsBulkModal.expiryTime=0"></a-switch>
- </a-form-item>
- <br>
- <a-form-item label='{{ i18n "pages.client.expireDays" }}' v-if="clientsBulkModal.delayedStart">
- <a-input-number v-model="delayedExpireDays" :min="0"></a-input-number>
- </a-form-item>
- <a-form-item v-else>
- <span slot="label">
- <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>
- </span>
- <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
- :dropdown-class-name="themeSwitcher.darkCardClass"
- v-model="clientsBulkModal.expiryTime" style="width: 300px;"></a-date-picker>
- </a-form-item>
- <a-form-item v-if="clientsBulkModal.expiryTime != 0">
- <span slot="label">
- <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>
- </span>
- <a-input-number v-model.number="clientsBulkModal.reset" :min="0"></a-input-number>
- </a-form-item>
+ </td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model.number="clientsBulkModal.reset" :min="0"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ </table>
</a-form>
</a-modal>
<script>
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html
index 724f067b..63b949af 100644
--- a/web/html/xui/form/client.html
+++ b/web/html/xui/form/client.html
@@ -1,168 +1,223 @@
{{define "form/client"}}
<a-form layout="inline" v-if="client">
- <a-form-item label='{{ i18n "pages.inbounds.enable" }}'>
- <a-switch v-model="client.enable"></a-switch>
- </a-form-item>
- <br>
- <a-form-item>
- <span slot="label">
- <span>{{ i18n "pages.inbounds.email" }}</span>
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.emailDesc" }}</span>
+ <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: 300px;"></a-input>
+ </td>
+ </tr>
+ <tr v-if="client.email && app.subSettings.enable">
+ <td>Subscription</td>
+ <td>
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
+ </template>
+ <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"> </a-icon>
+ </a-tooltip>
+ <a-form-item>
+ <a-input v-model.trim="client.subId" style="width: 150px;"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr v-if="client.email && app.tgBotEnable">
+ <td>Telegram ID</td>
+ <td>
+ <a-tooltip>
+ <template slot="title">
+ <span>{{ i18n "pages.inbounds.telegramDesc" }}</span>
+ </template>
+ <a-icon type="question-circle" theme="filled"></a-icon>
+ </a-tooltip>
+ <a-form-item>
+ <a-input v-model.trim="client.tgId"></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>
</template>
- </a-tooltip>
- </span>
- <a-icon @click="client.email = RandomUtil.randomLowerAndNum(8)" type="sync"> </a-icon>
- <a-input v-model.trim="client.email" style="width: 200px;"></a-input>
- </a-form-item>
- <a-form-item label="Password" v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS">
- <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-input v-model.trim="client.password" style="width: 300px;"></a-input>
- </a-form-item>
- <br>
- <a-form-item label="ID" v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS">
- <a-icon @click="client.id = RandomUtil.randomUUID()" type="sync"> </a-icon>
- <a-input v-model.trim="client.id" style="width: 300px;"></a-input>
- </a-form-item>
- <a-form-item v-if="client.email && app.subSettings.enable">
- <span slot="label">
- Subscription
- <a-tooltip>
- <template slot="title">
- <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
- </template>
- <a-icon type="question-circle" theme="filled"></a-icon>
- </a-tooltip>
- </span>
- <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"> </a-icon>
- <a-input v-model.trim="client.subId" style="width: 150px;"></a-input>
- </a-form-item>
- <a-form-item v-if="client.email && app.tgBotEnable" >
- <span slot="label">
- 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>
- </span>
- <a-input v-model.trim="client.tgId"></a-input>
- </a-form-item>
- <a-form-item>
- <span slot="label">
- <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>
- </span>
- <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">
- <span slot="label">
- <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>
- </span>
- <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>
- <br>
- <a-form-item v-if="inbound.xtls" label="Flow">
- <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>
- <a-form-item v-else-if="inbound.canEnableTlsFlow()" label="Flow">
- <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>
- <a-form-item>
- <span slot="label">
- <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>
- </span>
- <a-input-number v-model="client._totalGB" :min="0"></a-input-number>
- <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>
- </template>
- </a-form-item>
- <br>
- <a-form-item label='{{ i18n "pages.client.delayedStart" }}'>
- <a-switch v-model="delayedStart" @click="client._expiryTime=0"></a-switch>
- </a-form-item>
- <br>
- <a-form-item label='{{ i18n "pages.client.expireDays" }}' v-if="delayedStart">
- <a-input-number v-model="delayedExpireDays" :min="0"></a-input-number>
- </a-form-item>
- <a-form-item v-else>
- <span slot="label">
- <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>
- </span>
- <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>
- <a-form-item v-if="client.expiryTime != 0">
- <span slot="label">
- <span>{{ i18n "pages.client.renew" }}</span>
- <a-tool