11
WXL
2024-02-21 633f26d8e772b2441fb3fab72ecab0a047def74c
src/views/project/fund/expertFeeApply/index.vue
@@ -133,6 +133,7 @@
                v-loading="loading"
                border
                :data="donateconsolationfundList"
                :row-class-name="rowClassName"
              >
                <el-table-column
                  label="申请日期"
@@ -2570,10 +2571,19 @@
      } else {
        console.log(response.msg);
      }
    },
    rowClassName({ row, column, rowIndex, columnIndex }) {
      if (row.recordstatus == -1 && row.backflowlevel != 0) {
        return "error-row";
      }
      return "";
    }
  }
};
</script>
<style scoped>
<style lang="scss" scoped>
/* @import url(); 引入公共css类 */
::v-deep.el-table .error-row {
  background: #fcebeb;
}
</style>