优化文字提示

This commit is contained in:
刘祥超
2022-12-01 14:40:17 +08:00
parent db32915114
commit 8b961a890c
4 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ Vue.component("http-remote-addr-config-box", {
<prior-checkbox :v-config="config" v-if="vIsLocation || vIsGroup"></prior-checkbox> <prior-checkbox :v-config="config" v-if="vIsLocation || vIsGroup"></prior-checkbox>
<tbody v-show="(!vIsLocation && !vIsGroup) || config.isPrior"> <tbody v-show="(!vIsLocation && !vIsGroup) || config.isPrior">
<tr> <tr>
<td class="title">是否启用</td> <td class="title">启用访客IP设置</td>
<td> <td>
<div class="ui checkbox"> <div class="ui checkbox">
<input type="checkbox" value="1" v-model="config.isOn"/> <input type="checkbox" value="1" v-model="config.isOn"/>

View File

@@ -62,7 +62,7 @@ Vue.component("http-request-limit-config-box", {
<prior-checkbox :v-config="config" v-if="vIsLocation || vIsGroup"></prior-checkbox> <prior-checkbox :v-config="config" v-if="vIsLocation || vIsGroup"></prior-checkbox>
<tbody v-show="(!vIsLocation && !vIsGroup) || config.isPrior"> <tbody v-show="(!vIsLocation && !vIsGroup) || config.isPrior">
<tr> <tr>
<td class="title">启用</td> <td class="title">启用请求限制</td>
<td> <td>
<checkbox v-model="config.isOn"></checkbox> <checkbox v-model="config.isOn"></checkbox>
</td> </td>

View File

@@ -36,7 +36,7 @@ Vue.component("script-config-box", {
<table class="ui table definition selectable"> <table class="ui table definition selectable">
<tbody> <tbody>
<tr> <tr>
<td class="title">是否启用</td> <td class="title">启用脚本设置</td>
<td><checkbox v-model="config.isOn"></checkbox></td> <td><checkbox v-model="config.isOn"></checkbox></td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -63,7 +63,7 @@ Vue.component("traffic-limit-config-box", {
<table class="ui table selectable definition"> <table class="ui table selectable definition">
<tbody> <tbody>
<tr> <tr>
<td class="title">是否启用</td> <td class="title">启用流量限制</td>
<td> <td>
<checkbox v-model="config.isOn"></checkbox> <checkbox v-model="config.isOn"></checkbox>
<p class="comment">注意由于流量统计是每5分钟统计一次所以超出流量限制后对用户的提醒也会有所延迟。</p> <p class="comment">注意由于流量统计是每5分钟统计一次所以超出流量限制后对用户的提醒也会有所延迟。</p>