From 71fc2c24359c747c84b92fa45f542141e5678eb2 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期一, 13 六月 2022 17:29:58 +0800
Subject: [PATCH] 1.项目全局配置(部分)
---
src/views/jcsz/zzjg.vue | 25 +++++++++++++++----------
1 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/src/views/jcsz/zzjg.vue b/src/views/jcsz/zzjg.vue
index 536a8ca..4a057bb 100644
--- a/src/views/jcsz/zzjg.vue
+++ b/src/views/jcsz/zzjg.vue
@@ -22,7 +22,7 @@
<el-tree
ref="tree"
- style="margin-left: 10px;"
+ style="margin-left: 10px;overflow-y: scroll;height: 230px"
:icon-class="iconClass"
:data="treeData"
default-expand-all
@@ -59,8 +59,8 @@
:data="tableData"
border
style="width: 72%"
- :header-cell-style="headerCellStyle"
- :cell-style="cellStyle"
+ :header-cell-style="this.$headerCellStyle"
+ :cell-style="this.$cellStyle"
>
<!-- <el-table-column-->
<!-- label="缁勭粐鍒嗙被"-->
@@ -186,6 +186,9 @@
}, {
id: 8,
label: '浜岀骇 3-2'
+ }, {
+ id: 19,
+ label: '浜岀骇 3-2'
}]
}],
defaultProps: {
@@ -240,25 +243,27 @@
}
</script>
-<style scoped>
+<style lang="scss" scoped>
+$main_color: #42b983;
::v-deep .el-button--primary {
- background-color: #42b983 !important;
+ background-color: $main_color !important;
height: 30px;
display: flex;
align-items: center;
}
::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
- background-color: #42b983 !important;
+ background-color: $main_color !important;
}
-.zzflStyle{
+.zzflStyle {
line-height: 35px;
- font-family:'Helvetica Neue';
+ font-family: 'Helvetica Neue';
background-color: #eee;
- font-weight:400;
+ font-weight: 400;
padding-left: 10px;
- color:rgb(144, 147, 153); font-size: 14px
+ color: rgb(144, 147, 153);
+ font-size: 14px
}
/*::v-deep*/
--
Gitblit v1.9.3