部分“服务”文字改为“网站”

This commit is contained in:
GoEdgeLab
2024-05-05 11:23:57 +08:00
parent cd2d828e48
commit b4bea60d3b
10 changed files with 12 additions and 12 deletions

View File

@@ -98,7 +98,7 @@ Vue.component("ssl-config-box", {
// 删除证书
removeCert: function (index) {
let that = this
teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前服务不再使用此证书。", function () {
teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前网站不再使用此证书。", function () {
that.policy.certRefs.$remove(index)
that.policy.certs.$remove(index)
})
@@ -385,7 +385,7 @@ Vue.component("ssl-config-box", {
// 删除客户端CA证书
removeClientCACert: function (index) {
let that = this
teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前服务不再使用此证书。", function () {
teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前网站不再使用此证书。", function () {
that.policy.clientCARefs.$remove(index)
that.policy.clientCACerts.$remove(index)
})