diff options
| -rw-r--r-- | web/assets/js/model/inbound.js | 10 | ||||
| -rw-r--r-- | web/assets/js/model/outbound.js | 7 | ||||
| -rw-r--r-- | web/html/form/outbound.html | 110 | ||||
| -rw-r--r-- | web/html/form/protocol/vless.html | 78 |
4 files changed, 137 insertions, 68 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index e2c9e092..ba2304ef 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -1221,6 +1221,14 @@ class Inbound extends XrayCommonClass { return false; } + // Vision seed applies only when vision flow is selected + canEnableVisionSeed() { + if (!this.canEnableTlsFlow()) return false; + const clients = this.settings?.vlesses; + if (!Array.isArray(clients)) return false; + return clients.some(c => c?.flow === TLS_FLOW_CONTROL.VISION || c?.flow === TLS_FLOW_CONTROL.VISION_UDP443); + } + canEnableReality() { if (![Protocols.VLESS, Protocols.TROJAN].includes(this.protocol)) return false; return ["tcp", "http", "grpc", "xhttp"].includes(this.network); @@ -1902,7 +1910,7 @@ Inbound.VLESSSettings = class extends Inbound.Settings { if (json.testseed && Array.isArray(json.testseed) && json.testseed.length >= 4) { testseed = json.testseed; } - + const obj = new Inbound.VLESSSettings( Protocols.VLESS, (json.clients || []).map(client => Inbound.VLESSSettings.VLESS.fromJson(client)), diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index c631040e..295ac812 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -621,6 +621,13 @@ class Outbound extends CommonClass { return false; } + // Vision seed applies only when vision flow is selected + canEnableVisionSeed() { + if (!this.canEnableTlsFlow()) return false; + const flow = this.settings?.flow; + return flow === TLS_FLOW_CONTROL.VISION || flow === TLS_FLOW_CONTROL.VISION_UDP443; + } + canEnableReality() { if (![Protocols.VLESS, Protocols.Trojan].includes(this.protocol)) return false; return ["tcp", "http", "grpc", "xhttp"].includes(this.stream.network); diff --git a/web/html/form/outbound.html b/web/html/form/outbound.html index 1926c30e..511caefe 100644 --- a/web/html/form/outbound.html +++ b/web/html/form/outbound.html @@ -1,6 +1,7 @@ {{define "form/outbound"}} <!-- base --> -<a-tabs :active-key="outModal.activeKey" :style="{ padding: '0', backgroundColor: 'transparent' }" @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }"> +<a-tabs :active-key="outModal.activeKey" :style="{ padding: '0', backgroundColor: 'transparent' }" + @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }"> <a-tab-pane key="1" tab="Form"> <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label='{{ i18n "protocol" }}'> @@ -8,8 +9,10 @@ <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 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> <a-form-item label='{{ i18n "pages.xray.outbound.sendThrough" }}'> <a-input v-model="outbound.sendThrough"></a-input> @@ -59,12 +62,13 @@ <a-form-item label="Noises"> <a-button icon="plus" type="primary" size="small" @click="outbound.settings.addNoise()"></a-button> </a-form-item> - - <!-- Noise Configurations --> - <a-form v-for="(noise, index) in outbound.settings.noises" :key="index" :colon="false" :label-col="{ md: {span:8} }" - :wrapper-col="{ md: {span:14} }"> + + <!-- Noise Configurations --> + <a-form v-for="(noise, index) in outbound.settings.noises" :key="index" :colon="false" + :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-divider :style="{ margin: '0' }"> Noise [[ index + 1 ]] - <a-icon v-if="outbound.settings.noises.length > 1" type="delete" @click="() => outbound.settings.delNoise(index)" + <a-icon v-if="outbound.settings.noises.length > 1" type="delete" + @click="() => outbound.settings.delNoise(index)" :style="{ color: 'rgb(255, 77, 79)', cursor: 'pointer' }"></a-icon> </a-divider> <a-form-item label='Type'> @@ -108,7 +112,7 @@ <a-select-option v-for="s in ['reject','drop','skip']" :value="s">[[ s ]]</a-select-option> </a-select> </a-form-item> - <a-form-item v-if="outbound.settings.nonIPQuery === 'skip'" label='Block Types' > + <a-form-item v-if="outbound.settings.nonIPQuery === 'skip'" label='Block Types'> <a-input v-model.number="outbound.settings.blockTypes"></a-input> </a-form-item> </template> @@ -129,21 +133,21 @@ </a-form-item> <a-form-item> <template slot="label"> - <a-tooltip> - <template slot="title"> - <span>{{ i18n "reset" }}</span> - </template> - {{ i18n "pages.xray.wireguard.secretKey" }} - <a-icon type="sync" - @click="[outbound.settings.pubKey, outbound.settings.secretKey] = Object.values(Wireguard.generateKeypair())"> - </a-icon> - </a-tooltip> + <a-tooltip> + <template slot="title"> + <span>{{ i18n "reset" }}</span> + </template> + {{ i18n "pages.xray.wireguard.secretKey" }} + <a-icon type="sync" + @click="[outbound.settings.pubKey, outbound.settings.secretKey] = Object.values(Wireguard.generateKeypair())"> + </a-icon> + </a-tooltip> </template> <a-input v-model.trim="outbound.settings.secretKey"></a-input> - </a-form-item> - <a-form-item label='{{ i18n "pages.xray.wireguard.publicKey" }}'> + </a-form-item> + <a-form-item label='{{ i18n "pages.xray.wireguard.publicKey" }}'> <a-input disabled v-model="outbound.settings.pubKey"></a-input> - </a-form-item> + </a-form-item> <a-form-item label='{{ i18n "pages.xray.wireguard.domainStrategy" }}'> <a-select v-model="outbound.settings.domainStrategy" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option v-for="wds in ['', ...WireguardDomainStrategy]" :value="wds">[[ wds ]]</a-select-option> @@ -171,8 +175,11 @@ <a-form-item label="Peers"> <a-button icon="plus" type="primary" size="small" @click="outbound.settings.addPeer()"></a-button> </a-form-item> - <a-form v-for="(peer, index) in outbound.settings.peers" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> - <a-divider :style="{ margin: '0' }"> Peer [[ index + 1 ]] <a-icon v-if="outbound.settings.peers.length>1" type="delete" @click="() => outbound.settings.delPeer(index)" :style="{ color: 'rgb(255, 77, 79)', cursor: 'pointer' }"></a-icon> + <a-form v-for="(peer, index) in outbound.settings.peers" :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> + <a-divider :style="{ margin: '0' }"> Peer [[ index + 1 ]] <a-icon v-if="outbound.settings.peers.length>1" + type="delete" @click="() => outbound.settings.delPeer(index)" + :style="{ color: 'rgb(255, 77, 79)', cursor: 'pointer' }"></a-icon> </a-divider> <a-form-item label='{{ i18n "pages.xray.wireguard.endpoint" }}'> <a-input v-model.trim="peer.endpoint"></a-input> @@ -190,7 +197,8 @@ </template> <template v-for="(aip, index) in peer.allowedIPs" :style="{ marginBottom: '10px' }"> <a-input v-model.trim="peer.allowedIPs[index]"> - <a-button icon="minus" v-if="peer.allowedIPs.length>1" slot="addonAfter" size="small" @click="peer.allowedIPs.splice(index, 1)"></a-button> + <a-button icon="minus" v-if="peer.allowedIPs.length>1" slot="addonAfter" size="small" + @click="peer.allowedIPs.splice(index, 1)"></a-button> </a-input> </template> </a-form-item> @@ -210,7 +218,7 @@ </a-form-item> </template> - <!-- VLESS/VMess user settings --> + <!-- VLESS/VMess user settings --> <template v-if="[Protocols.VMess, Protocols.VLESS].includes(outbound.protocol)"> <a-form-item label='ID'> <a-input v-model.trim="outbound.settings.id"></a-input> @@ -240,23 +248,28 @@ </a-form-item> </template> <!-- XTLS Vision Advanced Settings --> - <template v-if="outbound.protocol === Protocols.VLESS && (outbound.settings.flow === 'xtls-rprx-vision' || outbound.settings.flow === 'xtls-rprx-vision-udp443')"> + <template v-if="outbound.canEnableVisionSeed()"> <a-form-item label="Vision Pre-Connect"> - <a-input-number v-model.number="outbound.settings.testpre" :min="0" :max="10" :style="{ width: '100%' }" placeholder="0"></a-input-number> + <a-input-number v-model.number="outbound.settings.testpre" :min="0" :max="10" :style="{ width: '100%' }" + placeholder="0"></a-input-number> </a-form-item> <a-form-item label="Vision Seed"> <a-row :gutter="8"> <a-col :span="6"> - <a-input-number v-model.number="outbound.settings.testseed[0]" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="900" addon-before="[0]"></a-input-number> + <a-input-number v-model.number="outbound.settings.testseed[0]" :min="0" :max="9999" + :style="{ width: '100%' }" placeholder="900" addon-before="[0]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number v-model.number="outbound.settings.testseed[1]" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="500" addon-before="[1]"></a-input-number> + <a-input-number v-model.number="outbound.settings.testseed[1]" :min="0" :max="9999" + :style="{ width: '100%' }" placeholder="500" addon-before="[1]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number v-model.number="outbound.settings.testseed[2]" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="900" addon-before="[2]"></a-input-number> + <a-input-number v-model.number="outbound.settings.testseed[2]" :min="0" :max="9999" + :style="{ width: '100%' }" placeholder="900" addon-before="[2]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number v-model.number="outbound.settings.testseed[3]" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="256" addon-before="[3]"></a-input-number> + <a-input-number v-model.number="outbound.settings.testseed[3]" :min="0" :max="9999" + :style="{ width: '100%' }" placeholder="256" addon-before="[3]"></a-input-number> </a-col> </a-row> </a-form-item> @@ -286,7 +299,8 @@ <template v-if="outbound.protocol === Protocols.Shadowsocks"> <a-form-item label='{{ i18n "encryption" }}'> <a-select v-model="outbound.settings.method" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="(method, method_name) in SSMethods" :value="method">[[ method_name ]]</a-select-option> + <a-select-option v-for="(method, method_name) in SSMethods" :value="method">[[ method_name + ]]</a-select-option> </a-select> </a-form-item> <a-form-item label='UDP over TCP'> @@ -301,7 +315,8 @@ <!-- stream settings --> <template v-if="outbound.canEnableStream()"> <a-form-item label='{{ i18n "transmission" }}'> - <a-select v-model="outbound.stream.network" @change="streamNetworkChange" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select v-model="outbound.stream.network" @change="streamNetworkChange" + :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="tcp">TCP (RAW)</a-select-option> <a-select-option value="kcp">mKCP</a-select-option> <a-select-option value="ws">WebSocket</a-select-option> @@ -312,7 +327,8 @@ </a-form-item> <template v-if="outbound.stream.network === 'tcp'"> <a-form-item label='HTTP {{ i18n "camouflage" }}'> - <a-switch :checked="outbound.stream.tcp.type === 'http'" @change="checked => outbound.stream.tcp.type = checked ? 'http' : 'none'"></a-switch> + <a-switch :checked="outbound.stream.tcp.type === 'http'" + @change="checked => outbound.stream.tcp.type = checked ? 'http' : 'none'"></a-switch> </a-form-item> <template v-if="outbound.stream.tcp.type == 'http'"> <a-form-item label='{{ i18n "host" }}'> @@ -375,7 +391,7 @@ <a-input-number v-model.number="outbound.stream.ws.heartbeatPeriod" :min="0"></a-input-number> </a-form-item> </template> - + <!-- grpc --> <template v-if="outbound.stream.network === 'grpc'"> <a-form-item label='Service Name'> @@ -412,7 +428,8 @@ <a-select-option v-for="key in MODE_OPTION" :value="key">[[ key ]]</a-select-option> </a-select> </a-form-item> - <a-form-item label="No gRPC Header" v-if="outbound.stream.xhttp.mode === 'stream-up' || outbound.stream.xhttp.mode === 'stream-one'"> + <a-form-item label="No gRPC Header" + v-if="outbound.stream.xhttp.mode === 'stream-up' || outbound.stream.xhttp.mode === 'stream-one'"> <a-switch v-model="outbound.stream.xhttp.noGRPCHeader"></a-switch> </a-form-item> <a-form-item label="Min Upload Interval (Ms)" v-if="outbound.stream.xhttp.mode === 'packet-up'"> @@ -459,7 +476,8 @@ </a-select> </a-form-item> <a-form-item label="ALPN"> - <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" v-model="outbound.stream.tls.alpn"> + <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" + v-model="outbound.stream.tls.alpn"> <a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option> </a-select> </a-form-item> @@ -507,7 +525,8 @@ </a-select> </a-form-item> <a-form-item label='Address Port Strategy'> - <a-select v-model="outbound.stream.sockopt.addressPortStrategy" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select v-model="outbound.stream.sockopt.addressPortStrategy" + :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option v-for="key in Address_Port_Strategy" :value="key">[[ key ]]</a-select-option> </a-select> </a-form-item> @@ -525,11 +544,11 @@ </a-form-item> <a-form-item label="Trusted X-Forwarded-For"> <a-select mode="tags" v-model="outbound.stream.sockopt.trustedXForwardedFor" :style="{ width: '100%' }" - :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option value="CF-Connecting-IP">CF-Connecting-IP</a-select-option> - <a-select-option value="X-Real-IP">X-Real-IP</a-select-option> - <a-select-option value="True-Client-IP">True-Client-IP</a-select-option> - <a-select-option value="X-Client-IP">X-Client-IP</a-select-option> + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option value="CF-Connecting-IP">CF-Connecting-IP</a-select-option> + <a-select-option value="X-Real-IP">X-Real-IP</a-select-option> + <a-select-option value="True-Client-IP">True-Client-IP</a-select-option> + <a-select-option value="X-Client-IP">X-Client-IP</a-select-option> </a-select> </a-form-item> </template> @@ -557,11 +576,12 @@ </a-tab-pane> <a-tab-pane key="2" tab="JSON" force-render="true"> <a-space direction="vertical" :size="10" :style="{ marginTop: '10px' }"> - <a-input addon-before='{{ i18n "pages.xray.outbound.link" }}' v-model.trim="outModal.link" placeholder="vmess:// vless:// trojan:// ss://"> + <a-input addon-before='{{ i18n "pages.xray.outbound.link" }}' v-model.trim="outModal.link" + placeholder="vmess:// vless:// trojan:// ss://"> <a-icon slot="addonAfter" type="form" @click="convertLink"></a-icon> </a-input> <textarea :style="{ position: 'absolute', left: '-800px' }" id="outboundJson"></textarea> </a-space> </a-tab-pane> </a-tabs> -{{end}} +{{end}}
\ No newline at end of file diff --git a/web/html/form/protocol/vless.html b/web/html/form/protocol/vless.html index ad5b4265..bdf75be3 100644 --- a/web/html/form/protocol/vless.html +++ b/web/html/form/protocol/vless.html @@ -1,29 +1,36 @@ {{define "form/vless"}} -<a-collapse activeKey="0" v-for="(client, index) in inbound.settings.vlesses.slice(0,1)" v-if="!isEdit"> +<a-collapse activeKey="0" + v-for="(client, index) in inbound.settings.vlesses.slice(0,1)" v-if="!isEdit"> <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'> {{template "form/client"}} </a-collapse-panel> </a-collapse> <a-collapse v-else> - <a-collapse-panel :header="'{{ i18n "pages.client.clientCount"}} : ' + inbound.settings.vlesses.length"> + <a-collapse-panel :header="'{{ i18n "pages.client.clientCount"}} : ' + + inbound.settings.vlesses.length"> <table width="100%"> <tr class="client-table-header"> <th>{{ i18n "pages.inbounds.email" }}</th> <th>ID</th> </tr> - <tr v-for="(client, index) in inbound.settings.vlesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> + <tr v-for="(client, index) in inbound.settings.vlesses" + :class="index % 2 == 1 ? ' client-table-odd-row' : ''"> <td>[[ client.email ]]</td> <td>[[ client.id ]]</td> </tr> </table> </a-collapse-panel> </a-collapse> -<template v-if="!inbound.stream.isTLS || !inbound.stream.isReality"> - <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> +<template v-if=" !inbound.stream.isTLS || !inbound.stream.isReality"> + <a-form :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> <a-form-item label="Authentication"> - <a-select v-model="inbound.settings.selectedAuth" @change="getNewVlessEnc" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option value="X25519, not Post-Quantum">X25519 (not Post-Quantum)</a-select-option> - <a-select-option value="ML-KEM-768, Post-Quantum">ML-KEM-768 (Post-Quantum)</a-select-option> + <a-select v-model="inbound.settings.selectedAuth" @change="getNewVlessEnc" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option value="X25519, not Post-Quantum">X25519 (not + Post-Quantum)</a-select-option> + <a-select-option value="ML-KEM-768, Post-Quantum">ML-KEM-768 + (Post-Quantum)</a-select-option> </a-select> </a-form-item> <a-form-item label="decryption"> @@ -34,23 +41,32 @@ </a-form-item> <a-form-item label=" "> <a-space> - <a-button type="primary" icon="import" @click="getNewVlessEnc">Get New keys</a-button> + <a-button type="primary" icon="import" @click="getNewVlessEnc">Get New + keys</a-button> <a-button danger @click="clearVlessEnc">Clear</a-button> </a-space> </a-form-item> </a-form> - <a-divider v-if="inbound.settings.selectedAuth" :style="{ margin: '5px 0' }"></a-divider> + <a-divider v-if="inbound.settings.selectedAuth" + :style="{ margin: '5px 0' }"></a-divider> </template> <template v-if="inbound.isTcp && !inbound.settings.selectedAuth"> - <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> + <a-form :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> <a-form-item label="Fallbacks"> - <a-button icon="plus" type="primary" size="small" @click="inbound.settings.addFallback()"></a-button> + <a-button icon="plus" type="primary" size="small" + @click="inbound.settings.addFallback()"></a-button> </a-form-item> </a-form> <!-- vless fallbacks --> - <a-form v-for="(fallback, index) in inbound.settings.fallbacks" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> - <a-divider :style="{ margin: '0' }"> Fallback [[ index + 1 ]] <a-icon type="delete" @click="() => inbound.settings.delFallback(index)" :style="{ color: 'rgb(255, 77, 79)', cursor: 'pointer' }"></a-icon> + <a-form v-for="(fallback, index) in inbound.settings.fallbacks" :colon="false" + :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> + <a-divider :style="{ margin: '0' }"> Fallback [[ index + 1 ]] <a-icon + type="delete" + @click="() => inbound.settings.delFallback(index)" + :style="{ color: 'rgb(255, 77, 79)', cursor: 'pointer' }"></a-icon> </a-divider> <a-form-item label='SNI'> <a-input v-model="fallback.name"></a-input> @@ -65,26 +81,44 @@ <a-input v-model="fallback.dest"></a-input> </a-form-item> <a-form-item label='xVer'> - <a-input-number v-model.number="fallback.xver" :min="0" :max="2"></a-input-number> + <a-input-number v-model.number="fallback.xver" :min="0" + :max="2"></a-input-number> </a-form-item> </a-form> <a-divider :style="{ margin: '5px 0' }"></a-divider> </template> -<template v-if="inbound.settings.vlesses.some(c => c.flow === 'xtls-rprx-vision' || c.flow === 'xtls-rprx-vision-udp443')"> - <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> +<template v-if="inbound.canEnableVisionSeed()"> + <a-form :colon="false" :label-col="{ md: {span:8} }" + :wrapper-col="{ md: {span:14} }"> <a-form-item label="Vision Seed"> <a-row :gutter="8"> <a-col :span="6"> - <a-input-number :value="(inbound.settings.testseed && inbound.settings.testseed[0] !== undefined) ? inbound.settings.testseed[0] : 900" @change="(val) => updateTestseed(0, val)" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="900" addon-before="[0]"></a-input-number> + <a-input-number + :value="(inbound.settings.testseed && inbound.settings.testseed[0] !== undefined) ? inbound.settings.testseed[0] : 900" + @change="(val) => updateTestseed(0, val)" :min="0" :max="9999" + :style="{ width: '100%' }" + placeholder="900" addon-before="[0]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number :value="(inbound.settings.testseed && inbound.settings.testseed[1] !== undefined) ? inbound.settings.testseed[1] : 500" @change="(val) => updateTestseed(1, val)" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="500" addon-before="[1]"></a-input-number> + <a-input-number + :value="(inbound.settings.testseed && inbound.settings.testseed[1] !== undefined) ? inbound.settings.testseed[1] : 500" + @change="(val) => updateTestseed(1, val)" :min="0" :max="9999" + :style="{ width: '100%' }" + placeholder="500" addon-before="[1]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number :value="(inbound.settings.testseed && inbound.settings.testseed[2] !== undefined) ? inbound.settings.testseed[2] : 900" @change="(val) => updateTestseed(2, val)" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="900" addon-before="[2]"></a-input-number> + <a-input-number + :value="(inbound.settings.testseed && inbound.settings.testseed[2] !== undefined) ? inbound.settings.testseed[2] : 900" + @change="(val) => updateTestseed(2, val)" :min="0" :max="9999" + :style="{ width: '100%' }" + placeholder="900" addon-before="[2]"></a-input-number> </a-col> <a-col :span="6"> - <a-input-number :value="(inbound.settings.testseed && inbound.settings.testseed[3] !== undefined) ? inbound.settings.testseed[3] : 256" @change="(val) => updateTestseed(3, val)" :min="0" :max="9999" :style="{ width: '100%' }" placeholder="256" addon-before="[3]"></a-input-number> + <a-input-number + :value="(inbound.settings.testseed && inbound.settings.testseed[3] !== undefined) ? inbound.settings.testseed[3] : 256" + @change="(val) => updateTestseed(3, val)" :min="0" :max="9999" + :style="{ width: '100%' }" + placeholder="256" addon-before="[3]"></a-input-number> </a-col> </a-row> <a-space :size="8" :style="{ marginTop: '8px' }"> @@ -99,4 +133,4 @@ </a-form> <a-divider :style="{ margin: '5px 0' }"></a-divider> </template> -{{end}} +{{end}}
\ No newline at end of file |
