Compare commits

..

4 Commits

3 changed files with 7 additions and 4 deletions

View File

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

View File

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

View File

@@ -156,7 +156,7 @@
<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="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">
<template #default="scope">
<el-image :src="scope.row.scenePhotoUrl" style="width: 50px; height: 50px" :zoom-rate="1.2" :max-scale="7"
@@ -842,6 +842,7 @@ const total = ref(0); //单据
/** 查询库存单据主列表 */
function getList() {
loading.value = true;
queryParams.value.bizTypeList = [0, 3];
listBill(queryParams.value).then((response) => {
billList.value = response.rows;
total.value = response.total;
@@ -1243,6 +1244,7 @@ function addOne() {
}
//根据物料号查询物料信息
// todo 空的物料号会查询出所有信息 查询一条查询不出
function searchInfo(wlNo, index) {
wlSearch(wlNo).then((res) => {
if (res.rows.length > 0) {