panhui 3 lat temu
rodzic
commit
ba94204184
2 zmienionych plików z 6 dodań i 6 usunięć
  1. 4 5
      src/views/Givesubmit.vue
  2. 2 1
      src/views/activity/Detail.vue

+ 4 - 5
src/views/Givesubmit.vue

@@ -371,14 +371,13 @@ export default {
 /deep/ .van-password-input {
     margin: 0 0;
     .van-password-input__security {
-        border: 1px solid @text3;
+        border: 0px solid @text3!important;
         height: 42px;
         border-radius: 2px;
         li {
             background-color: transparent;
-            &:not(:last-child) {
-                border-right: 1px solid @text3;
-            }
+            border: 1px solid @text3;
+            border-radius: 2px;
             i {
                 color: @text0;
             }
@@ -425,7 +424,7 @@ export default {
 }
 /deep/ .van-password-input {
     margin: 10px 0;
-    padding: 0 25px;
+    padding: 0 15px;
     .van-password-input__security {
         border: 1px solid @text3;
         height: 42px;

+ 2 - 1
src/views/activity/Detail.vue

@@ -1,7 +1,7 @@
 <template>
     <div class="activity">
         <div class="name">{{ info.name }}</div>
-        <van-image :src="info.detail" />
+        <van-image :src="item" v-for="(item, index) in info.detail" :key="index" />
     </div>
 </template>
 
@@ -29,6 +29,7 @@ export default {
             width: 100%;
             height: auto;
         }
+        display: block;
     }
 }