Browse Source

2025-10-27

仓库盘点管理
master
fengyuan_yang 3 months ago
parent
commit
7a394f0947
  1. 12
      src/views/modules/warehouse/countingReport.vue

12
src/views/modules/warehouse/countingReport.vue

@ -149,7 +149,7 @@
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist> <Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist>
<!-- 盘点清单对话框 --> <!-- 盘点清单对话框 -->
<el-dialog title="盘点清单" :close-on-click-modal="false" v-drag :visible.sync="detailFlag" width="90%">
<el-dialog title="盘点清单" :close-on-click-modal="false" v-drag :visible.sync="detailFlag" width="70%">
<!-- 查询条件 --> <!-- 查询条件 -->
<el-form :inline="true" label-position="top" :model="detailSearchData" style="margin-bottom: 10px;"> <el-form :inline="true" label-position="top" :model="detailSearchData" style="margin-bottom: 10px;">
<el-form-item label="标签条码"> <el-form-item label="标签条码">
@ -178,17 +178,17 @@
<!-- 明细列表 --> <!-- 明细列表 -->
<el-table <el-table
:height="500"
:height="400"
:data="detailList" :data="detailList"
border border
v-loading="detailLoading" v-loading="detailLoading"
style="width: 100%;"> style="width: 100%;">
<el-table-column type="index" label="NO." header-align="center" align="center" width="60"></el-table-column> <el-table-column type="index" label="NO." header-align="center" align="center" width="60"></el-table-column>
<el-table-column prop="rollNo" label="标签条码" header-align="center" align="left" min-width="150"></el-table-column>
<el-table-column prop="rollQty" label="标签数量" header-align="center" align="right" min-width="100"></el-table-column>
<el-table-column prop="rollNo" label="标签条码" header-align="center" align="left" min-width="120"></el-table-column>
<el-table-column prop="rollQty" label="标签数量" header-align="center" align="right" min-width="80"></el-table-column>
<el-table-column prop="labelType" label="标签类型" header-align="center" align="center" min-width="100"></el-table-column> <el-table-column prop="labelType" label="标签类型" header-align="center" align="center" min-width="100"></el-table-column>
<el-table-column prop="partNo" label="物料编码" header-align="center" align="left" min-width="150"></el-table-column>
<el-table-column prop="partDesc" label="物料名称" header-align="center" align="left" min-width="200"></el-table-column>
<el-table-column prop="partNo" label="物料编码" header-align="center" align="left" min-width="120"></el-table-column>
<el-table-column prop="partDesc" label="物料名称" header-align="center" align="left" min-width="300"></el-table-column>
<el-table-column prop="checkedFlag" label="是否盘点" header-align="center" align="center" min-width="100"> <el-table-column prop="checkedFlag" label="是否盘点" header-align="center" align="center" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.checkedFlag === 'Y' ? '是' : '否' }} {{ scope.row.checkedFlag === 'Y' ? '是' : '否' }}

Loading…
Cancel
Save