盘点列表顺序调整 盘点日期初始值设定

盘点列表顺序调整 盘点日期初始值设定
pull/3/head
siontion 9 months ago
parent acfbf42432
commit 5d7783cb62

@ -54,7 +54,7 @@ const formData = ref({
id: undefined,
stockNo: undefined,
checkType: undefined,
checkTime: new Date(),
checkTime: new Date().getTime(),
noZero: 2,
description: undefined,
status: 1,
@ -125,7 +125,7 @@ const resetForm = () => {
id: undefined,
stockNo: undefined,
checkType: undefined,
checkTime: new Date(),
checkTime: new Date().getTime(),
noZero: 2,
description: undefined,
status: 1,

@ -52,9 +52,9 @@
{{scope.row.stockNo}}</el-button>
</template>
</el-table-column>
<el-table-column label="盘点类型" align="center" prop="checkType" min-width="120">
<el-table-column label="盘点开始时间" align="center" prop="checkTime" min-width="160">
<template #default="scope">
<dict-tag :type="DICT_TYPE.HELI_STORAGE_MAT_CHECK_TYPE" :value="scope.row.checkType" />
<span>{{ formatDate(scope.row.checkTime, 'YYYY-MM-DD') }}</span>
</template>
</el-table-column>
<el-table-column label="盘点仓库" align="center" prop="whId" min-width="100">
@ -62,16 +62,18 @@
{{ whList.find((tag) => tag.id === scope.row.whId)?.wh_name }}
</template>
</el-table-column>
<el-table-column label="盘点开始时间" align="center" prop="checkTime" min-width="160">
<el-table-column label="盘点类型" align="center" prop="checkType" min-width="120">
<template #default="scope">
<span>{{ formatDate(scope.row.checkTime, 'YYYY-MM-DD') }}</span>
<dict-tag :type="DICT_TYPE.HELI_STORAGE_MAT_CHECK_TYPE" :value="scope.row.checkType" />
</template>
</el-table-column>
<el-table-column label="排除库存为0的物料" align="center" prop="noZero" min-width="160" >
<!-- <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> -->
<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