修改log的文字颜色

This commit is contained in:
qq787203167
2022-03-28 16:49:23 +08:00
parent b7d61a25fe
commit de7ce43ae7
@@ -135,6 +135,14 @@
:data-source="dataSource"
:loading="loading"
>
<span slot="content" slot-scope="text,record">
<a-tooltip placement="top">
<template slot="title">
<span v-html="text"></span>
</template>
<span v-html="text"></span>
</a-tooltip>
</span>
</a-table>
<div class="page" v-if="dataSource.length > 0">
<a-pagination
@@ -210,7 +218,8 @@
title: this.$t('ModificationContent'),
dataIndex: 'content',
align: 'center',
ellipsis: true
ellipsis: true,
scopedSlots: { customRender: 'content' }
},
{
title: this.$t('ModificationTime'),
@@ -329,6 +338,11 @@
}
}
</script>
<style>
.highlight-class{
color:#00B3BE;
}
</style>
<style lang="less" scoped>
@import '~@assets/less/common.less';