Commit a9105393 by zhuzhequan

Merge branch 'dev' into 'master'

Dev

See merge request !83
parents fcc1bb5e a6779ab2
...@@ -1604,6 +1604,11 @@ const saveCompleteShipment = async () => { ...@@ -1604,6 +1604,11 @@ const saveCompleteShipment = async () => {
} catch (e) { } catch (e) {
return return
} }
const loading = ElLoading.service({
lock: true,
text: '加载中...',
background: 'rgba(0, 0, 0, 0.7)',
})
const productIdList = selection.value.map( const productIdList = selection.value.map(
(item: CardOrderData | PodProductList) => item.id, (item: CardOrderData | PodProductList) => item.id,
) )
...@@ -1617,6 +1622,8 @@ const saveCompleteShipment = async () => { ...@@ -1617,6 +1622,8 @@ const saveCompleteShipment = async () => {
loadDiffList() loadDiffList()
} catch (e) { } catch (e) {
console.error(e) console.error(e)
}finally {
loading.close()
} }
} }
......
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