Commit 86697ebf authored by Hagsn3's avatar Hagsn3

代码提交

parent 9674b2a4
...@@ -347,7 +347,7 @@ export default { ...@@ -347,7 +347,7 @@ export default {
}, },
// 表单参数 // 表单参数
form: { form: {
whId: '001', whId: '',
pn: null, pn: null,
qty: null, qty: null,
dealStatus: '0', dealStatus: '0',
...@@ -438,7 +438,7 @@ export default { ...@@ -438,7 +438,7 @@ export default {
remarks: undefined, remarks: undefined,
pn: undefined, pn: undefined,
qty: undefined, qty: undefined,
whId: '001', whId: this.warehouseList[0].dictValue,
ptype: '2', ptype: '2',
dealStatus: '0', dealStatus: '0',
sureStatus: '0', sureStatus: '0',
......
...@@ -80,9 +80,9 @@ ...@@ -80,9 +80,9 @@
<div class="placeholder" /> <div class="placeholder" />
<div style="padding:5px 10px"> <div style="padding:5px 10px">
<div class="mb12 font-small-bold">入库记录表</div> <div class="mb12 font-small-bold">入库记录表</div>
<el-table v-loading="loading" border :data="incomeInoutWmsLogList"> <el-table v-loading="loading" border :data="incomeInoutWmsLogList" >
<el-table-column type="index" label="序号" width="55" align="center" /> <el-table-column type="index" label="序号" width="55" align="center" />
<el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true" width="100"> <el-table-column label="wh_id" prop="whId" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.whId ">{{ getDataDictLabel(scope.row.whId) }}</span> <span v-if="scope.row.whId ">{{ getDataDictLabel(scope.row.whId) }}</span>
<span v-else>-</span> <span v-else>-</span>
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
{{ scope.row.orderCode || '-' }} {{ scope.row.orderCode || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true" width="100"> <el-table-column label="ptype" prop="ptype" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.ptype === '1'">jb</span> <span v-if="scope.row.ptype === '1'">jb</span>
<span v-else-if="scope.row.ptype === '2'">label</span> <span v-else-if="scope.row.ptype === '2'">label</span>
...@@ -103,19 +103,19 @@ ...@@ -103,19 +103,19 @@
<span v-else>-</span> <span v-else>-</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="pn" prop="pn" :show-overflow-tooltip="true" width="100"> <el-table-column label="pn" prop="pn" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.pn || '-' }} {{ scope.row.pn || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="出入情况" prop="ioType" :show-overflow-tooltip="true" width="100"> <el-table-column label="出入情况" prop="ioType" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.ioType === '1'"></span> <span v-if="scope.row.ioType === '1'"></span>
<span v-else-if="scope.row.ioType === '2'"></span> <span v-else-if="scope.row.ioType === '2'"></span>
<span v-else>-</span> <span v-else>-</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="qty" prop="qty" :show-overflow-tooltip="true" width="100"> <el-table-column label="qty" prop="qty" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.qty || '-' }} {{ scope.row.qty || '-' }}
</template> </template>
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
<!-- <span v-else>-</span>--> <!-- <span v-else>-</span>-->
<!-- </template>--> <!-- </template>-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column label="创建人" prop="updateBy" :show-overflow-tooltip="true"> <el-table-column label="创建人" prop="updateBy" :show-overflow-tooltip="true" width="140">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.createName || '-' }} {{ scope.row.createName || '-' }}
</template> </template>
......
...@@ -365,7 +365,7 @@ export default { ...@@ -365,7 +365,7 @@ export default {
}, },
// 表单参数 // 表单参数
form: { form: {
whId: '001', whId: '',
pn: null, pn: null,
qty: null, qty: null,
dealStatus: '0', dealStatus: '0',
...@@ -443,7 +443,7 @@ export default { ...@@ -443,7 +443,7 @@ export default {
remarks: undefined, remarks: undefined,
pn: undefined, pn: undefined,
qty: undefined, qty: undefined,
whId: '001', whId: this.warehouseList[0].dictValue,
ptype: '2', ptype: '2',
dealStatus: '0', dealStatus: '0',
sureStatus: '0', sureStatus: '0',
......
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