AnalysisSystemForRadionucli.../src/views/logManage/index.vue

250 lines
5.5 KiB
Vue
Raw Normal View History

2023-05-10 08:40:05 +08:00
<template>
<div class="log">
<a-card class="log-tree" :bordered="false">
<!-- 标题 -->
<template slot="title">
<div class="title">
<div class="title-text">LOG</div>
<div class="title-rect">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</template>
<!-- 标题结束 -->
<!-- 内容 -->
<tree-with-line :treeData="treeData"> </tree-with-line>
<!-- 内容结束 -->
</a-card>
<div class="log-list">
<custom-table
size="middle"
rowKey="id"
:columns="columns"
:list="dataSource"
:pagination="false"
:loading="loading"
:can-select="false"
@change="handleTableChange"
:scroll="{ y: 'calc(100vh - 365px)' }"
>
<template slot="operate" slot-scope="{ record }">
<a-space :size="20">
<img src="@/assets/images/log/operate.png" alt="" style="cursor: pointer" @click.stop="onOperate(record)" />
<img
src="@/assets/images/log/download.png"
alt=""
style="cursor: pointer"
@click.stop="onDownload(record)"
/>
</a-space>
</template>
</custom-table>
</div>
<custom-modal title="Log" v-model="visible" :show-footer="false">
这里是Log内容
</custom-modal>
</div>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import TreeWithLine from '@/components/TreeWithLine/index.vue'
const columns = [
{
title: 'Name',
align: 'center',
dataIndex: 'name'
},
{
title: 'date',
align: 'center',
dataIndex: 'date'
},
{
title: 'size',
align: 'center',
dataIndex: 'size'
},
{
title: 'Operate',
align: 'center',
scopedSlots: {
customRender: 'operate'
}
}
]
export default {
mixins: [JeecgListMixin],
components: {
TreeWithLine
},
data() {
this.columns = columns
return {
url: {
list: ''
},
treeData: [
{
title: 'Db',
key: '1',
children: [
{
title: '2022',
key: '1-1',
children: [
{
title: '04',
key: '1-1-1'
},
{
title: '05',
key: '1-1-2'
}
]
},
{
title: '2023',
key: '1-2',
children: [
{
title: '04',
key: '1-2-1'
},
{
title: '05',
key: '1-2-2'
}
]
}
]
},
{
title: 'Error',
key: '2',
children: [
{
title: '2022',
key: '2-1',
children: [
{
title: '04',
key: '2-1-1'
},
{
title: '05',
key: '2-1-2'
}
]
}
]
}
],
dataSource: [{ id: 1, name: 'DEX33_002-20220512_0723_S_FULL_9011.9.log', date: '2022-05-13', size: '105KB' }],
visible: false
}
},
methods: {
onOperate(record) {
console.log('%c [ ]-147', 'font-size:13px; background:pink; color:#bf2c9f;', record)
this.visible = true
},
onDownload(record) {
console.log('%c [ ]-151', 'font-size:13px; background:pink; color:#bf2c9f;', record)
}
}
}
</script>
<style lang="less" scoped>
.log {
height: 100%;
display: flex;
&-tree {
width: 290px;
height: 100%;
flex-shrink: 0;
margin-right: 20px;
background-color: #022024;
border: 1px solid #0c6a66;
::v-deep {
.ant-card {
&-head {
border-bottom: 4px solid rgba(12, 235, 201, 0.2);
height: auto;
&-title {
height: 45px;
line-height: 45px;
padding: 0;
padding-right: 20px;
font-family: MicrogrammaD-MediExte;
font-size: 18px;
font-weight: bold;
color: #0cebc9;
}
}
&-body {
padding: 0 20px;
height: calc(100% - 50px);
overflow: auto;
}
}
}
.title {
display: flex;
justify-content: space-between;
&-text {
padding-left: 20px;
width: 100px;
background-color: rgba(12, 235, 201, 0.05);
}
&-rect {
span {
display: inline-block;
background-color: rgba(12, 235, 201, 0.2);
vertical-align: middle;
&:first-child {
width: 4px;
height: 4px;
}
&:nth-child(2) {
width: 6px;
height: 6px;
margin-right: 6px;
}
&:nth-child(3) {
width: 4px;
height: 4px;
margin-right: 9px;
}
&:nth-child(4) {
width: 1px;
height: 16px;
margin-right: 23px;
}
&:nth-child(5) {
width: 2px;
height: 2px;
margin-right: 24px;
}
&:nth-child(6) {
width: 4px;
height: 4px;
}
}
}
}
}
&-list {
}
}
</style>