mirror of
https://github.com/jumpserver/lina.git
synced 2025-08-01 15:11:16 +00:00
feat: Endpoint 添加帮助信息
This commit is contained in:
parent
263ab8c913
commit
8b11146e44
@ -903,6 +903,8 @@
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"EndpointListHelpMessage": "The service endpoint is the address (port) for the user to access the service. When the user connects to the asset, the service endpoint will be selected according to the endpoint rules and asset tags, and the connection will be established as the access entry to realize the distributed connection of assets.",
|
||||
"EndpointRuleListHelpMessage": "For the service endpoint selection strategy, two types are currently supported: <br>1. Specify the endpoint according to the endpoint rule (current page); <br>2. Select the endpoint through the asset tag. The tag name is fixed to endpoint, and the value is the name of the `endpoint`. <br>Two methods preferentially use label matching, because the IP segment may conflict, and the label method exists as a supplement to the rules.",
|
||||
"EnableKoKoSSHHelpText": "Enabled, connect assets to display SSH Client pull-up method",
|
||||
"SettingInEndpointHelpText": "Configure the service address and port in System Settings / Terminal Settings / Service Endpoints",
|
||||
"Feature": "Feature",
|
||||
|
@ -924,6 +924,8 @@
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"EndpointListHelpMessage": "サービスエンドポイントは、ユーザーがサービスにアクセスするためのアドレス(ポート)です。ユーザーがアセットに接続すると、エンドポイントルールとアセットタグに従ってサービスエンドポイントが選択され、接続がアクセスエントリとして確立されます。資産の分散接続を実現します。",
|
||||
"EndpointRuleListHelpMessage": "サービスエンドポイント選択戦略では、現在2つのタイプがサポートされています:<br> 1. エンドポイントルールに従ってエンドポイントを指定します(現在のページ);<br>2. アセットタグを介してエンドポイントを選択します。タグ名はに固定されていますエンドポイントであり、値はエンドポイントの名前です。 <br> IPセグメントが競合する可能性があるため、2つの方法が優先的にラベル照合を使用し、ラベル方法はルールの補足として存在します。",
|
||||
"EnableKoKoSSHHelpText": "有効にすると、アセットを接続してSSHクライアントのプルアップ方式を表示します",
|
||||
"SettingInEndpointHelpText": "[システム設定]/[端末設定]/[サービスエンドポイント]でサービスアドレスとポートを構成します",
|
||||
"Feature": "機能",
|
||||
|
@ -926,6 +926,8 @@
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"EndpointListHelpMessage": "服务端点是用户访问服务的地址(端口),当用户在连接资产时,会根据端点规则和资产标签选择服务端点,作为访问入口建立连接,实现分布式连接资产",
|
||||
"EndpointRuleListHelpMessage": "对于服务端点选择策略,目前支持两种:<br>1、根据端点规则指定端点(当前页面);<br>2、通过资产标签选择端点,标签名固定是 endpoint,值是端点的名称。<br>两种方式优先使用标签匹配,因为 IP 段可能冲突,标签方式是作为规则的补充存在的。",
|
||||
"EnableKoKoSSHHelpText": "开启时连接资产会显示 SSH Client 拉起方式",
|
||||
"SettingInEndpointHelpText": "在 系统设置 / 终端设置 / 服务端点 中配置服务地址和端口",
|
||||
"Feature": "功能",
|
||||
|
@ -1,5 +1,8 @@
|
||||
<template>
|
||||
<ListTable :table-config="tableConfig" :header-actions="headerActions" />
|
||||
<div>
|
||||
<el-alert type="success" v-html="helpMessage" />
|
||||
<ListTable :table-config="tableConfig" :header-actions="headerActions" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@ -12,6 +15,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
helpMessage: this.$t('setting.EndpointListHelpMessage'),
|
||||
tableConfig: {
|
||||
url: '/api/v1/terminal/endpoints/',
|
||||
columns: [
|
||||
|
@ -1,5 +1,8 @@
|
||||
<template>
|
||||
<ListTable :table-config="tableConfig" :header-actions="headerActions" />
|
||||
<div>
|
||||
<el-alert type="success" v-html="helpMessage" />
|
||||
<ListTable :table-config="tableConfig" :header-actions="headerActions" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@ -12,6 +15,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
helpMessage: this.$t('setting.EndpointRuleListHelpMessage'),
|
||||
tableConfig: {
|
||||
url: '/api/v1/terminal/endpoint-rules/',
|
||||
columns: [
|
||||
|
Loading…
Reference in New Issue
Block a user