Compare commits

..

1 Commits

Author SHA1 Message Date
zx
92aaad5551 库存单据左侧页面修改 2026-01-21 18:12:22 +08:00
3 changed files with 4 additions and 7 deletions

View File

@@ -1,11 +1,11 @@
import request from '@/utils/request' import request from '@/utils/request'
// 查询库存单据列表 // 查询库存单据列表
export function listBill(data) { export function listBill(query) {
return request({ return request({
url: '/wisdom/bill/list', url: '/wisdom/bill/list',
method: 'POST', method: 'get',
data: data params: query
}) })
} }

View File

@@ -530,7 +530,6 @@ function handleQuery() {
/** 重置按钮操作 */ /** 重置按钮操作 */
function resetQuery() { function resetQuery() {
proxy.resetForm("queryRef"); proxy.resetForm("queryRef");
importTime.value=''
handleQuery(); handleQuery();
} }

View File

@@ -156,7 +156,7 @@
<el-table-column label="身份码" align="center" prop="entityId" width="200" /> <el-table-column label="身份码" align="center" prop="entityId" width="200" />
<el-table-column label="所属大仓" align="center" prop="parentWarehouseName" width="150" /> <el-table-column label="所属大仓" align="center" prop="parentWarehouseName" width="150" />
<el-table-column label="所属小仓" align="center" prop="warehouseName" width="150" /> <el-table-column label="所属小仓" align="center" prop="warehouseName" width="150" />
<!-- <el-table-column label="库龄" align="center" prop="stockAge" /> --> <el-table-column label="库龄" align="center" prop="stockAge" />
<el-table-column label="现场图片" align="center" v-if="isExamine == 1"> <el-table-column label="现场图片" align="center" v-if="isExamine == 1">
<template #default="scope"> <template #default="scope">
<el-image :src="scope.row.scenePhotoUrl" style="width: 50px; height: 50px" :zoom-rate="1.2" :max-scale="7" <el-image :src="scope.row.scenePhotoUrl" style="width: 50px; height: 50px" :zoom-rate="1.2" :max-scale="7"
@@ -842,7 +842,6 @@ const total = ref(0); //单据
/** 查询库存单据主列表 */ /** 查询库存单据主列表 */
function getList() { function getList() {
loading.value = true; loading.value = true;
queryParams.value.bizTypeList = [0, 3];
listBill(queryParams.value).then((response) => { listBill(queryParams.value).then((response) => {
billList.value = response.rows; billList.value = response.rows;
total.value = response.total; total.value = response.total;
@@ -1244,7 +1243,6 @@ function addOne() {
} }
//根据物料号查询物料信息 //根据物料号查询物料信息
// todo 空的物料号会查询出所有信息 查询一条查询不出
function searchInfo(wlNo, index) { function searchInfo(wlNo, index) {
wlSearch(wlNo).then((res) => { wlSearch(wlNo).then((res) => {
if (res.rows.length > 0) { if (res.rows.length > 0) {