Commit 1c7462bf by wusiyi

Merge branch 'dev'

parents d08671b6 e0e3eec2
...@@ -717,10 +717,18 @@ ...@@ -717,10 +717,18 @@
}" }"
>{{ item.quantity }}</span >{{ item.quantity }}</span
> >
<span v-if="item.status==='INTERCEPTED' && (interceptionStatus.production['0'] || interceptionStatus.shipment['0'])" class="tabs-node-quantity">+{{ <span
((interceptionStatus.production['0'] || 0) + v-if="
(interceptionStatus.shipment['0'] || 0)) || '' item.status === 'INTERCEPTED' &&
}}</span> (interceptionStatus.production['0'] ||
interceptionStatus.shipment['0'])
"
class="tabs-node-quantity"
>+{{
(interceptionStatus.production['0'] || 0) +
(interceptionStatus.shipment['0'] || 0) || ''
}}</span
>
</div> </div>
<!-- <div <!-- <div
v-if="item.status === 'EXCEPTION_ORDER'" v-if="item.status === 'EXCEPTION_ORDER'"
...@@ -2897,7 +2905,7 @@ const handleRefreshAddress = async (row: PodUsOrderListData) => { ...@@ -2897,7 +2905,7 @@ const handleRefreshAddress = async (row: PodUsOrderListData) => {
}, },
) )
} }
const updateAddressType = ref(1) const updateAddressType = ref<1 | 2>(1)
const handleUpdateAddress = async (row: PodUsOrderListData, type: 1 | 2) => { const handleUpdateAddress = async (row: PodUsOrderListData, type: 1 | 2) => {
const { data } = await getAllCountryApi() const { data } = await getAllCountryApi()
countryList.value = data countryList.value = data
...@@ -3330,7 +3338,6 @@ const loadTabData = async () => { ...@@ -3330,7 +3338,6 @@ const loadTabData = async () => {
status: 'INTERCEPTED', status: 'INTERCEPTED',
statusName: '拦截', statusName: '拦截',
quantity: shipmentCount + productionCount, quantity: shipmentCount + productionCount,
}) })
} catch (error) { } catch (error) {
// showError(error) // showError(error)
...@@ -4480,10 +4487,7 @@ const operationLog = async ( ...@@ -4480,10 +4487,7 @@ const operationLog = async (
} }
const addressInfoVisible = ref(false) const addressInfoVisible = ref(false)
const showAddressInfo = (row: PodUsOrderListData) => {
currentItem.value = row
addressInfoVisible.value = true
}
const handleSuccess = () => { const handleSuccess = () => {
loadTabData() loadTabData()
search() search()
...@@ -6015,11 +6019,11 @@ useRouter().beforeEach((to, from, next) => { ...@@ -6015,11 +6019,11 @@ useRouter().beforeEach((to, from, next) => {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
} }
.tabs-node-quantity{ .tabs-node-quantity {
position: relative; position: relative;
color:red; color: red;
font-size: 12px; font-size: 12px;
top:-10px; top: -10px;
right:0px; right: 0px;
} }
</style> </style>
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