cr лет назад: 4
Родитель
Сommit
6fdf97bbbd

+ 162 - 0
src/components/layout/manage-nav.vue

@@ -0,0 +1,162 @@
1
+<template>
2
+    <div class="c-nav" :style="'height:' + (statusBarHeight + height) + 'px;'">
3
+        <div
4
+            class="c-nav__status-bar"
5
+            :style="'height:' + statusBarHeight + 'px;'"
6
+        ></div>
7
+        <div
8
+            class="c-nav__fixed"
9
+            :style="'top:' + statusBarHeight + 'px; height:' + height + 'px;'"
10
+        >
11
+            <div class="c-nav__content">
12
+                <div class="c-nav__left" >
13
+                  <button type="button" v-if="shopId" @click="viewShop()" class="go-shop">去店铺</button>
14
+                </div>
15
+                <div v-if="title" class="c-nav__title">{{ title }}</div>
16
+                <div class="c-nav__slot">
17
+                    <slot></slot>
18
+                </div>
19
+            </div>
20
+        </div>
21
+    </div>
22
+</template>
23
+
24
+<script>
25
+export default {
26
+    name: "MyNav",
27
+
28
+    props: {
29
+        // 左侧按钮
30
+        shopId: {
31
+            type: String,
32
+            default: "",
33
+        },
34
+
35
+        // 标题
36
+        title: {
37
+            type: String,
38
+            default: "",
39
+        },
40
+
41
+        // 标题
42
+        hideIcon: {
43
+            type: Boolean,
44
+            default: false,
45
+        },
46
+    },
47
+
48
+    // 数据
49
+    data() {
50
+        return {
51
+            statusBarHeight: uni.getSystemInfoSync().statusBarHeight, //状态栏高度,
52
+            height: 44,
53
+        };
54
+    },
55
+
56
+    // 初始化
57
+    created() {
58
+        const self = this;
59
+
60
+        // #ifdef MP-WEIXIN
61
+        let button = wx.getMenuButtonBoundingClientRect();
62
+        self.height = (button.top - self.statusBarHeight) * 2 + button.height;
63
+        // #endif
64
+    },
65
+
66
+    // 函数
67
+    methods: {
68
+        // 返回上一页
69
+        back() {
70
+            const self = this;
71
+            self.router.back();
72
+        },
73
+
74
+        viewShop(){
75
+            uni.navigateToMiniProgram({
76
+                appId:'wx7d16ba51271496b8',
77
+                path:'/pages/goods/index?shopId='+this.shopId,
78
+                extraData:{
79
+                    shopId:this.shopId
80
+                }
81
+            })
82
+        }
83
+    },
84
+
85
+    // 数据计算
86
+    computed: {},
87
+
88
+    // 数据监听
89
+    watch: {},
90
+};
91
+</script>
92
+
93
+<style lang="scss" scoped>
94
+@import "../../common/scss/public";
95
+
96
+.c-nav {
97
+    background-color: #fff;
98
+
99
+    &__status-bar {
100
+        position: fixed;
101
+        top: 0;
102
+        left: 0;
103
+        z-index: 996;
104
+        width: 100%;
105
+        background-color: #fff;
106
+    }
107
+
108
+    &__fixed {
109
+        position: fixed;
110
+        top: 0;
111
+        left: 0;
112
+        z-index: 996;
113
+        width: 100%;
114
+        background-color: #fff;
115
+    }
116
+
117
+    &__content {
118
+        position: relative;
119
+        display: flex;
120
+        align-items: center;
121
+        width: 100%;
122
+        height: 100%;
123
+        padding: 0 px2(30);
124
+
125
+        /* #ifdef MP */
126
+        padding-right: px2(200);
127
+        /* #endif */
128
+    }
129
+
130
+    &__icon {
131
+        width: px2(60);
132
+        height: px2(60);
133
+        margin-right: px2(30);
134
+    }
135
+
136
+    &__title {
137
+        @include omit(px2(300));
138
+        position: absolute;
139
+        top: 50%;
140
+        left: 50%;
141
+        z-index: 1;
142
+        width: px2(300);
143
+        transform: translate(-50%, -50%);
144
+        font-size: px2(36);
145
+        font-weight: 700;
146
+        text-align: center;
147
+        color: #000;
148
+    }
149
+
150
+    &__slot {
151
+        flex: 1;
152
+    }
153
+}
154
+.go-shop{
155
+    font-size: px2(34);
156
+    height: px(80);
157
+    border-radius: px(40);
158
+    line-height: px(80);
159
+
160
+    background-color: transparent;
161
+}
162
+</style>

+ 6 - 3
src/pages.json

@@ -42,7 +42,8 @@
42 42
         {
43 43
             "path": "pages/index/index",
44 44
             "style": {
45
-                "navigationBarTitleText": "手机管理端"
45
+                "navigationBarTitleText": "手机管理端",
46
+                "navigationStyle":"custom"
46 47
             }
47 48
         },
48 49
         {
@@ -85,7 +86,8 @@
85 86
         {
86 87
             "path": "pages/manage/index",
87 88
             "style": {
88
-                "navigationBarTitleText": "菜单"
89
+                "navigationBarTitleText": "菜单",
90
+                "navigationStyle":"custom"
89 91
             }
90 92
         },
91 93
         {
@@ -320,7 +322,8 @@
320 322
         {
321 323
             "path": "pages/assistant/index",
322 324
             "style": {
323
-                "navigationBarTitleText": "群助理"
325
+                "navigationBarTitleText": "群助理",
326
+                "navigationStyle":"custom"
324 327
             }
325 328
         },
326 329
         {

+ 23 - 1
src/pages/assistant/index.vue

@@ -1,5 +1,6 @@
1 1
 <template>
2 2
     <div class="page tabbar-page">
3
+        <manage-nav :shopId="shopId" :title="'群助理'"></manage-nav>
3 4
         <div class="page-main">
4 5
             <div class="filter">
5 6
                 <ul class="date-list">
@@ -67,10 +68,11 @@
67 68
 <script>
68 69
 import MyImage from "../../components/image/index";
69 70
 import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
71
+import ManageNav from "../../components/layout/manage-nav";
70 72
 
71 73
 export default {
72 74
     name: "",
73
-    components: { MyImage, wygBottomTab },
75
+    components: { MyImage, wygBottomTab,ManageNav },
74 76
     // 数据
75 77
     data() {
76 78
         return {
@@ -79,6 +81,7 @@ export default {
79 81
             dataList: [],
80 82
             dataEnd: false,
81 83
             platformList: [],
84
+            shopId:'',
82 85
         };
83 86
     },
84 87
     filters: {
@@ -94,6 +97,7 @@ export default {
94 97
     async onShow() {
95 98
         this.$refs.tabbar.setIndex(3);
96 99
         this.getList();
100
+        this.checkStatus();
97 101
     },
98 102
 
99 103
     // onPullDownRefresh() {
@@ -102,6 +106,24 @@ export default {
102 106
 
103 107
     // 函数
104 108
     methods: {
109
+        checkStatus() {
110
+            /* 
111
+                闭店中 = 0,  // 已开通,店铺未营业
112
+                营业中 = 1,  // 店铺营业中
113
+                待审核 = 2,  // 通过审核后,状态改为闭店中
114
+                待开通 = 3,  // 通过审核,等待开通
115
+                未通过审核 = 4  // 未通过审核
116
+            */
117
+            this.api.get("/Shop/checkStatus").then((res) => {
118
+                if (res.data === 1 || res.data === 0) {
119
+                    this.api
120
+                        .get("/Shop/GetInfo", {}, { pass: true })
121
+                        .then((infoRes) => {
122
+                            this.shopId = infoRes.data.id;
123
+                        });
124
+                }
125
+            });
126
+        },
105 127
         getPlatformList() {
106 128
             uni.showLoading({
107 129
                 title: "加载中...",

+ 22 - 12
src/pages/index/index.vue

@@ -1,5 +1,6 @@
1 1
 <template>
2 2
     <div class="page tabbar-page">
3
+        <manage-nav :shopId="shopId" :title="'手机管理端'"></manage-nav>
3 4
         <block v-if="!showGuide">
4 5
             <div class="page__top">
5 6
                 <div class="shop-main" v-if="isAdmin">
@@ -568,7 +569,9 @@
568 569
                 <div class="success-main">
569 570
                     <h2 class="success-tit1">恭喜您!</h2>
570 571
                     <h2 class="success-tit1">店铺申请通过审核</h2>
571
-                    <h3 class="success-shop-name" v-if="shopName">店铺名称:{{shopName}}</h3>
572
+                    <h3 class="success-shop-name" v-if="shopName">
573
+                        店铺名称:{{ shopName }}
574
+                    </h3>
572 575
 
573 576
                     <div class="success-box">
574 577
                         <p class="success-text">
@@ -617,10 +620,11 @@ import fn from "../../common/js/function";
617 620
 import uniPopup from "../../components/uni-popup/uni-popup";
618 621
 import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
619 622
 import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
623
+import ManageNav from "../../components/layout/manage-nav";
620 624
 
621 625
 export default {
622 626
     name: "",
623
-    components: { MyImage, uniPopup, uniPopupDialog, wygBottomTab },
627
+    components: { MyImage, uniPopup, uniPopupDialog, wygBottomTab,ManageNav },
624 628
     // 数据
625 629
     data() {
626 630
         return {
@@ -681,7 +685,8 @@ export default {
681 685
             showGuide: false,
682 686
             agreement: false,
683 687
             storeStatus: -1,
684
-            shopName:''
688
+            shopName: "",
689
+            shopId:null,
685 690
         };
686 691
     },
687 692
     filters: {
@@ -794,14 +799,12 @@ export default {
794 799
 
795 800
     // 函数
796 801
     methods: {
797
-
798
-        getShopInfo(){
799
-            this.api.get('/Shop/GetInfo',{},{pass:true})
800
-                .then(res=>{
801
-                    if(res.success && res.data){
802
-                        this.shopName = res.data.name;
803
-                    }
804
-                })
802
+        getShopInfo() {
803
+            this.api.get("/Shop/GetInfo", {}, { pass: true }).then((res) => {
804
+                if (res.success && res.data) {
805
+                    this.shopName = res.data.name;
806
+                }
807
+            });
805 808
         },
806 809
         checkStatus() {
807 810
             /* 
@@ -821,7 +824,7 @@ export default {
821 824
                 } else {
822 825
                     this.showGuide = true;
823 826
                 }
824
-                if(this.storeStatus === 3){
827
+                if (this.storeStatus === 3) {
825 828
                     this.getShopInfo();
826 829
                 }
827 830
                 if (this.storeStatus === 5) {
@@ -830,6 +833,13 @@ export default {
830 833
                 if (this.storeStatus === 6) {
831 834
                     this.router.replace("/pages/guide/points");
832 835
                 }
836
+                if (res.data === 1 || res.data === 0) {
837
+                    this.api
838
+                        .get("/Shop/GetInfo", {}, { pass: true })
839
+                        .then((infoRes) => {
840
+                            this.shopId = infoRes.data.id;
841
+                        });
842
+                }
833 843
             });
834 844
         },
835 845
         // 切换导航

+ 12 - 3
src/pages/manage/index.vue

@@ -1,5 +1,6 @@
1 1
 <template>
2 2
     <div class="page tabbar-page">
3
+        <manage-nav :shopId="shopId" :title="'菜单'"></manage-nav>
3 4
         <div class="tips" v-if="shopErr">
4 5
             当前店铺没有门店,请后台添加门店后重试
5 6
         </div>
@@ -79,11 +80,12 @@
79 80
 
80 81
 <script>
81 82
 import MyImage from "../../components/image/index";
83
+import ManageNav from "../../components/layout/manage-nav";
82 84
 import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
83 85
 
84 86
 export default {
85 87
     name: "",
86
-    components: { MyImage, wygBottomTab },
88
+    components: { MyImage, wygBottomTab, ManageNav },
87 89
 
88 90
     // 数据
89 91
     data() {
@@ -96,6 +98,7 @@ export default {
96 98
             showShop: true,
97 99
             showMenu: true,
98 100
             storeStatus: -1,
101
+            shopId: null,
99 102
         };
100 103
     },
101 104
 
@@ -132,7 +135,7 @@ export default {
132 135
         // }
133 136
         this.getUserMenu();
134 137
         this.$refs.tabbar.setIndex(2);
135
-        // this.checkStatus();
138
+        this.checkStatus();
136 139
     },
137 140
     // 函数
138 141
     methods: {
@@ -145,7 +148,13 @@ export default {
145 148
                 未通过审核 = 4  // 未通过审核
146 149
             */
147 150
             this.api.get("/Shop/checkStatus").then((res) => {
148
-                this.storeStatus = res.data;
151
+                if (res.data === 1 || res.data === 0) {
152
+                    this.api
153
+                        .get("/Shop/GetInfo", {}, { pass: true })
154
+                        .then((infoRes) => {
155
+                            this.shopId = infoRes.data.id;
156
+                        });
157
+                }
149 158
             });
150 159
         },
151 160
         getUserMenu() {