|
|
@@ -1,17 +1,33 @@
|
|
|
<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>
|
|
|
|
|
|
<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 AppAvatarModule from "@/components/module/app-avatar";
|
|
|
export default {
|
|
|
name: "shop-list",
|
|
|
- components: {},
|
|
|
+ components: {AppAvatarModule},
|
|
|
mixins: [share],
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -28,4 +44,40 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<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>
|