Commit 3e07ee50 by qinjianhui

fix: 物流方式在非全部节点时清空

parent 7475fee0
...@@ -1260,6 +1260,9 @@ const handleRefreshReceiverAddress = async (row: FactoryOrderNewListData) => { ...@@ -1260,6 +1260,9 @@ const handleRefreshReceiverAddress = async (row: FactoryOrderNewListData) => {
} }
const handleStatusNodeClick = (node: { status: string }) => { const handleStatusNodeClick = (node: { status: string }) => {
if (node.status !== 'ALL') {
searchForm.value.logisticsWayId = undefined
}
status.value = node.status status.value = node.status
if (node.status !== 'PENDING_RECEIVE') { if (node.status !== 'PENDING_RECEIVE') {
pendingAcceptSubTab.value = 'PENDING_RECEIVE' pendingAcceptSubTab.value = 'PENDING_RECEIVE'
......
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