Commit 9f236417 authored by Hagsn3's avatar Hagsn3

代码提交

parent 902789ab
...@@ -14,7 +14,7 @@ import Qs from 'qs' ...@@ -14,7 +14,7 @@ import Qs from 'qs'
// 1. 查询入库记录列表 // 1. 查询入库记录列表
export function listIncomeInoutWmsLog(query) { export function listIncomeInoutWmsLog(query) {
return request({ return request({
url: '/incomeinoutwmslog/list', url: '/incomeinoutwmslog/queryIncomeInoutWmsLogByPagination',
method: 'get', method: 'get',
params: query params: query
}) })
......
...@@ -118,7 +118,9 @@ ...@@ -118,7 +118,9 @@
</el-table-column> </el-table-column>
<el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true"> <el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.whId || '-' }} <span v-if="scope.row.whId === '001'">仓库1</span>
<span v-else-if="scope.row.whId === '002'">仓库2</span>
<span v-else>-</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true"> <el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true">
......
...@@ -125,7 +125,9 @@ ...@@ -125,7 +125,9 @@
</el-table-column> </el-table-column>
<el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true"> <el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.whId || '-' }} <span v-if="scope.row.whId === '001'">仓库1</span>
<span v-else-if="scope.row.whId === '002'">仓库2</span>
<span v-else>-</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true"> <el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment