style: 修改网站日志按钮样式 (#2442)

This commit is contained in:
zhengkunwang 2023-10-07 04:02:44 -05:00 committed by GitHub
parent 92c28b3ed1
commit f258d4e443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>