src/views/mainPlan/sheetMetalSupplyGap/index.vue
@@ -87,7 +87,6 @@
import {
  supplyGapList
} from "@/api/basicData/sheetMetalConfig/sheetMetalConfig";
import axios from "axios";
import { listAll_plant } from "@/api/basicData/plant";
import { useI18n } from "vue-i18n"; //要在js中使用国际化
const { t, locale } = useI18n();
@@ -102,9 +101,6 @@
const total = ref(0);
const title = ref("");
const data = reactive({
  form: {
    type: "1",
  },
  queryParams: {
    pageNum: 1,
    pageSize: 10,
@@ -112,12 +108,8 @@
    requireId: null
  },
});
const { queryParams, form, rules } = toRefs(data);
const typeRadioNumber = ref(1);
const { queryParams } = toRefs(data);
const plantList = ref([]);
const shopList = ref([]);
const allShopList = ref([]);
const processList = ref([]);
const height = ref(document.documentElement.clientHeight - 220 + "px;");
// 表格配置-列表
const columns = ref([]);
@@ -238,7 +230,7 @@
    bomLineCode: null,
    requireId: null
  };
  proxy.resetForm("calendarRef");
  proxy.resetForm("queryRef");
}
/** 搜索按钮操作 */
@@ -252,13 +244,6 @@
function resetQuery() {
  proxy.resetForm("queryRef");
  handleQuery();
}
// 多选框选中数据
function handleSelectionChange(selection) {
  ids.value = selection.map((item) => item.id);
  single.value = selection.length != 1;
  multiple.value = !selection.length;
}
/** 导出按钮操作 */
function handleExport() {