src/components/Table/lims-table.vue
@@ -70,7 +70,7 @@
                :disabled="o.disabled ? o.disabled(scope.row) : false" :icon="iconFn(o)" :plain="o.plain"
                :style="{ color: o.name === '删除' ? '#f56c6c' : o.color }" :type="o.type | typeFn(scope.row)"
                @click="o.clickFun(scope.row)" :key="key">
                {{ o.name }}
                {{ typeof o.name === 'function'? o.name(scope.row) : o.name }}
              </el-button>
              <el-upload :action="javaApi + o.url + '?id=' + (o.uploadIdFun ? o.uploadIdFun(scope.row) : scope.row.id)"
                         :key="uploadKeys[scope.$index]"
@@ -502,19 +502,19 @@
  padding-left: 10px !important;
}
.lims-table .highlight-warning-row-border td:first-child {
.lims-table >>>.highlight-warning-row-border td:first-child {
  border-left: 4px solid #ffcd29;
}
.lims-table .highlight-warning-row-border td:last-child {
.lims-table >>>.highlight-warning-row-border td:last-child {
  border-right: 4px solid #ffcd29;
}
.lims-table .highlight-danger-row-border td:first-child {
.lims-table >>>.highlight-danger-row-border td:first-child {
  border-left: 4px solid #f56c6c;
}
.lims-table .highlight-danger-row-border td:last-child {
.lims-table >>>.highlight-danger-row-border td:last-child {
  border-right: 4px solid #f56c6c;
}
>>>.red-row td {