mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 06:40:27 +08:00
实现统计设置
This commit is contained in:
29
web/public/js/components/server/http-stat-config-box.js
Normal file
29
web/public/js/components/server/http-stat-config-box.js
Normal file
@@ -0,0 +1,29 @@
|
||||
Vue.component("http-stat-config-box", {
|
||||
props: ["v-stat-config"],
|
||||
data: function () {
|
||||
let stat = this.vStatConfig
|
||||
if (stat == null) {
|
||||
stat = {
|
||||
isOn: true
|
||||
}
|
||||
}
|
||||
return {
|
||||
stat: stat
|
||||
}
|
||||
},
|
||||
template: `<div>
|
||||
<input type="hidden" name="statJSON" :value="JSON.stringify(stat)"/>
|
||||
<table class="ui table definition selectable">
|
||||
<tr>
|
||||
<td class="title">是否开启统计</td>
|
||||
<td>
|
||||
<div class="ui checkbox">
|
||||
<input type="checkbox" v-model="stat.isOn"/>
|
||||
<label></label>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="margin"></div>
|
||||
</div>`
|
||||
})
|
||||
Reference in New Issue
Block a user