|
@@ -3,8 +3,8 @@ import { useDriver } from '@/utils/driverGuide'
|
|
|
import { useGuideStore } from '@/stores/modules/guide'
|
|
import { useGuideStore } from '@/stores/modules/guide'
|
|
|
import { useThemeStore } from '@/stores/modules/theme'
|
|
import { useThemeStore } from '@/stores/modules/theme'
|
|
|
|
|
|
|
|
-import customizeColumnsImgLight from '@/views/Tracking/src/image/customize-columns.png'
|
|
|
|
|
-import customizeColumnsImgDark from '@/views/Tracking/src/image/dark-customize-columns.png'
|
|
|
|
|
|
|
+import customizeColumnsImgLight from '../image/customize-columns.png'
|
|
|
|
|
+import customizeColumnsImgDark from '../image/dark-customize-columns.png'
|
|
|
|
|
|
|
|
import downloadFileImgLight from '@/views/Tracking/src/image/download-guide.png'
|
|
import downloadFileImgLight from '@/views/Tracking/src/image/download-guide.png'
|
|
|
import downloadFileImgDark from '@/views/Tracking/src/image/dark-download-guide.png'
|
|
import downloadFileImgDark from '@/views/Tracking/src/image/dark-download-guide.png'
|
|
@@ -194,6 +194,7 @@ defineExpose({
|
|
|
<!-- download-file-guide -->
|
|
<!-- download-file-guide -->
|
|
|
<Teleport to="body">
|
|
<Teleport to="body">
|
|
|
<img
|
|
<img
|
|
|
|
|
+ :class="{ 'download-file-guide-dark-class': themeStore.theme === 'dark' }"
|
|
|
id="booking-download-file-guide"
|
|
id="booking-download-file-guide"
|
|
|
v-show="bookingGuideStore.isShowDownloadFileGuidePhoto"
|
|
v-show="bookingGuideStore.isShowDownloadFileGuidePhoto"
|
|
|
class="position-absolute-guide download-file-guide-class"
|
|
class="position-absolute-guide download-file-guide-class"
|
|
@@ -204,6 +205,7 @@ defineExpose({
|
|
|
<!-- customize-columns-guide -->
|
|
<!-- customize-columns-guide -->
|
|
|
<Teleport to="body">
|
|
<Teleport to="body">
|
|
|
<img
|
|
<img
|
|
|
|
|
+ :class="{ 'customize-columns-guide-dark-class': themeStore.theme === 'dark' }"
|
|
|
id="booking-customize-columns-guide"
|
|
id="booking-customize-columns-guide"
|
|
|
v-show="bookingGuideStore.isShowCustomizeColumnsGuidePhoto"
|
|
v-show="bookingGuideStore.isShowCustomizeColumnsGuidePhoto"
|
|
|
class="position-absolute-guide customize-columns-guide-class"
|
|
class="position-absolute-guide customize-columns-guide-class"
|
|
@@ -221,15 +223,21 @@ defineExpose({
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.download-file-guide-class {
|
|
.download-file-guide-class {
|
|
|
- right: 204px;
|
|
|
|
|
- top: 245px;
|
|
|
|
|
- width: 488px;
|
|
|
|
|
- height: 333px;
|
|
|
|
|
|
|
+ right: 203px;
|
|
|
|
|
+ top: 246px;
|
|
|
|
|
+ width: 317px;
|
|
|
|
|
+ height: 234px;
|
|
|
|
|
+ &.download-file-guide-dark-class {
|
|
|
|
|
+ width: 322px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
.customize-columns-guide-class {
|
|
.customize-columns-guide-class {
|
|
|
- right: 24px;
|
|
|
|
|
- top: 246px;
|
|
|
|
|
- width: 515px;
|
|
|
|
|
- height: 353px;
|
|
|
|
|
|
|
+ right: 25px;
|
|
|
|
|
+ top: 245px;
|
|
|
|
|
+ width: 647px;
|
|
|
|
|
+ height: 441px;
|
|
|
|
|
+ &.customize-columns-guide-dark-class {
|
|
|
|
|
+ right: 24px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|