Commit e354694e138d5a18d4acf39924dfe02e7c9a839c

Authored by boyang
1 parent e4816a9f

fix: prod2.sh-25-26

components/MobileProductDetail.vue
... ... @@ -424,7 +424,6 @@ const items = ref<BreadcrumbItem[]>([
424 424 },
425 425 ]);
426 426 watchEffect(() => {
427   - console.log(info, "5656info");
428 427 currentUrl.value = window.location.href;
429 428 if (info?.productCrumbsVO?.category1 && productStore.keyword) {
430 429 items.value[1].title = info.productCrumbsVO.category1;
... ...
components/ProductDetail.vue
... ... @@ -556,7 +556,6 @@ watchEffect(() => {
556 556 }
557 557 }
558 558 recommendList.value = resData.value.data.records;
559   - console.log(resData.value, "5656resData.value.data");
560 559  
561 560 // recommendImages.value = recommendList.value.slice(0, 10).map((item) => {
562 561 recommendImages.value = Array.from({ length: 10 }).map((_, index) => {
... ...
deploy/prod2.sh
1 1 #!/bin/bash
2 2 # 变量定义
3   -LAST_TAG="1.0.24"
4   -TAG="1.0.25"
  3 +LAST_TAG="1.0.25"
  4 +TAG="1.0.26"
5 5 TARGET_PATH="/root/web/canrud-outside-nuxt-front"
6 6 DOCKERFILE_PATH="/root/web/canrud-outside-nuxt-front/canrud-nuxt-front"
7 7 IMAGE_NAME="canrud-outside-front"
... ...