src/views/workreport/workreply.vue
@@ -1,6 +1,12 @@
<template>
  <basic-container>
  <basic-container
    :class="[
      $store.state.control.screenSize == 1366 ? 'smallSize' : 'normalSize',
      $store.state.control.windowWidth >= 1024 ? 'tooRowSearch1' : '',
    ]"
  >
    <avue-crud
      class="tablesss"
      :option="option"
      :table-loading="loading"
      :data="data"
@@ -69,6 +75,7 @@
        pageSize: 10,
        currentPage: 1,
        total: 0,
        ...this.$store.state.control.changePageSize,
      },
      selectionList: [],
      option: {
@@ -91,6 +98,7 @@
        excelBtn: false,
        menuWidth: 320,
        dialogClickModal: false,
        ...this.$store.state.control.clearOtherBut,
        column: workreplyColumn,
      },
      data: [],
@@ -114,7 +122,9 @@
      return ids.join(",");
    },
  },
  mounted() {},
  mounted() {
    this.$store.commit("setWindowSizeHeightAdd");
  },
  methods: {
    rowSave(row, done, loading) {
      row.category = 1;
@@ -262,6 +272,7 @@
            const data = res.data.data;
            this.page.total = data.total;
            this.data = data.records;
            this.$store.commit("setWindowSizeHeightAdd");
            this.loading = false;
            this.selectionClear();
          }
@@ -272,5 +283,4 @@
};
</script>
<style>
</style>
<style></style>