diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-09-16 12:41:21 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-09-16 12:41:21 +0300 |
| commit | 566cd9e9c4b7f10f19b7eb647c6c7cad4647ac44 (patch) | |
| tree | 88dfe6ef573c216f79b14d4205407f4d2ec96b21 /web/html/xui/form/allocate.html | |
| parent | ad78cec7c79c51f16940f54baeb35cbefd18d939 (diff) | |
New - Allocate
Diffstat (limited to 'web/html/xui/form/allocate.html')
| -rw-r--r-- | web/html/xui/form/allocate.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/html/xui/form/allocate.html b/web/html/xui/form/allocate.html new file mode 100644 index 00000000..8c19d3ec --- /dev/null +++ b/web/html/xui/form/allocate.html @@ -0,0 +1,16 @@ +{{define "form/allocate"}} +<a-divider style="margin:5px 0 0;">Allocate</a-divider> +<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> + <a-form-item label='strategy'> + <a-select v-model="inbound.allocate.strategy" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="s in ['always','random']" :value="s">[[ s ]]</a-select-option> + </a-select> + </a-form-item> + <a-form-item label='refresh'> + <a-input-number v-model.number="inbound.allocate.refresh" min="0"></a-input-number> + </a-form-item> + <a-form-item label='concurrency'> + <a-input-number v-model.number="inbound.allocate.concurrency" min="0"></a-input-number> + </a-form-item> +</a-form> +{{end}} |
