Commit ccea7577 authored by 高宇's avatar 高宇

Merge remote-tracking branch 'origin/project9-8' into project9-8

parents 3c169b3d 79af4651
...@@ -487,7 +487,7 @@ export default { ...@@ -487,7 +487,7 @@ export default {
], ],
// 查询参数 // 查询参数
queryParams: { queryParams: {
cj: '1', cj: null,
page: 1, page: 1,
rows: 10, rows: 10,
pn: null, pn: null,
...@@ -500,7 +500,7 @@ export default { ...@@ -500,7 +500,7 @@ export default {
}, },
// 表单参数 // 表单参数
form: { form: {
cj: '', cj: null,
whId: '', whId: '',
pn: null, pn: null,
qty: null, qty: null,
......
...@@ -52,6 +52,16 @@ ...@@ -52,6 +52,16 @@
style="width: 150px" style="width: 150px"
/> />
</el-form-item> </el-form-item>
<el-form-item label="location" prop="location">
<el-input
v-model="queryParams.location"
placeholder="请输入location"
clearable
:maxlength="100"
size="small"
style="width: 150px"
/>
</el-form-item>
<el-form-item label="pn" prop="pn"> <el-form-item label="pn" prop="pn">
<el-input <el-input
v-model="queryParams.pn" v-model="queryParams.pn"
...@@ -130,6 +140,13 @@ ...@@ -130,6 +140,13 @@
{{ scope.row.lot || '-' }} {{ scope.row.lot || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="location" prop="location" :show-overflow-tooltip="true" width="110">
<template slot-scope="scope">
{{ scope.row.location || '-' }}
</template>
</el-table-column>
<el-table-column label="pn" prop="pn" :show-overflow-tooltip="true" width="110"> <el-table-column label="pn" prop="pn" :show-overflow-tooltip="true" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.pn || '-' }} {{ scope.row.pn || '-' }}
...@@ -290,6 +307,7 @@ export default { ...@@ -290,6 +307,7 @@ export default {
rank: undefined, rank: undefined,
orderCode: undefined, orderCode: undefined,
labelId: undefined, labelId: undefined,
location: undefined,
flag: '' flag: ''
}, },
// 表单参数 // 表单参数
...@@ -356,6 +374,7 @@ export default { ...@@ -356,6 +374,7 @@ export default {
rank: undefined, rank: undefined,
orderCode: undefined, orderCode: undefined,
labelId: undefined, labelId: undefined,
location: undefined,
flag: '1' flag: '1'
} }
this.resetForm('form') this.resetForm('form')
......
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