文件清理

This commit is contained in:
robin
2026-02-14 17:28:12 +08:00
parent 4259026c6e
commit eafac7a204
3 changed files with 130 additions and 82 deletions

View File

@@ -5,7 +5,8 @@
需要管理员在后台设置当前用户所属集群后才能继续操作。
</p>
<form class="ui form" method="post" data-tea-action="$" data-tea-success="success" data-tea-fail="fail" v-show="clusterId > 0">
<form class="ui form" method="post" data-tea-action="$" data-tea-success="success" data-tea-fail="fail"
v-show="clusterId > 0">
<csrf-token></csrf-token>
<table class="ui table definition selectable">
@@ -41,12 +42,13 @@
<radio name="requestHostType" :v-value="1" v-model="requestHostType">跟随源站</radio> &nbsp;
<radio name="requestHostType" :v-value="2" v-model="requestHostType">自定义</radio>
<div v-show="requestHostType == 2" style="margin-top: 0.8em">
<input type="text" name="requestHost" placeholder="比如example.com" v-model="requestHost"/>
<input type="text" name="requestHost" placeholder="比如example.com" v-model="requestHost" />
</div>
<p class="comment">请求源站时的Host用于设置访问源站的站点域名
<span v-if="requestHostType == 0">"跟随CDN服务"是指访问源站的站点域名和当前CDN服务保持一致</span>
<span v-if="requestHostType == 1">"跟随源站"是指访问源站的站点域名仍然是填写的源站地址中的信息不随CDN服务域名改变而改变</span>
<span v-if="requestHostType == 2">自定义Host内容中支持请求变量</span></p>
<span v-if="requestHostType == 2">自定义Host内容中支持请求变量</span>
</p>
</td>
</tr>
<tr>
@@ -55,17 +57,31 @@
<cache-cond-box></cache-cond-box>
</td>
</tr>
<tr>
<td>功能开关</td>
<td>
<checkbox name="accessLogIsOn" v-model="accessLogIsOn">访问日志</checkbox> &nbsp; &nbsp;
<checkbox name="websocketIsOn" v-model="websocketIsOn">Websocket</checkbox> &nbsp; &nbsp;
<checkbox name="cacheIsOn" v-model="cacheIsOn">缓存</checkbox> &nbsp; &nbsp;
<checkbox name="wafIsOn" v-model="wafIsOn">WAF</checkbox> &nbsp; &nbsp;
<checkbox name="remoteAddrIsOn" v-model="remoteAddrIsOn">从上级代理中读取IP</checkbox> &nbsp; &nbsp;
<checkbox name="statIsOn" v-model="statIsOn">统计</checkbox>
<p class="comment">这些功能建议保持开启状态,以获得更好的加速和安全防护效果。</p>
</td>
</tr>
<tr v-show="requirePlan || userPlans.length > 0">
<td>绑定套餐 <span v-if="requirePlan">*</span></td>
<td>
<input type="hidden" name="isChanged" value="1"/>
<input type="hidden" name="isChanged" value="1" />
<span v-if="userPlans.length == 0 && !requirePlan" class="disabled">当前还没有可以使用的套餐。</span>
<span v-if="userPlans.length == 0 && requirePlan" class="red"><a href="/plans"><span class="red">当前还没有可以使用的套餐,请先购买套餐</span></a></span>
<span v-if="userPlans.length == 0 && requirePlan" class="red"><a href="/plans"><span
class="red">当前还没有可以使用的套餐,请先购买套餐</span></a></span>
<div v-else>
<select class="ui dropdown auto-width" name="userPlanId">
<option value="0" v-if="!requirePlan">[不使用套餐]</option>
<option value="0" v-if="requirePlan">[选择套餐]</option>
<option v-for="userPlan in userPlans" :value="userPlan.id">{{userPlan.name}}{{userPlan.dayTo}}</option>
<option v-for="userPlan in userPlans" :value="userPlan.id">{{userPlan.name}}{{userPlan.dayTo}}
</option>
</select>
</div>
</td>
@@ -79,4 +95,4 @@
</table>
<submit-btn></submit-btn>
</form>
</form>

View File

@@ -3,6 +3,13 @@ Tea.context(function () {
this.requestHostType = 0
this.requestHost = ""
this.accessLogIsOn = true
this.websocketIsOn = true
this.cacheIsOn = true
this.wafIsOn = true
this.remoteAddrIsOn = true
this.statIsOn = true
this.success = function (resp) {
if (resp.data.hasOSS) {
NotifySuccess("保存成功", "/servers/server/settings/reverseProxy?serverId=" + resp.data.serverId)()