This commit is contained in:
bb_pan 2025-03-04 18:10:48 +08:00
parent ac7371c95b
commit 7b3b9f59c5
4 changed files with 33 additions and 5 deletions

View File

@ -13,6 +13,7 @@
style="height: 500px; overflow-y: scroll; padding: 0 20px"
>
<vue-easy-print tableShow ref="printRef">
<div style="text-align: center; font-weight: 800;font-size: 18px;margin-bottom: 20px;">{{ billTitle }}</div>
<div class="order_box">
<div class="order_box_one">
<div>
@ -46,6 +47,7 @@
align="center"
prop="typeName"
:show-overflow-tooltip="true"
class-name="small-padding fixed-width"
/>
<!-- <el-table-column type="expand">
<template slot-scope="scope">
@ -86,6 +88,7 @@
align="center"
prop="typeCode"
:show-overflow-tooltip="true"
class-name="small-padding fixed-width"
/>
<el-table-column
label="退料数量"
@ -94,6 +97,18 @@
width="200"
prop="num"
></el-table-column>
<el-table-column
label="状态"
align="center"
class-name="small-padding fixed-width"
prop="status"
></el-table-column>
<el-table-column
label="备注"
align="center"
class-name="small-padding fixed-width"
prop="remark"
></el-table-column>
<!-- <el-table-column prop="remarks" label="备注" align="center">
<template slot-scope="scope">
<span
@ -194,6 +209,15 @@ export default {
type: Object,
default: {},
},
// title
title: {
type: String,
default: '',
},
billTitle: {
type: String,
default: '',
},
},
watch: {
isShowFlag(val) {

View File

@ -152,7 +152,7 @@
:show-overflow-tooltip="true"
/>
<el-table-column
label="出库数量"
label="出库数量"
align="center"
prop="outNum"
:show-overflow-tooltip="true"

View File

@ -524,7 +524,7 @@
prop="maStatus"
:show-overflow-tooltip="true"
/>
<el-table-column label="备注" align="center" prop="remark">
<!-- <el-table-column label="备注" align="center" prop="remark">
<template slot-scope="scope">
<el-input
v-model="scope.row.remark"
@ -534,7 +534,7 @@
style="width: 100%"
/>
</template>
</el-table-column>
</el-table-column> -->
</el-table>
<pagination
@ -626,7 +626,7 @@
/>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark">
<!-- <el-table-column label="备注" align="center" prop="remark">
<template slot-scope="scope">
<el-input
v-model="scope.row.remark"
@ -636,7 +636,7 @@
style="width: 100%"
/>
</template>
</el-table-column>
</el-table-column> -->
</el-table>
</el-dialog>
@ -1080,6 +1080,7 @@ export default {
outNum: 1,
taskId: this.outObj.taskId,
leaseType: this.leaseType,
// remark: this.outCodeList.find((v) => v.maId == item).remark,
}
return obj
})

View File

@ -266,6 +266,7 @@
<!-- 退料单 -->
<dialogForm
:dialogTitle="title"
:billTitle="billTitle"
:isShowFlag.sync="isShowOneFlag"
:rowObj="rowObj"
:priKey="priKey"
@ -314,6 +315,7 @@ export default {
typeList: [],
//
title: '',
billTitle: '', //
//
open: false,
//
@ -479,6 +481,7 @@ export default {
//退
handlePrint(row) {
// this.title = "退";
this.billTitle = '退料单'
this.isShowOneFlag = true
this.rowObj = row
},