src/views/inventoryManagement/dispatchLog/index.vue
@@ -21,12 +21,9 @@
               clearable
               @change="handleQuery"
            />
            <el-button type="primary" @click="handleQuery" style="margin-left: 10px"
            >搜索</el-button
            >
            <el-button type="primary" @click="handleQuery" style="margin-left: 10px">搜索</el-button>
         </div>
         <div>
            <!-- <el-button type="primary" @click="openForm('add')">新增</el-button> -->
            <el-button @click="handleOut">导出</el-button>
            <el-button type="danger" plain @click="handleDelete">删除</el-button>
            <el-button type="primary" plain @click="handlePrint">打印</el-button>
@@ -258,7 +255,7 @@
<script setup>
import pagination from "@/components/PIMTable/Pagination.vue";
import { ref } from "vue";
import { ref, reactive, toRefs, onMounted, getCurrentInstance } from "vue";
import { ElMessageBox } from "element-plus";
import useUserStore from "@/store/modules/user";
import {
@@ -322,7 +319,13 @@
};
const getList = () => {
   tableLoading.value = true;
   getStockOutPage({ ...searchForm.value, ...page })
   const params = {
      ...page,
      supplierName: searchForm.value.supplierName,
      timeStr: searchForm.value.timeStr
   }
   getStockOutPage(params)
      .then((res) => {
         tableLoading.value = false;
         tableData.value = res.data.records;
@@ -336,6 +339,7 @@
      });
};
// 表格选择数据
const handleSelectionChange = (selection) => {
   // 过滤掉子数据