yuan
昨天 2e8667e5e254ab96a1e7f28172d7ec2bbcd24cb7
fix: 修改入库时间和出库时间
已修改2个文件
18 ■■■■ 文件已修改
src/views/inventoryManagement/dispatchLog/Record.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/receiptManagement/Record.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/dispatchLog/Record.vue
@@ -102,9 +102,13 @@
        <el-table-column
          label="出库日期"
          prop="createTime"
          width="180"
          width="120"
          show-overflow-tooltip
        />
        >
          <template #default="scope">
            <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
          </template>
        </el-table-column>
        <el-table-column
          label="产品大类"
          prop="productName"
@@ -167,6 +171,7 @@
  findAllQualifiedStockOutRecordTypeOptions,
  findAllUnQualifiedStockOutRecordTypeOptions,
} from "@/api/basicData/enum.js";
import { parseTime } from "@/utils/ruoyi";
const userStore = useUserStore();
const { proxy } = getCurrentInstance();
src/views/inventoryManagement/receiptManagement/Record.vue
@@ -106,8 +106,12 @@
                         show-overflow-tooltip/>
        <el-table-column label="入库时间"
                         prop="createTime"
                         width="160"
                         show-overflow-tooltip/>
                         width="120"
                         show-overflow-tooltip>
          <template #default="scope">
            <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
          </template>
        </el-table-column>
        <el-table-column label="产品大类"
                         prop="productName"
                         show-overflow-tooltip/>
@@ -185,6 +189,7 @@
  findAllQualifiedStockInRecordTypeOptions, 
  // findAllUnQualifiedStockInRecordTypeOptions,
} from "@/api/basicData/enum.js";
import { parseTime } from "@/utils/ruoyi";
const {proxy} = getCurrentInstance();