From d3fc230051884ee203e8adef0b8ff4158c2b43fe Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 16 Dec 2021 16:39:21 +0800
Subject: [PATCH] +全屏弹窗样式修改

---
 src/components/mobilePopupOurOnce/index.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/components/mobilePopupOurOnce/index.vue b/src/components/mobilePopupOurOnce/index.vue
index 018560c..a9437b1 100644
--- a/src/components/mobilePopupOurOnce/index.vue
+++ b/src/components/mobilePopupOurOnce/index.vue
@@ -1,6 +1,12 @@
 <template>
   <div class="mobilePopupOurOnce">
-    <div class="mobilePopupOurOnce_center">
+    <div
+      class="mobilePopupOurOnce_center"
+      :style="{
+        borderBottom: !ends ? '#d4d4d4 dashed 1px' : '',
+        marginBottom: !ends ? '6px' : '',
+      }"
+    >
       <div class="mobilePopupOurOnce_left">
         <img src="img/cc/cc.png" alt="" />
       </div>
@@ -29,7 +35,7 @@
 <script>
 import { mapGetters } from "vuex";
 export default {
-  props: ["onceData"],
+  props: ["onceData", "ends"],
   name: "mobilePopupOurOnce",
   created() {
     this.DC = global.DC;
@@ -84,9 +90,9 @@
   padding: 0 0;
   margin: 0 8px;
   .mobilePopupOurOnce_center {
-    margin-bottom: 8px;
+    // margin-bottom: 8px;
     height: 80px;
-    border-bottom: #d4d4d4 dashed 1px;
+    // border-bottom: #d4d4d4 dashed 1px;
     padding-bottom: 8px;
     @extend .flexCenter;
     .mobilePopupOurOnce_left {

--
Gitblit v1.9.3