实现统计设置

This commit is contained in:
GoEdgeLab
2020-09-20 14:48:35 +08:00
parent 379088d8b6
commit b907619117
5 changed files with 75 additions and 3 deletions

View 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>`
})