Commit 1d38f79d by wusiyi

feat: 工厂订单new增加完成发货功能 #1010213

parent 4435d261
...@@ -3101,10 +3101,16 @@ const handleWeightSort = () => { ...@@ -3101,10 +3101,16 @@ const handleWeightSort = () => {
} }
const handleCompleteDelivery = () => { const handleCompleteDelivery = () => {
if (!ensureSelection()) return if (!ensureSelection()) return
ElMessageBox.confirm('确定完成发货吗?', '提示', { ElMessageBox.confirm(
`<div>确定完成发货吗?</div>
<div style="color: #f56c6c; margin-top: 8px; font-size: 13px;">注意:完成发货前请先核对商品重量</div>`,
'提示',
{
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
}) dangerouslyUseHTMLString: true,
},
)
.then(async () => { .then(async () => {
const params = { const params = {
podOrderWeighingParams: selectedRows.value.map((row) => ({ podOrderWeighingParams: selectedRows.value.map((row) => ({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment