gongchunyi
2026-08-12 a5232f3b87cae39a7957ba9c8af905680088582a
src/views/inventoryManagement/stockReport/index.vue
@@ -152,7 +152,11 @@
                           prop="createTime"
                           width="200"
                           show-overflow-tooltip
                           v-if="searchForm.reportType !== 'inout'" />
                           v-if="searchForm.reportType !== 'inout'">
            <template #default="scope">
              {{ formatDate(scope.row.createTime) }}
            </template>
          </el-table-column>
          <el-table-column label="入库批次"
                           prop="inboundBatches"
                           width="180"
@@ -252,6 +256,11 @@
  const total = ref(0);
  const formatDate = value => {
    if (!value) return "";
    return String(value).slice(0, 10);
  };
  const stockRecordTypeOptions = ref([]);
  const getRecordType = recordType => {