Commit 9f236417 authored by Hagsn3's avatar Hagsn3

代码提交

parent 902789ab
......@@ -14,7 +14,7 @@ import Qs from 'qs'
// 1. 查询入库记录列表
export function listIncomeInoutWmsLog(query) {
return request({
url: '/incomeinoutwmslog/list',
url: '/incomeinoutwmslog/queryIncomeInoutWmsLogByPagination',
method: 'get',
params: query
})
......
......@@ -118,7 +118,9 @@
</el-table-column>
<el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true">
<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>
</el-table-column>
<el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true">
......
......@@ -125,7 +125,9 @@
</el-table-column>
<el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true">
<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>
</el-table-column>
<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