luobisheng
2022-11-28 fa5fd9d4f9c1ba33f26a343942a7941003cc601c
src/views/operate/fivepack/threepack/components/score/index.vue
@@ -44,11 +44,10 @@
export default {
  created() {
    this.search();
    this.loadData();
  },
  props: ["storeInfo"],
  data() {
    return {
      tableData: [],
@@ -59,7 +58,7 @@
  },
  methods: {
    search() {
    loadData() {
      getStoreScore(this.storeInfo.id)
        .then((res) => {
          this.tableData = res.records;
@@ -71,7 +70,7 @@
    changeCurrentPage(currentPage) {
      this.currentPage = currentPage;
      this.search();
      this.loadData();
    },
    tableRowClassName({ row, rowIndex }) {