mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
122 lines
3.7 KiB
JavaScript
122 lines
3.7 KiB
JavaScript
Vue.component("http-pages-and-shutdown-box", {
|
||
props: ["v-pages", "v-shutdown-config", "v-is-location"],
|
||
data: function () {
|
||
let pages = []
|
||
if (this.vPages != null) {
|
||
pages = this.vPages
|
||
}
|
||
let shutdownConfig = {
|
||
isPrior: false,
|
||
isOn: false,
|
||
url: "",
|
||
status: 0
|
||
}
|
||
if (this.vShutdownConfig != null) {
|
||
shutdownConfig = this.vShutdownConfig
|
||
}
|
||
|
||
let shutdownStatus = ""
|
||
if (shutdownConfig.status > 0) {
|
||
shutdownStatus = shutdownConfig.status.toString()
|
||
}
|
||
|
||
return {
|
||
pages: pages,
|
||
shutdownConfig: shutdownConfig,
|
||
shutdownStatus: shutdownStatus
|
||
}
|
||
},
|
||
watch: {
|
||
shutdownStatus: function (status) {
|
||
let statusInt = parseInt(status)
|
||
if (!isNaN(statusInt) && statusInt > 0 && statusInt < 1000) {
|
||
this.shutdownConfig.status = statusInt
|
||
} else {
|
||
this.shutdownConfig.status = 0
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
addPage: function () {
|
||
let that = this
|
||
teaweb.popup("/servers/server/settings/pages/createPopup", {
|
||
height: "22em",
|
||
callback: function (resp) {
|
||
that.pages.push(resp.data.page)
|
||
}
|
||
})
|
||
},
|
||
updatePage: function (pageIndex, pageId) {
|
||
let that = this
|
||
teaweb.popup("/servers/server/settings/pages/updatePopup?pageId=" + pageId, {
|
||
height: "22em",
|
||
callback: function (resp) {
|
||
Vue.set(that.pages, pageIndex, resp.data.page)
|
||
}
|
||
})
|
||
},
|
||
removePage: function (pageIndex) {
|
||
let that = this
|
||
teaweb.confirm("确定要移除此页面吗?", function () {
|
||
that.pages.$remove(pageIndex)
|
||
})
|
||
}
|
||
},
|
||
template: `<div>
|
||
<input type="hidden" name="pagesJSON" :value="JSON.stringify(pages)"/>
|
||
<input type="hidden" name="shutdownJSON" :value="JSON.stringify(shutdownConfig)"/>
|
||
<table class="ui table selectable definition">
|
||
<tr>
|
||
<td class="title">特殊页面</td>
|
||
<td>
|
||
<div v-if="pages.length > 0">
|
||
<div class="ui label small basic" v-for="(page,index) in pages">
|
||
{{page.status}} -> {{page.url}} <a href="" title="修改" @click.prevent="updatePage(index, page.id)"><i class="icon pencil small"></i></a> <a href="" title="删除" @click.prevent="removePage(index)"><i class="icon remove"></i></a>
|
||
</div>
|
||
<div class="ui divider"></div>
|
||
</div>
|
||
<div>
|
||
<button class="ui button small" type="button" @click.prevent="addPage()">+</button>
|
||
</div>
|
||
<p class="comment">根据响应状态码返回一些特殊页面,比如404,500等错误页面。</p>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>临时关闭页面</td>
|
||
<td>
|
||
<div>
|
||
<table class="ui table selectable definition">
|
||
<prior-checkbox :v-config="shutdownConfig" v-if="vIsLocation"></prior-checkbox>
|
||
<tbody v-show="!vIsLocation || shutdownConfig.isPrior">
|
||
<tr>
|
||
<td class="title">是否开启</td>
|
||
<td>
|
||
<div class="ui checkbox">
|
||
<input type="checkbox" value="1" v-model="shutdownConfig.isOn" />
|
||
<label></label>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody v-show="(!vIsLocation || shutdownConfig.isPrior) && shutdownConfig.isOn">
|
||
<tr>
|
||
<td class="title">页面URL</td>
|
||
<td>
|
||
<input type="text" v-model="shutdownConfig.url" placeholder="页面文件路径或一个完整URL"/>
|
||
<p class="comment">页面文件是相对于节点安装目录的页面文件比如pages/40x.html,或者一个完整的URL。</p>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>状态码</td>
|
||
<td><input type="text" size="3" maxlength="3" name="shutdownStatus" style="width:5.2em" placeholder="状态码" v-model="shutdownStatus"/></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p class="comment">开启临时关闭页面时,所有请求的响应都会显示此页面。可用于临时升级网站使用。</p>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
<div class="ui margin"></div>
|
||
</div>`
|
||
}) |