|
|
@ -49,7 +49,7 @@ |
|
|
|
<template #default="slotProps"> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<div class="ElBtnClass"> |
|
|
|
<div class="ElBtnClass"> |
|
|
|
<el-button @click="view(slotProps.scope)">查看</el-button> |
|
|
|
<el-button @click="view(slotProps.scope)">查看详情</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
@ -202,7 +202,7 @@ const showdrawer = _flag => { |
|
|
|
const inputsc = (index, row) => { |
|
|
|
const inputsc = (index, row) => { |
|
|
|
details.query[row.prop] = index; |
|
|
|
details.query[row.prop] = index; |
|
|
|
processRowProperty(index, row, details); |
|
|
|
processRowProperty(index, row, details); |
|
|
|
test(details.query); |
|
|
|
onLoad(); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 实例函数 |
|
|
|
// 实例函数 |
|
|
|
const test = val => {}; |
|
|
|
const test = val => {}; |
|
|
@ -225,6 +225,7 @@ const btnsc = val => { |
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
const selectsc = (index, row) => { |
|
|
|
const selectsc = (index, row) => { |
|
|
|
processRowProperty(index, row, details); |
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
|
|
|
onLoad(); |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
const selectionChange = list => { |
|
|
|
const selectionChange = list => { |
|
|
@ -238,10 +239,12 @@ const searchChange = () => { |
|
|
|
// 每页多少条 |
|
|
|
// 每页多少条 |
|
|
|
const sizeChange = val => { |
|
|
|
const sizeChange = val => { |
|
|
|
details.page.pageSize = val; |
|
|
|
details.page.pageSize = val; |
|
|
|
|
|
|
|
onLoad(); |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
const currentChange = val => { |
|
|
|
const currentChange = val => { |
|
|
|
details.page.currentPage = val; |
|
|
|
details.page.currentPage = val; |
|
|
|
|
|
|
|
onLoad(); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 刷新按钮 |
|
|
|
// 刷新按钮 |
|
|
|
const searchChangeS = () => { |
|
|
|
const searchChangeS = () => { |
|
|
@ -278,16 +281,16 @@ const onLoad = () => { |
|
|
|
details.data = res.data.data.records; |
|
|
|
details.data = res.data.data.records; |
|
|
|
details.data.forEach(item => { |
|
|
|
details.data.forEach(item => { |
|
|
|
if (item.retentionWay == 1) { |
|
|
|
if (item.retentionWay == 1) { |
|
|
|
item.retentionWayName = '扫描'; |
|
|
|
item.retentionWayNameS = '扫描'; |
|
|
|
} else if (item.retentionWay == 2) { |
|
|
|
} else if (item.retentionWay == 2) { |
|
|
|
item.retentionWayName = '文员'; |
|
|
|
item.retentionWayNameS = '文员'; |
|
|
|
} |
|
|
|
} |
|
|
|
if (item.scanType == 1) { |
|
|
|
if (item.scanType == 1) { |
|
|
|
item.scanType = '包件'; |
|
|
|
item.scanType = '包件'; |
|
|
|
} else if (item.scanType == 2) { |
|
|
|
} else if (item.scanTypeS == 2) { |
|
|
|
item.scanTypeName = '订单'; |
|
|
|
item.scanTypeName = '订单'; |
|
|
|
} else if (item.scanType == 3) { |
|
|
|
} else if (item.scanType == 3) { |
|
|
|
item.scanTypeName = '托盘'; |
|
|
|
item.scanTypeNameS = '托盘'; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
details.page.total = res.data.data.total; |
|
|
|
details.page.total = res.data.data.total; |
|
|
@ -295,7 +298,17 @@ const onLoad = () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
onLoad(); |
|
|
|
onLoad(); |
|
|
|
|
|
|
|
const view = row => { |
|
|
|
|
|
|
|
console.log(row, 'row'); |
|
|
|
|
|
|
|
row.row.retention = true; |
|
|
|
|
|
|
|
$router.push({ |
|
|
|
|
|
|
|
path: '/distribution/deliverylist/distributionDeliveryListedt', |
|
|
|
|
|
|
|
query: { |
|
|
|
|
|
|
|
data: JSON.stringify(row.row), |
|
|
|
|
|
|
|
name: row.row.deliveryId + '-查看配送', |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}; |
|
|
|
// 页面初始化方法 |
|
|
|
// 页面初始化方法 |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|