盘点库存 排除列 默认当前日期

盘点库存 排除列 默认当前日期
pull/3/head
siontion 9 months ago
parent ba7301b2a3
commit bba7458485

@ -52,7 +52,7 @@ const formData = ref({
id: undefined,
stockNo: undefined,
checkType: undefined,
checkTime: undefined,
checkTime: new Date(),
noZero: 1,
description: undefined,
status: 1,
@ -123,7 +123,7 @@ const resetForm = () => {
id: undefined,
stockNo: undefined,
checkType: undefined,
checkTime: undefined,
checkTime: new Date(),
noZero: 1,
description: undefined,
status: 1,

@ -67,6 +67,11 @@
<span>{{ formatDate(scope.row.checkTime, 'YYYY-MM-DD') }}</span>
</template>
</el-table-column>
<el-table-column label="排除库存为0的物料" align="center" prop="noZero" min-width="160" >
<template #default="scope">
<dict-tag :type="DICT_TYPE.HELI_COMMON_IS_OR_NOT" :value="scope.row.noZero" />
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="description" min-width="160" />
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
<template #default="scope">

Loading…
Cancel
Save