Commit 0b26f917b8ce3c559a27d5f184473a6cedad9f3c

Authored by boyang
1 parent 0c00a048

fix: 修改期刊最小高度,prod2.sh-34/35

components/ProductDetail.vue
... ... @@ -262,7 +262,7 @@
262 262 </div>
263 263 </div>
264 264 <div style="display: flex">
265   - <div class="tw-pb-[64px]" style="width: 70%; margin-right: 10px">
  265 + <div class="tw-pb-[64px]" style="width: 70%; margin-right: 10px;">
266 266 <v-tabs
267 267 class="tabs"
268 268 v-model="tab"
... ... @@ -275,7 +275,7 @@
275 275 <v-tab :value="2">Specification</v-tab>
276 276 <!-- <v-tab :value="3">商品百科</v-tab> -->
277 277 </v-tabs>
278   - <v-window v-model="tab" class="tw-p-[24px]">
  278 + <v-window v-model="tab" class="tw-p-[24px]" style="min-height: 500px; height: auto;" >
279 279 <v-window-item key="1" :value="1">
280 280 <div v-if="info.advantage" class="tw-mb-[24px]">
281 281 <div class="text-h6">Advantage</div>
... ...
deploy/prod2.sh
1 1 #!/bin/bash
2 2 # 变量定义
3   -LAST_TAG="1.0.33"
4   -TAG="1.0.34"
  3 +LAST_TAG="1.0.34"
  4 +TAG="1.0.35"
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"
... ...