|
|
@@ -528,7 +528,8 @@ const drawer = ref(false)
|
|
|
const props = defineProps({
|
|
|
isShipment: Boolean,
|
|
|
searchTableQeury: Object,
|
|
|
- isShowMoreFiltersGuidePhoto: Boolean
|
|
|
+ isShowMoreFiltersGuidePhoto: Boolean,
|
|
|
+ pageMode: String
|
|
|
})
|
|
|
const PartyTypeoptions = computed(() => {
|
|
|
if (props.isShipment) {
|
|
|
@@ -1008,14 +1009,21 @@ watch(
|
|
|
searchTableQeurytest.value = current
|
|
|
}
|
|
|
)
|
|
|
-import moreFiltersImgLight from '@/views/Tracking/src/image/more-filters-guide.png'
|
|
|
-import moreFiltersImgDark from '@/views/Tracking/src/image/dark-more-filters-guide.png'
|
|
|
+import trackingMoreFiltersImgLight from './image/tracking-more-filters-guide.png'
|
|
|
+import trackingMoreFiltersImgDark from './image/tracking-dark-more-filters-guide.png'
|
|
|
+import bookingMoreFiltersImgLight from './image/booking-more-filters-guide.png'
|
|
|
+import bookingMoreFiltersImgDark from './image/booking-dark-more-filters-guide.png'
|
|
|
import { useThemeStore } from '@/stores/modules/theme'
|
|
|
|
|
|
const themeStore = useThemeStore()
|
|
|
|
|
|
const moreFiltersGuideImg = computed(() => {
|
|
|
- return themeStore.theme === 'dark' ? moreFiltersImgDark : moreFiltersImgLight
|
|
|
+ console.log('props.pageMode', props.pageMode)
|
|
|
+ if (props.pageMode === 'tracking') {
|
|
|
+ return themeStore.theme === 'dark' ? trackingMoreFiltersImgDark : trackingMoreFiltersImgLight
|
|
|
+ } else {
|
|
|
+ return themeStore.theme === 'dark' ? bookingMoreFiltersImgDark : bookingMoreFiltersImgLight
|
|
|
+ }
|
|
|
})
|
|
|
</script>
|
|
|
<template>
|
|
|
@@ -1239,7 +1247,7 @@ img.more-filters-guide-class {
|
|
|
z-index: 20000;
|
|
|
&.dark-more-filters-guide-class {
|
|
|
right: 0px;
|
|
|
- width: 250px;
|
|
|
+ width: 200px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -1274,6 +1282,7 @@ img.more-filters-guide-class {
|
|
|
|
|
|
.Filters_title {
|
|
|
margin: 0 8px;
|
|
|
+ margin-left: 7px;
|
|
|
}
|
|
|
|
|
|
:deep(.el-drawer__header) {
|