|
@@ -24,6 +24,7 @@
|
|
|
<span v-for="(word,wordIndex) in col.ct.s" :key="`${rowIndex}_${colIndex}_${wordIndex}`"
|
|
|
:style="{
|
|
|
'color': word.fc,
|
|
|
+ 'font-size':word.fs+'px',
|
|
|
'font-weight': word.bl ? 'bold' : 'normal',
|
|
|
'font-style': word.it ? 'italic' : 'normal',
|
|
|
'text-decoration':word.un?'underline':word.cl?'line-through':'normal'
|
|
@@ -93,12 +94,13 @@ export default {
|
|
|
table{
|
|
|
width:100%;
|
|
|
td{
|
|
|
- /* min-width: 55px; */
|
|
|
- white-space: nowrap;
|
|
|
- border: 1px solid #747474;
|
|
|
- height: 40px;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
- }
|
|
|
+ /* min-width: 55px; */
|
|
|
+ white-space: nowrap;
|
|
|
+ border: 1px solid #747474;
|
|
|
+ height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ padding:0 .2rem;
|
|
|
+ }
|
|
|
+}
|
|
|
}
|
|
|
</style>
|