99840c1a by lihua

修改表格单元格禁用省略号颜色

1 parent 73bad286
...@@ -456,6 +456,10 @@ ...@@ -456,6 +456,10 @@
456 } 456 }
457 } 457 }
458 458
459 td.el-table__cell:has(.is-regular) {
460 color: var(--el-color-regular);
461 }
462
459 td.el-table__cell { 463 td.el-table__cell {
460 padding: 6px 0; 464 padding: 6px 0;
461 border-bottom: none; 465 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') {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!