Skip to content

Commit 5d5d129

Browse files
committed
将ACME申请证书功能中部分“服务商”文字改为“证书服务商”/没有DNS服务商时提示用户添加
1 parent dcf02f4 commit 5d5d129

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

web/views/@default/servers/certs/acme/accounts/createPopup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h3>添加账号</h3>
1313
</td>
1414
</tr>
1515
<tr>
16-
<td class="title">服务商 *</td>
16+
<td class="title">证书服务商 *</td>
1717
<td>
1818
<select class="ui dropdown auto-width" name="providerCode" v-model="providerCode" @change="changeProvider" tabindex="2">
1919
<option value="">[选择服务商]</option>

web/views/@default/servers/certs/acme/accounts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<thead>
1515
<tr>
1616
<th>名称</th>
17-
<th>服务商</th>
17+
<th>证书服务商</th>
1818
<th class="four wide">EAB Kid</th>
1919
<th class="four wide">EBA HMAC Key</th>
2020
<th class="two wide">操作</th>

web/views/@default/servers/certs/acme/accounts/updatePopup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h3>修改账号</h3>
1414
</td>
1515
</tr>
1616
<tr>
17-
<td class="title">服务商 *</td>
17+
<td class="title">证书服务商 *</td>
1818
<td>
1919
<span v-if="account.provider != null">{{account.provider.name}}</span>
2020
<span v-else class="disabled">服务商已失效</span>

web/views/@default/servers/certs/acme/create.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<div v-show="step == 'user'">
7373
<table class="ui table definition selectable">
7474
<tr>
75-
<td class="title">选择服务商 *</td>
75+
<td class="title">选择证书服务商 *</td>
7676
<td>
7777
<select class="ui dropdown auto-width" v-model="providerCode" @change="changeProvider">
7878
<option value="">[选择服务商]</option>
@@ -120,6 +120,9 @@
120120
<option v-for="provider in dnsProviders" :value="provider.id">{{provider.name}}({{provider.typeName}})</option>
121121
</select>
122122
</div>
123+
<div v-else>
124+
<span>暂时没有DNS服务商,<a href="/dns/providers">[去添加]</a></span>
125+
</div>
123126
<p class="comment">用于自动创建域名解析记录。</p>
124127
</td>
125128
</tr>

web/views/@default/servers/certs/acme/users/createPopup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3>创建ACME用户</h3>
1717
</td>
1818
</tr>
1919
<tr>
20-
<td>所属服务商 *</td>
20+
<td>所属证书服务商 *</td>
2121
<td>
2222
<select class="ui dropdown auto-width" name="providerCode" v-model="providerCode" @change="changeProvider">
2323
<option value="">[选择服务商]</option>

web/views/@default/servers/certs/acme/users/updatePopup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h3>修改ACME用户</h3>
1313
</td>
1414
</tr>
1515
<tr v-if="user.provider != null">
16-
<td>所属服务商</td>
16+
<td>所属证书服务商</td>
1717
<td>{{user.provider.name}}</td>
1818
</tr>
1919
<tr v-if="user.account != null">

0 commit comments

Comments
 (0)