carey0001 5 years ago
parent
commit
5cc0c097e0
3 changed files with 20 additions and 7 deletions
  1. 2 0
      components/titles.vue
  2. 7 6
      pages/bidding/subStage.vue
  3. 11 1
      pages/project/details.vue

+ 2 - 0
components/titles.vue

@@ -27,6 +27,8 @@ export default {
 <style  scoped lang="scss">
 .head {
   background-color: #fff;
+  border-bottom: 1px solid #f0f0f0;
+  box-sizing: border-box;
 }
 .head img {
   float: left;

+ 7 - 6
pages/bidding/subStage.vue

@@ -49,32 +49,33 @@ export default {
 }
 .sub_stage .stage_box{
   width: 100%;
-      padding-left: 15px;
+  padding: 0 1.5rem;
 }
 .sub_stage .stage_box li{
   color: #202020;
     line-height: 60px;
     transition: 0.2s;
     position: relative;
-    background-image: url('../..//static/img/icon_select.png');
+    background-image: url('../../static/img/icon_select.png');
     background-position: right center;
     background-size: 20px;
     background-repeat: no-repeat;
 }
 .sub_stage .stage_box li::after{
-  position: absolute;
+      position: absolute;
     content: '';
     display: block;
-    width: 100%;
     height: 1px;
     left: 0;
     bottom: 0;
     right: 0;
-    padding-right: 1.5rem;
     background-color: #f0f0f0;
+    margin-right: -1.5rem;
+    margin-left: -1.5rem;
 }
 .sub_stage .stage_box li.active{
-  
+  background-image: url('../../static/img/icon_selected.png');
+  color: #ff5c5c;
 }
 .sub_stage button{
       width: 100%;

+ 11 - 1
pages/project/details.vue

@@ -1,5 +1,6 @@
 <template>
   <section class="detaile">
+    
     <div class="head">
       <img src="~/static/img/back.png" alt>
       <span>项目详情</span>
@@ -197,7 +198,16 @@
 
 <script>
 import '~/assets/details.scss'
-export default {}
+export default {
+  data(){
+    return{
+
+    }
+  },
+  components:{
+    
+  }
+}
 </script>
 
 <style>