Commit cb203280 authored by root's avatar root

update table border-left to none

parent 68b03d47
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
const { backgroundColor } = this.elementInfo.table.tableCell const { backgroundColor } = this.elementInfo.table.tableCell
return { return {
'width': `${110 * this.elementInfo.table.column.length}rpx`, 'width': `${110 * this.elementInfo.table.column.length}rpx`,
'border-left': bordered ? `${frameStyle || 'solid'} ${frameWidth || 1}px ${frameColor || '#e4e7ed'}`: 'none', 'border-left': 'none',
'border-top': 'none', 'border-top': 'none',
'background-color': backgroundColor 'background-color': backgroundColor
} }
...@@ -75,8 +75,7 @@ ...@@ -75,8 +75,7 @@
'font-size': `${this.$u.common.pxToRpx(titleFontSize)}rpx`, 'font-size': `${this.$u.common.pxToRpx(titleFontSize)}rpx`,
'text-align': titlePostion || 'center', 'text-align': titlePostion || 'center',
'border-bottom': bordered ? `${frameStyle || 'solid'} ${frameWidth || 1}px ${frameColor || '#e4e7ed'}`: 'none', 'border-bottom': bordered ? `${frameStyle || 'solid'} ${frameWidth || 1}px ${frameColor || '#e4e7ed'}`: 'none',
'border-right': 'none', 'border-right': 'none'
'border-left': 'none'
} }
}, },
tdStyle() { tdStyle() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment