magic v 5 rokov pred
rodič
commit
5278f3e8e1

+ 1 - 0
src/pages/FormVolume/Layout1/index.vue

@@ -43,6 +43,7 @@
         </div>
       </li>
     </transition-group>
+    <slot name="tel" />
   </div>
   
   <div class="footer" v-if="!!data.result.length">

+ 1 - 0
src/pages/FormVolume/Layout1/style.scss

@@ -13,6 +13,7 @@
     .des {
       color: $color-2;
       padding-bottom: $sp-lg;
+      font-size: $size-xs;
     }
   }
   .body {

+ 1 - 0
src/pages/FormVolume/Layout2/index.vue

@@ -53,6 +53,7 @@
         </div>
       </li>
     </transition-group>
+    <slot name="tel" />
   </div>
   
   <div class="footer" v-if="!!data.result.length">

+ 1 - 0
src/pages/FormVolume/Layout2/style.scss

@@ -40,6 +40,7 @@
     }
     .des {
       padding-bottom: $sp-lg * 2;
+      font-size: $size-xs;
     }
   }
   .body {

+ 5 - 0
src/pages/FormVolume/index.vue

@@ -5,6 +5,11 @@
     :loading="loading"
     @submit="btnSubmit"
     v-if="layoutCurrent != 'van-empty' && !loading.empty">
+    <div class="tel-message" slot="tel">
+      <span>· 感谢您的支持与关注!任何问题,请您联系</span>
+      <a href="tel:400-690-5366" class="tel">400-690-5366</a>
+      <span>,我们将竭诚为您服务!</span>
+    </div>
     <div>
       <van-dialog
         v-model="show.submit"

+ 9 - 0
src/pages/FormVolume/style.scss

@@ -24,3 +24,12 @@
     color: $color-3;
   }
 }
+.tel-message {
+  padding: $sp-lg;
+  padding-bottom: $sp-md;
+  color: $color-3;
+  font-size: $size-xs;
+  .tel {
+    color: $color;
+  }
+}