Browse Source

H5-商品

panyong 3 years ago
parent
commit
d60a085926

BIN
htmldev/dashboard/src/views/sell/aflogo/image/ic_music@2x.png


BIN
htmldev/dashboard/src/views/sell/aflogo/image/ic_sold_out@2x.png


BIN
htmldev/dashboard/src/views/sell/aflogo/image/sell_logo@2x.png


+ 99 - 0
htmldev/dashboard/src/views/sell/aflogo/index.vue

@@ -0,0 +1,99 @@
+<template>
+  <div class="header">
+    <div class="wrap">
+      <img alt="" class="logo" src="./image/sell_logo@2x.png">
+      <p class="title">AF HOUSE音乐现场</p>
+      <p class="outlet-name">
+        <img alt="" src="./image/ic_music@2x.png">
+        <span>星桥店</span>
+      </p>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'index'
+}
+</script>
+
+<style lang="scss" scoped>
+.header {
+  position: relative;
+  left: 0;
+  top: 0;
+  width: 375px;
+  height: 107px;
+  padding-top: 17px;
+
+  &:before {
+    position: absolute;
+    left: 0;
+    top: 0;
+    content: '';
+    display: block;
+    width: 100%;
+    height: 63px;
+    background: linear-gradient(45deg, #000000 0%, #525050 100%);
+  }
+
+  .wrap {
+    position: relative;
+    left: 0;
+    top: 0;
+    z-index: 1;
+    width: 355px;
+    height: 80px;
+    padding: 16px 0 0 16px;
+    margin: 0 auto;
+    background: #FFFFFF;
+    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.04);
+    border-radius: 8px;
+
+    .logo {
+      display: block;
+      width: 130px;
+      height: 20px;
+    }
+
+    .title {
+      margin-top: 8px;
+      font-size: 14px;
+      color: #736F6F;
+      line-height: 20px;
+    }
+  }
+
+  .outlet-name {
+    position: absolute;
+    right: 0;
+    top: 16px;
+    z-index: 1;
+    display: flex;
+    align-items: center;
+    min-width: 106px;
+    max-width: 180px;
+    height: 36px;
+    padding: 0 11px;
+    background: linear-gradient(86deg, #F0E1E2 0%, #DDC5C0 100%);
+    border-radius: 18px 0 0 18px;
+
+    img {
+      width: 20px;
+      height: 20px;
+    }
+
+    span {
+      margin-left: 4px;
+      font-size: 16px;
+      font-family: PingFangSC-Semibold, PingFang SC;
+      font-weight: 600;
+      color: #1F1E1E;
+      line-height: 22px;
+      white-space: nowrap;
+      overflow: hidden;
+      text-overflow: ellipsis;
+    }
+  }
+}
+</style>

BIN
htmldev/dashboard/src/views/sell/goods/decrease_3@2x.png


BIN
htmldev/dashboard/src/views/sell/goods/decrease_3@3x.png


BIN
htmldev/dashboard/src/views/sell/goods/discount_3@2x.png


BIN
htmldev/dashboard/src/views/sell/goods/discount_3@3x.png


BIN
htmldev/dashboard/src/views/sell/goods/guarantee_3@2x.png


BIN
htmldev/dashboard/src/views/sell/goods/guarantee_3@3x.png


+ 3 - 31
htmldev/dashboard/src/views/sell/goods/index.vue

@@ -1,5 +1,6 @@
 <template>
   <div>
+    <aflogo/>
     <div class="goods">
       <div class="menu-wrapper" ref="menuWrapper">
         <ul>
@@ -46,6 +47,7 @@
 
 <script type="text/ecmascript-6">
 import BScroll from 'better-scroll'
+import aflogo from '../aflogo/index'
 import shopcart from '../shopcart/shopcart'
 import cartcontrol from '../cartcontrol/cartcontrol'
 import food from '../food/food'
@@ -154,6 +156,7 @@ export default {
     }
   },
   components: {
+    aflogo,
     shopcart,
     cartcontrol,
     food
@@ -200,37 +203,6 @@ export default {
         }
       }
 
-      // 暂时用不到
-      .icon {
-        display: inline-block;
-        vertical-align: top;
-        width: 12px;
-        height: 12px;
-        margin-right: 2px;
-        background-size: 12px 12px;
-        background-repeat: no-repeat;
-
-        &.decrease {
-          @include bg-image('decrease_3');
-        }
-
-        &.discount {
-          @include bg-image('discount_3');
-        }
-
-        &.guarantee {
-          @include bg-image('guarantee_3');
-        }
-
-        &.invoice {
-          @include bg-image('invoice_3');
-        }
-
-        &.special {
-          @include bg-image('special_3');
-        }
-      }
-
       .text {
         display: table-cell;
         width: 100%;

BIN
htmldev/dashboard/src/views/sell/goods/invoice_3@2x.png


BIN
htmldev/dashboard/src/views/sell/goods/invoice_3@3x.png


BIN
htmldev/dashboard/src/views/sell/goods/special_3@2x.png


BIN
htmldev/dashboard/src/views/sell/goods/special_3@3x.png