This commit is contained in:
parent
166946521f
commit
f4fe7c32d6
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue