Browse Source

店铺tab设置

cr 3 years ago
parent
commit
c95fd35b30
4 changed files with 236 additions and 1 deletions
  1. 6 0
      src/pages.json
  2. 1 1
      src/pages/manage/index.vue
  3. 7 0
      src/pages/manage/shop/index.vue
  4. 222 0
      src/pages/manage/shop/set-tab.vue

+ 6 - 0
src/pages.json

@@ -589,6 +589,12 @@
589 589
             "style": {
590 590
                 "navigationBarTitleText": "我的邀请码"
591 591
             }
592
+        },
593
+        {
594
+            "path": "pages/manage/shop/set-tab",
595
+            "style": {
596
+                "navigationBarTitleText": "修改店铺tab"
597
+            }
592 598
         }
593 599
     ]
594 600
 }

+ 1 - 1
src/pages/manage/index.vue

@@ -92,7 +92,7 @@
92 92
 
93 93
         <!-- <button class="btn" @click="layout">退出登录</button> -->
94 94
 
95
-        <div class="ver">0.5.591</div>
95
+        <div class="ver">0.5.6</div>
96 96
         <wyg-bottom-tab
97 97
             ref="tabbar"
98 98
             :tabIndex="2"

+ 7 - 0
src/pages/manage/shop/index.vue

@@ -22,6 +22,13 @@
22 22
                     src="/static/common/arrows_left.png"
23 23
                 ></my-image>
24 24
             </li>
25
+            <li class="item" @click="jump('/pages/manage/shop/set-tab')">
26
+                <div class="name">店铺tab顺序设置</div>
27
+                <my-image
28
+                    class="arrow"
29
+                    src="/static/common/arrows_left.png"
30
+                ></my-image>
31
+            </li>
25 32
             <li class="item">
26 33
                 <div class="name">开启厂商直邮</div>
27 34
                 <switch

+ 222 - 0
src/pages/manage/shop/set-tab.vue

@@ -0,0 +1,222 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <ul class="classify-list">
4
+            <li class="item" v-for="(item, index) of dataList" :key="index">
5
+                <div class="con">
6
+                    <div class="name">{{ item.title }}</div>
7
+                </div>
8
+                <div class="tool">
9
+                    <div v-if="index!=0" class="setting" @click="move(item,true,index)">上移</div>
10
+                    <div  v-if="index!=dataList.length-1" class="setting" @click="move(item,false,index)">下移</div>
11
+                </div>
12
+            </li>
13
+        </ul>
14
+    </div>
15
+</template>
16
+
17
+<script>
18
+import MyImage from "../../../components/image/index";
19
+
20
+export default {
21
+    name: "",
22
+    components: { MyImage },
23
+
24
+    // 数据
25
+    data() {
26
+        return {
27
+            storeConfig:{},
28
+            dataList: [
29
+                { name: "shop", index: 0, title: "店铺" },
30
+                { name: "yx", index: 1, title: "厂商直邮" },
31
+            ],
32
+        };
33
+    },
34
+
35
+    onLoad() {},
36
+    async onShow() {
37
+        this.getStoreConfig();
38
+    },
39
+    // 函数
40
+    methods: {
41
+        getStoreConfig() {
42
+            this.api
43
+                .get(
44
+                    "/Shop/gettab",
45
+                    { pass: true }
46
+                )
47
+                .then((infoRes) => {
48
+                    this.dataList = JSON.parse(infoRes.data);
49
+                });
50
+        },
51
+
52
+        setData(data) {
53
+            for (let item of data) {
54
+                if (item.name === "shop") {
55
+                    item.title = "店铺商品";
56
+                }
57
+                if (item.name === "yx") {
58
+                    item.title = "厂商直邮";
59
+                }
60
+            }
61
+            data.sort((x, y) => x.index - y.index);
62
+            return data;
63
+        },
64
+
65
+        // 移动  up 上移或下移,true-上移,false-下移
66
+        move(val, up,index) {
67
+            if(up){
68
+                let upItem = this.dataList[index-1];
69
+                let item = this.dataList[index];
70
+                let itemIndex = item.index;
71
+                item.index = upItem.index;
72
+                upItem.index = itemIndex;
73
+            }else{
74
+                let downItem = this.dataList[index+1];
75
+                let item = this.dataList[index];
76
+                let itemIndex = item.index;
77
+                item.index = downItem.index;
78
+                downItem.index = itemIndex;
79
+            }
80
+            this.dataList.sort((x, y) => x.index - y.index);
81
+            this.dataList = [...this.dataList];
82
+            this.api
83
+                .get("/Shop/Settab", {
84
+                    tab: JSON.stringify(this.dataList),
85
+                },{pass:true})
86
+                .then((res) => {
87
+                    if (res.success) {
88
+                        this.fn.showToast("移动成功");
89
+                    } else {
90
+                        this.fn.showModal({
91
+                            title: "移动失败",
92
+                            content: res.message,
93
+                            showCancel: false,
94
+                        });
95
+                    }
96
+                });
97
+        },
98
+    },
99
+
100
+    // 数据计算
101
+    computed: {
102
+        user() {
103
+            return this.$store.state.user.user;
104
+        },
105
+    },
106
+
107
+    // 数据监听
108
+    watch: {},
109
+};
110
+</script>
111
+
112
+<style lang="scss" scoped>
113
+.page {
114
+    padding-bottom: px(180);
115
+    min-height: 100vh;
116
+    background-color: #fff;
117
+}
118
+.add-classify {
119
+    position: fixed;
120
+    bottom: 0;
121
+    left: 0;
122
+    right: 0;
123
+    height: px(150);
124
+    z-index: 100;
125
+    display: flex;
126
+    justify-content: center;
127
+    align-items: center;
128
+    font-size: px(44);
129
+    color: #fff;
130
+    background-color: rgb(0, 188, 38);
131
+}
132
+.page--iphoneX {
133
+    .add-classify {
134
+        padding-bottom: px(30);
135
+    }
136
+}
137
+.classify-list {
138
+    .item {
139
+        display: flex;
140
+        padding: px(30) px(35);
141
+        justify-content: space-between;
142
+        align-items: center;
143
+        border-top: 1px solid #f1f1f1;
144
+        .tool {
145
+            flex-shrink: 0;
146
+            display: flex;
147
+            align-items: center;
148
+            justify-content: center;
149
+        }
150
+        .setting {
151
+            width: px(140);
152
+            height: px(80);
153
+            border: 1px solid #b7b7b7;
154
+            border-radius: px(8);
155
+            color: #666;
156
+            font-size: px(40);
157
+            display: flex;
158
+            align-items: center;
159
+            justify-content: center;
160
+            & ~ .setting {
161
+                margin-left: px(30);
162
+            }
163
+        }
164
+        .con {
165
+            width: 50%;
166
+            padding-right: px(44);
167
+            position: relative;
168
+        }
169
+        .name {
170
+            font-size: px(44);
171
+            color: #333;
172
+        }
173
+
174
+        .des {
175
+            font-size: px(36);
176
+            margin-top: px(20);
177
+            color: #666;
178
+            @include omit(100%);
179
+        }
180
+        .arrow {
181
+            position: absolute;
182
+            right: 0;
183
+            top: 50%;
184
+            z-index: 10;
185
+            transform: translate(0, -50%) rotate(180deg);
186
+            width: px(44);
187
+            height: px(44);
188
+            transition: all 0.3s;
189
+            /deep/ img {
190
+                height: px(44);
191
+                width: px(44);
192
+            }
193
+            &.up {
194
+                transform: translate(0, -50%) rotate(90deg);
195
+            }
196
+        }
197
+        .status {
198
+            width: px(120);
199
+            height: px(44);
200
+            background-color: #e7faf0;
201
+            border-radius: px(8);
202
+            border: 1px solid #d0f5e0;
203
+            font-size: px(32);
204
+            color: #13ce66;
205
+            padding: px(6) px(3);
206
+            margin-right: px(30);
207
+            display: flex;
208
+            align-items: center;
209
+            justify-content: center;
210
+            &.up {
211
+                background-color: #ffeded;
212
+                border-color: #ffdbdb;
213
+                color: #ff4949;
214
+            }
215
+        }
216
+    }
217
+    .item-child {
218
+        padding-left: px(60);
219
+        background-color: #efefef;
220
+    }
221
+}
222
+</style>