|
|
@@ -159,6 +159,18 @@ import drivePc5_ru from "@/assets/images/market/市场pc_ru.png";
|
|
|
import driveMobile5_white_ru from "@/assets/images/market/市场驾驶舱_white_ru.png";
|
|
|
import driveMobile5_ru from "@/assets/images/market/市场驾驶舱_ru.png";
|
|
|
|
|
|
+// QHSE驾驶舱 - 英文
|
|
|
+import drivePc6_white_en from "@/assets/images/qhse/QHSEpc_white_en.png";
|
|
|
+import drivePc6_en from "@/assets/images/qhse/QHSEpc_en.png";
|
|
|
+import driveMobile6_white_en from "@/assets/images/qhse/QHSE驾驶舱_white_en.png";
|
|
|
+import driveMobile6_en from "@/assets/images/qhse/QHSE驾驶舱_en.png";
|
|
|
+
|
|
|
+// QHSE驾驶舱 - 俄语
|
|
|
+import drivePc6_white_ru from "@/assets/images/qhse/QHSEpc_white_ru.png";
|
|
|
+import drivePc6_ru from "@/assets/images/qhse/QHSEpc_ru.png";
|
|
|
+import driveMobile6_white_ru from "@/assets/images/qhse/QHSE驾驶舱_white_ru.png";
|
|
|
+import driveMobile6_ru from "@/assets/images/qhse/QHSE驾驶舱_ru.png";
|
|
|
+
|
|
|
import all from "@/assets/images/driveall.png";
|
|
|
import jingying from "@/assets/images/jingying.png";
|
|
|
import shengc from "@/assets/images/shengc.png";
|
|
|
@@ -273,9 +285,19 @@ const getDriveCards = () => {
|
|
|
marketingMobileBg = isLight ? driveMobile5_white : driveMobile5;
|
|
|
}
|
|
|
|
|
|
- // QHSE驾驶舱图片(目前只有中文)
|
|
|
- const qhsePcBg = isLight ? drivePc6_white : drivePc6;
|
|
|
- const qhseMobileBg = isLight ? driveMobile6_white : driveMobile6;
|
|
|
+ // QHSE驾驶舱图片
|
|
|
+ let qhsePcBg, qhseMobileBg;
|
|
|
+ if (isEn) {
|
|
|
+ qhsePcBg = isLight ? drivePc6_white_en : drivePc6_en;
|
|
|
+ qhseMobileBg = isLight ? driveMobile6_white_en : driveMobile6_en;
|
|
|
+ } else if (isRu) {
|
|
|
+ qhsePcBg = isLight ? drivePc6_white_ru : drivePc6_ru;
|
|
|
+ qhseMobileBg = isLight ? driveMobile6_white_ru : driveMobile6_ru;
|
|
|
+ } else {
|
|
|
+ // 中文
|
|
|
+ qhsePcBg = isLight ? drivePc6_white : drivePc6;
|
|
|
+ qhseMobileBg = isLight ? driveMobile6_white : driveMobile6;
|
|
|
+ }
|
|
|
|
|
|
return [
|
|
|
{
|