修改表格单元格禁用省略号颜色
Showing
2 changed files
with
5 additions
and
1 deletions
| ... | @@ -452,6 +452,10 @@ | ... | @@ -452,6 +452,10 @@ |
| 452 | } | 452 | } |
| 453 | } | 453 | } |
| 454 | 454 | ||
| 455 | td.el-table__cell:has(.is-regular) { | ||
| 456 | color: var(--el-color-regular); | ||
| 457 | } | ||
| 458 | |||
| 455 | td.el-table__cell { | 459 | td.el-table__cell { |
| 456 | padding: 6px 0; | 460 | padding: 6px 0; |
| 457 | border-bottom: none; | 461 | border-bottom: none; | ... | ... |
| ... | @@ -43,7 +43,7 @@ const page = ref({ | ... | @@ -43,7 +43,7 @@ const page = ref({ |
| 43 | const tableFields = ref([ | 43 | const tableFields = ref([ |
| 44 | { label: "序号", type: "index", width: 56, align: "center" }, | 44 | { label: "序号", type: "index", width: 56, align: "center" }, |
| 45 | { | 45 | { |
| 46 | label: "数据产品名称", field: "dataProductName", width: 160, type: "text_btn", columClass: '', value: "detail", disabled: (scope) => { | 46 | label: "数据产品名称", field: "dataProductName", width: 160, type: "text_btn", columClass: 'text_btn', value: "detail", disabled: (scope) => { |
| 47 | return scope.row.contractStatus == '06'; | 47 | return scope.row.contractStatus == '06'; |
| 48 | }, click: (scope) => { | 48 | }, click: (scope) => { |
| 49 | if (scope.row.contractStatus == '06') { | 49 | if (scope.row.contractStatus == '06') { | ... | ... |
-
Please register or sign in to post a comment