* 在`cn.exrick.xboot.common.enums.LogType`中添加你的新日志枚举类型
* 前端`src/views/sys/log-manage/logManage.vue`中加入你的新类型TabPane
~~~
<Tabs :animated="false" @on-click="changeTab">
<TabPane label="登陆日志" name="login"></TabPane>
<TabPane label="操作日志" name="operation"></TabPane>
</Tabs>
~~~
* js中添加你的对应枚举值
~~~
changeTab(v) {
if (v == "login") {
this.searchForm.type = 1;
} else if (v == "operation") {
this.searchForm.type = 0;
}
}
~~~