浏览代码

need: 表格文字位置同步

shanbinzhang 2 月之前
父节点
当前提交
ffabcad5ae
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      src/components/sheet.vue

+ 7 - 0
src/components/sheet.vue

@@ -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'};
           `"
         >
           <!-- 单元格拆分 -->