This commit is contained in:
bb_pan 2025-05-30 09:55:25 +08:00
parent 166946521f
commit f4fe7c32d6
3 changed files with 9 additions and 2 deletions

View File

@ -183,6 +183,7 @@ export default {
{ label: '类型名称', prop: 'typeCode' }, { label: '类型名称', prop: 'typeCode' },
{ label: '规格型号', prop: 'modelCode' }, { label: '规格型号', prop: 'modelCode' },
{ label: '计量单位', prop: 'unitNames' }, { label: '计量单位', prop: 'unitNames' },
{ label: '设备编码', prop: 'maCode' },
{ label: '预领数量', prop: 'preCountNum' }, { label: '预领数量', prop: 'preCountNum' },
{ label: '出库数量', prop: 'preCountNum' }, { label: '出库数量', prop: 'preCountNum' },
{ label: '备注', prop: 'remark' } { label: '备注', prop: 'remark' }
@ -229,7 +230,7 @@ export default {
// //
async getDetailsList(code) { async getDetailsList(code) {
try { try {
const res = await getDetailsListApi({ code }) const res = await getDetailsListApi({ ...this.dialogForm, code })
console.log('🚀 ~ 获取详情列表 ~ res:', res) console.log('🚀 ~ 获取详情列表 ~ res:', res)
this.dialogList = res.data.rows this.dialogList = res.data.rows
this.dlgTotal = res.data.total this.dlgTotal = res.data.total

View File

@ -219,7 +219,7 @@ export default {
// //
async getDetailsList(code) { async getDetailsList(code) {
try { try {
const res = await getBackDetailsListApi({ code }) const res = await getBackDetailsListApi({ code, ...this.dialogForm })
console.log('🚀 ~ 获取详情列表 ~ res:', res) console.log('🚀 ~ 获取详情列表 ~ res:', res)
this.dialogList = res.data.rows this.dialogList = res.data.rows
this.dlgTotal = res.data.total this.dlgTotal = res.data.total

View File

@ -494,6 +494,8 @@ export default {
}, },
// //
async handlePrint(row) { async handlePrint(row) {
this.$message.warning('功能开发中...')
return
const res = await getCheckInfo({id:row.id}); const res = await getCheckInfo({id:row.id});
this.idTemp = row.id; this.idTemp = row.id;
this.checkDataInfo = res.data.leaseApplyInfo; this.checkDataInfo = res.data.leaseApplyInfo;
@ -517,6 +519,10 @@ export default {
// //
async handleLld(row) { async handleLld(row) {
//
this.$message.warning('功能开发中...')
return
this.title = "领料单"; this.title = "领料单";
this.open = true; this.open = true;
var ids = row.id; var ids = row.id;