Commit f7d9f747a429d216f5ad72c6029aed901597218e

Authored by boyang
1 parent 00504163

fix: 修改contact内容,prod2-70/71

components/Footer.vue
... ... @@ -165,18 +165,36 @@
165 165 </p>
166 166 </v-col>
167 167 <v-col cols="12" lg="3" sm="12" md="6">
168   - <div class="tw-w-[250px] tw-float-left tw-mr-[8px]">
169   - <b>Contact us</b>
170   - <p>Email: contact@canrd.com</p>
171   - <p>Phone: +86 19867737979</p>
172   - <p>Wechat: contactcanrd</p>
  168 + <b class="tw-mb-3">Contact us</b>
  169 + <div style="display: flex; margin-bottom: 15px;">
  170 + <label class="tw-w-[150px] tw-inline-block">
  171 + Sales Email:
  172 + </label>
  173 + <div>
  174 + <div style="white-space: nowrap;margin-left: 0px;">sales.us@canrd.com</div>
  175 + <div style="white-space: nowrap;margin-left: 0px;">sales.eu@canrd.com</div>
  176 + <div style="white-space: nowrap;margin-left: 0px;">sales.global@canrd.com</div>
  177 + </div>
  178 + </div>
  179 + <div style="display: flex; align-items: center; margin-bottom: 15px;">
  180 + <label class="tw-w-[90px] tw-inline-block">
  181 + Contact us:
  182 + </label>
  183 + <div style="white-space: nowrap;">contact@canrd.com</div>
  184 + </div>
  185 + <div style="display: flex; align-items: center; margin-bottom: 15px;">
  186 + <label class="tw-w-[150px] tw-inline-block">
  187 + WhatsApp/Wechat:
  188 + </label>
  189 + <div style="white-space: nowrap;">+86 19867737979</div>
  190 + </div>
  191 + <div class="tw-mt-2 tw-mb-[15px]">
  192 + <img
  193 + src="/wechat.jpg"
  194 + alt="canrud-wechat"
  195 + width="80"
  196 + />
173 197 </div>
174   - <img
175   - class="tw-float-left"
176   - src="/wechat.jpg"
177   - alt="canrud-wechat"
178   - width="80"
179   - />
180 198 </v-col>
181 199 </v-row>
182 200 </v-container>
... ...
deploy/prod2.sh
1 1 #!/bin/bash
2 2 # 变量定义
3   -LAST_TAG="1.0.69"
4   -TAG="1.0.70"
  3 +LAST_TAG="1.0.70"
  4 +TAG="1.0.71"
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"
... ...
pages/contact.vue
... ... @@ -13,25 +13,29 @@
13 13 <label class="text-subtitle-1 tw-mr-4 tw-w-20 tw-inline-block">QQ</label>
14 14 <span>3632191327</span>
15 15 </div> -->
16   - <div>
17   - <label class="text-subtitle-1 tw-mr-4 tw-w-20 tw-inline-block"
18   - >Phone</label
19   - >
20   - <span>+86 19867737979</span>
  16 + <div style="display: flex; align-items: center; margin-bottom: 15px;">
  17 + <label class="text-subtitle-1 tw-w-[150px] tw-inline-block">
  18 + WhatsApp/Wechat
  19 + </label>
  20 + <div style="white-space: nowrap;">+86 19867737979</div>
21 21 </div>
22   - <div>
23   - <label class="text-subtitle-1 tw-mr-4 tw-w-20 tw-inline-block"
24   - >Email</label
25   - >
26   - <span>contact@canrd.com</span>
  22 + <div style="display: flex; margin-bottom: 15px;">
  23 + <label class="text-subtitle-1 tw-w-[150px] tw-inline-block">
  24 + Sales Email
  25 + </label>
  26 + <div>
  27 + <div>sales.us@canrd.com</div>
  28 + <div>sales.eu@canrd.com</div>
  29 + <div>sales.global@canrd.com</div>
  30 + </div>
27 31 </div>
28   - <div class="tw-mb-1">
29   - <label class="text-subtitle-1 tw-mr-4 tw-w-20 tw-inline-block"
30   - >Wechat</label
31   - >
32   - <span>contactcanrd</span>
  32 + <div style="display: flex; align-items: center; margin-bottom: 15px;">
  33 + <label class="text-subtitle-1 tw-w-[150px] tw-inline-block">
  34 + Contact us
  35 + </label>
  36 + <div style="white-space: nowrap;">contact@canrd.com</div>
33 37 </div>
34   - <div class="tw-w-[300px]">
  38 + <div class="tw-w-[300px] tw-mb-[15px]">
35 39 <v-img src="/wechat.jpg" alt="canrud-wechat"></v-img>
36 40 </div>
37 41 <div :class="isMobile() ? 'mobileIcon' : 'icon'">
... ...