Vue.component("bandwidth-limit-config-box", { props: ["v-bandwidth-limit"], data: function () { let config = this.vBandwidthLimit if (config == null) { config = { isOn: false, dailySize: { count: -1, unit: "gb" }, monthlySize: { count: -1, unit: "gb" }, totalSize: { count: -1, unit: "gb" }, noticePageBody: "" } } if (config.dailySize == null) { config.dailySize = { count: -1, unit: "gb" } } if (config.monthlySize == null) { config.monthlySize = { count: -1, unit: "gb" } } if (config.totalSize == null) { config.totalSize = { count: -1, unit: "gb" } } return { config: config } }, methods: { showBodyTemplate: function () { this.config.noticePageBody = ` Bandwidth Limit Exceeded Warning The site bandwidth has exceeded the limit. Please contact with the site administrator. ` } }, template: `
是否启用

注意:由于带宽统计是每5分钟统计一次,所以超出带宽限制后,对用户的提醒也会有所延迟。

日带宽限制
月带宽限制
网页提示内容

[使用模板]。当达到带宽限制时网页显示的HTML内容,不填写则显示默认的提示内容。

` })