mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-24 19:19:15 +08:00
style: 修改网站日志按钮样式 (#2442)
This commit is contained in:
parent
92c28b3ed1
commit
f258d4e443
@ -6,7 +6,7 @@
|
|||||||
<el-col :span="16">
|
<el-col :span="16">
|
||||||
<el-button
|
<el-button
|
||||||
class="tag-button"
|
class="tag-button"
|
||||||
:label="'access.log'"
|
:class="logReq.logType === 'access.log' ? '' : 'no-active'"
|
||||||
:type="logReq.logType === 'access.log' ? 'primary' : ''"
|
:type="logReq.logType === 'access.log' ? 'primary' : ''"
|
||||||
@click="changeType('access.log')"
|
@click="changeType('access.log')"
|
||||||
>
|
>
|
||||||
@ -14,7 +14,7 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
class="tag-button"
|
class="tag-button"
|
||||||
:label="'error.log'"
|
:class="logReq.logType === 'error.log' ? '' : 'no-active'"
|
||||||
:type="logReq.logType === 'error.log' ? 'primary' : ''"
|
:type="logReq.logType === 'error.log' ? 'primary' : ''"
|
||||||
@click="changeType('error.log')"
|
@click="changeType('error.log')"
|
||||||
>
|
>
|
||||||
@ -196,17 +196,8 @@ const onSubmitClean = async () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
logReq.logType = 'access.log';
|
||||||
getWebsites();
|
getWebsites();
|
||||||
|
console.log(logReq.logType);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.tag-button {
|
|
||||||
&.el-button--primary:hover {
|
|
||||||
background-color: var(--el-color-primary) !important;
|
|
||||||
}
|
|
||||||
&.el-button--primary:focus {
|
|
||||||
background-color: var(--el-color-primary) !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user