|
|
@@ -24,11 +24,11 @@
|
|
|
<template>
|
|
|
<el-table
|
|
|
class="customer-table"
|
|
|
- :header-cell-style="{ background: '#1c1e26', fontWeight: 'bold' }"
|
|
|
+ :header-cell-style="{ background: '#1c1e26' }"
|
|
|
:data="tableData"
|
|
|
:border="false"
|
|
|
:highlight-current-row="false"
|
|
|
- style="width: 100%; background: #1c1e26"
|
|
|
+ style="width: 100%; background: #1c1e26; font-weight: normal"
|
|
|
>
|
|
|
<el-table-column prop="name" label="藏品信息" width="208">
|
|
|
<template slot-scope="scope">
|
|
|
@@ -59,8 +59,10 @@
|
|
|
<!-- <template slot-scope="scope"> -->
|
|
|
<div
|
|
|
style="
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
width: 88px;
|
|
|
- height: 24px;
|
|
|
+ height: 48px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
|
@@ -286,6 +288,9 @@ export default {
|
|
|
/deep/ .el-table {
|
|
|
margin-left: -10px;
|
|
|
}
|
|
|
+.customer-table {
|
|
|
+ font-weight: normal;
|
|
|
+}
|
|
|
/deep/.menu {
|
|
|
.el-radio-button__inner {
|
|
|
border-color: #949699;
|
|
|
@@ -293,7 +298,7 @@ export default {
|
|
|
color: #949699;
|
|
|
width: 140px;
|
|
|
height: 42px;
|
|
|
-
|
|
|
+ font-weight: normal;
|
|
|
span {
|
|
|
font-size: 16px !important;
|
|
|
}
|
|
|
@@ -344,14 +349,19 @@ export default {
|
|
|
height: 1px;
|
|
|
background: #494a4d;
|
|
|
border-radius: 1px;
|
|
|
- margin: 24px 0 34px;
|
|
|
+ margin: 24px 0 24px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="less">
|
|
|
.customer-table th {
|
|
|
- // font-weight: bold !important;
|
|
|
+ font-weight: normal !important;
|
|
|
border: none !important;
|
|
|
+ padding: 0 !important;
|
|
|
+ line-height: 24px;
|
|
|
+}
|
|
|
+.customer-table th > .cell {
|
|
|
+ font-weight: normal !important;
|
|
|
}
|
|
|
.customer-table td,
|
|
|
.customer-table th.is-leaf {
|