odc.xiaohui
2023-02-09 085fa2fb257e9f11f8f6d34bf12e2dc281c36b4d
src/views/operate/fivepack/threepack/components/score/index.vue
@@ -4,9 +4,6 @@
    <el-table
      ref="multipleTable"
      :header-cell-style="{
        background: '#06122c',
        'font-size': '12px',
        color: '#4b9bb7',
        'font-weight': '650',
        'line-height': '45px',
      }"
@@ -44,11 +41,10 @@
export default {
  created() {
    this.search();
    this.loadData();
  },
  props: ["storeInfo"],
  data() {
    return {
      tableData: [],
@@ -59,7 +55,7 @@
  },
  methods: {
    search() {
    loadData() {
      getStoreScore(this.storeInfo.id)
        .then((res) => {
          this.tableData = res.records;
@@ -71,7 +67,7 @@
    changeCurrentPage(currentPage) {
      this.currentPage = currentPage;
      this.search();
      this.loadData();
    },
    tableRowClassName({ row, rowIndex }) {