fuwei 5 anni fa
parent
commit
dda3bb733a

+ 1 - 1
ghs/src/admin/home/order.vue

@@ -224,7 +224,7 @@ export default {
               return ''
               return ''
       } 
       } 
     }, // 操作按钮
     }, // 操作按钮
-    openBt(val,item){
+    openBt(s,item){
       // 花材
       // 花材
       if(s.item === 'item') {
       if(s.item === 'item') {
 
 

+ 59 - 7
ghs/src/pagesClient/official/latest-shop.vue

@@ -1,17 +1,33 @@
 <template>
 <template>
-  <div class="app-content">
-      最近问店铺
-  </div>
+  <view class="latest-content_box">
+      <view class="shop-title_box">
+          您访问过的供货商
+      </view>
+      <view class="shop-list_box">
+          <view>
+            <app-avatar-module src="https://goss.cfp.cn/creative/vcg/800/new/VCG41N1210205351.jpg" :width="120" />
+            <view class="tit">
+              宣言花行
+            </view>
+          </view>
+      </view>
+      <view class="app-footer">
+          <view class="des">
+              我是供货商,点此 <text>申请开店</text><i class="iconfont iconxiangyou"></i>
+          </view>
+      </view>
+  </view>
 </template>
 </template>
 
 
 <script>
 <script>
-import AppSwiper from "@/components/app-swiper";
-import AppImg from "@/components/app-img";
-import { applyStatus } from "@/api/official";
+// import AppSwiper from "@/components/app-swiper";
+// import AppImg from "@/components/app-img";
+// import { applyStatus } from "@/api/official";
 import { share } from "@/mixins";
 import { share } from "@/mixins";
+import AppAvatarModule from "@/components/module/app-avatar";
 export default {
 export default {
   name: "shop-list",
   name: "shop-list",
-  components: {},
+  components: {AppAvatarModule},
   mixins: [share],
   mixins: [share],
   data() {
   data() {
     return {
     return {
@@ -28,4 +44,40 @@ export default {
 </script>
 </script>
 
 
 <style lang="scss" scoped>
 <style lang="scss" scoped>
+  .shop-title_box {
+    color: #333333;
+    font-size: 36upx;
+    font-weight: 600;
+    padding: 48upx 0 80upx 40upx;
+  }
+  .shop-list_box {
+    padding:0 60upx;
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    & > view {
+      width: 120upx;
+      margin-bottom: 70upx;
+      & .tit {
+        text-align: center;
+        margin-top: 30upx;
+      }
+    }
+  }
+  .app-footer {
+     font-size: 28upx;
+    & .des {
+      &  > text {
+        color: #3385FF;
+        display: inline-block;
+        margin-left: 3upx;
+      }
+      & .iconfont {
+        color: #3385FF;
+        font-size: 22upx;
+        margin-left: 2upx;
+      }
+    }
+  }
 </style>
 </style>