Compare commits
3 Commits
6047f5850e
...
zx
| Author | SHA1 | Date | |
|---|---|---|---|
| a7e53d89d8 | |||
| 03c8682225 | |||
| a83b0c2589 |
@@ -1,11 +1,11 @@
|
|||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
// 查询库存单据列表
|
// 查询库存单据列表
|
||||||
export function listBill(query) {
|
export function listBill(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/wisdom/bill/list',
|
url: '/wisdom/bill/list',
|
||||||
method: 'get',
|
method: 'POST',
|
||||||
params: query
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -530,6 +530,7 @@ function handleQuery() {
|
|||||||
/** 重置按钮操作 */
|
/** 重置按钮操作 */
|
||||||
function resetQuery() {
|
function resetQuery() {
|
||||||
proxy.resetForm("queryRef");
|
proxy.resetForm("queryRef");
|
||||||
|
importTime.value=''
|
||||||
handleQuery();
|
handleQuery();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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,6 +842,7 @@ 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;
|
||||||
@@ -1243,6 +1244,7 @@ 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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user