gongchunyi
8 天以前 32964ab7d650d4a6a4d038536603b6368060dacc
src/views/inventoryManagement/receiptManagement/Record.vue
@@ -68,6 +68,7 @@
                         show-overflow-tooltip/>
        <el-table-column label="入库时间"
                         prop="createTime"
                         :formatter="formatTableDateYmd"
                         show-overflow-tooltip/>
        <el-table-column label="产品大类"
                         prop="productName"
@@ -122,9 +123,17 @@
import {
  findAllQualifiedStockInRecordTypeOptions, findAllUnQualifiedStockInRecordTypeOptions,
} from "@/api/basicData/enum.js";
import {parseTime} from "@/utils/ruoyi";
const {proxy} = getCurrentInstance();
const formatTableDateYmd = (row, column, cellValue) => {
  if (cellValue == null || cellValue === "") {
    return "";
  }
  return parseTime(cellValue, "{y}-{m}-{d}") || "";
};
const props = defineProps({
  type: {
    type: String,