This commit is contained in:
parent
166946521f
commit
f4fe7c32d6
|
|
@ -183,6 +183,7 @@ export default {
|
|||
{ label: '类型名称', prop: 'typeCode' },
|
||||
{ label: '规格型号', prop: 'modelCode' },
|
||||
{ label: '计量单位', prop: 'unitNames' },
|
||||
{ label: '设备编码', prop: 'maCode' },
|
||||
{ label: '预领数量', prop: 'preCountNum' },
|
||||
{ label: '出库数量', prop: 'preCountNum' },
|
||||
{ label: '备注', prop: 'remark' }
|
||||
|
|
@ -229,7 +230,7 @@ export default {
|
|||
// 获取详情列表
|
||||
async getDetailsList(code) {
|
||||
try {
|
||||
const res = await getDetailsListApi({ code })
|
||||
const res = await getDetailsListApi({ ...this.dialogForm, code })
|
||||
console.log('🚀 ~ 获取详情列表 ~ res:', res)
|
||||
this.dialogList = res.data.rows
|
||||
this.dlgTotal = res.data.total
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ export default {
|
|||
// 获取详情列表
|
||||
async getDetailsList(code) {
|
||||
try {
|
||||
const res = await getBackDetailsListApi({ code })
|
||||
const res = await getBackDetailsListApi({ code, ...this.dialogForm })
|
||||
console.log('🚀 ~ 获取详情列表 ~ res:', res)
|
||||
this.dialogList = res.data.rows
|
||||
this.dlgTotal = res.data.total
|
||||
|
|
|
|||
|
|
@ -494,6 +494,8 @@ export default {
|
|||
},
|
||||
//查看验收单
|
||||
async handlePrint(row) {
|
||||
this.$message.warning('功能开发中...')
|
||||
return
|
||||
const res = await getCheckInfo({id:row.id});
|
||||
this.idTemp = row.id;
|
||||
this.checkDataInfo = res.data.leaseApplyInfo;
|
||||
|
|
@ -517,6 +519,10 @@ export default {
|
|||
|
||||
//打开领料单
|
||||
async handleLld(row) {
|
||||
// 提示开发中
|
||||
this.$message.warning('功能开发中...')
|
||||
return
|
||||
|
||||
this.title = "领料单";
|
||||
this.open = true;
|
||||
var ids = row.id;
|
||||
|
|
|
|||
Loading…
Reference in New Issue