|
@@ -12,6 +12,12 @@ const props = defineProps({
|
|
|
}
|
|
|
})
|
|
|
|
|
|
+const alignMap = {
|
|
|
+ 0:"center",
|
|
|
+ 1:'left',
|
|
|
+ 2:'right'
|
|
|
+}
|
|
|
+
|
|
|
//手机端pc端又要不同样式
|
|
|
const dynamicSty = computed(()=>{
|
|
|
return isMobile() ? 'mobile-sty' : 'pc-sty';
|
|
@@ -46,6 +52,7 @@ const dynamicSty = computed(()=>{
|
|
|
font-weight: ${cell.bl ? 'bold' : 'normal'};
|
|
|
font-style: ${cell.it ? 'italic' : 'normal'};
|
|
|
background: ${cell.bg};
|
|
|
+ text-align: ${alignMap[cell.HorizontalType]||alignMap[cell.ht] || 'center'};
|
|
|
`"
|
|
|
>
|
|
|
<!-- 单元格拆分 -->
|