|
@@ -1,33 +1,49 @@
|
1
|
1
|
<template>
|
2
|
|
- <div class="page">
|
3
|
|
- <ul class="list">
|
4
|
|
- <li class="item" @click="jump('/pages/manage/shop/set-shop')">
|
5
|
|
- <div class="name">分类管理</div>
|
6
|
|
- <my-image
|
7
|
|
- class="arrow"
|
8
|
|
- src="/static/common/arrows_left.png"
|
9
|
|
- ></my-image>
|
10
|
|
- </li>
|
11
|
|
- <li class="item" @click="jump('/pages/manage/shop/delivery')">
|
12
|
|
- <div class="name">品牌管理</div>
|
13
|
|
- <my-image
|
14
|
|
- class="arrow"
|
15
|
|
- src="/static/common/arrows_left.png"
|
16
|
|
- ></my-image>
|
17
|
|
- </li>
|
18
|
|
- <li class="item" @click="jump('/pages/manage/shop/points')">
|
19
|
|
- <div class="name">分类管理</div>
|
20
|
|
- <my-image
|
21
|
|
- class="arrow"
|
22
|
|
- src="/static/common/arrows_left.png"
|
23
|
|
- ></my-image>
|
24
|
|
- </li>
|
|
2
|
+ <div class="page" :class="{ 'page--iphoneX': iphoneX }">
|
|
3
|
+ <ul class="classify-list">
|
|
4
|
+ <black v-for="item of classifyList" :key="item.id">
|
|
5
|
+ <li class="item">
|
|
6
|
+ <div class="con" @click="toggleChild(item)">
|
|
7
|
+ <div class="name">
|
|
8
|
+ {{ item.name }}
|
|
9
|
+ </div>
|
|
10
|
+ <div class="des">
|
|
11
|
+ {{ item.children ? item.children.length : 0 }}个品牌
|
|
12
|
+ </div>
|
|
13
|
+ <!-- <my-image
|
|
14
|
+ class="arrow"
|
|
15
|
+ :class="{ up: item.showChildren }"
|
|
16
|
+ src="/static/common/arrows_left.png"
|
|
17
|
+ ></my-image> -->
|
|
18
|
+ <div class="link" @click="jump({path:'/pages/youxuan/brand',query:{id:child.id}})">查看品牌</div>
|
|
19
|
+ </div>
|
|
20
|
+ <div class="tool">
|
|
21
|
+ <span
|
|
22
|
+ class="status"
|
|
23
|
+ :class="{ up: item.status === 0 }"
|
|
24
|
+ @click="setOnline(item)"
|
|
25
|
+ >{{ item.status === 0 ? "下架中" : "上架中" }}</span
|
|
26
|
+ >
|
|
27
|
+ <span
|
|
28
|
+ class="status status2"
|
|
29
|
+ :class="{ up: item.status === 0 }"
|
|
30
|
+ @click="setOnline(item)"
|
|
31
|
+ >{{ item.status === 0 ? "置顶" : "取消置顶" }}</span
|
|
32
|
+ >
|
|
33
|
+ <!-- <div class="setting" @click="setting(item, 'root')">
|
|
34
|
+ 设置
|
|
35
|
+ </div> -->
|
|
36
|
+ </div>
|
|
37
|
+ </li>
|
|
38
|
+ </black>
|
25
|
39
|
</ul>
|
|
40
|
+ <!-- <div class="add-classify" @click="add">新建分类</div> -->
|
26
|
41
|
</div>
|
27
|
42
|
</template>
|
28
|
43
|
|
29
|
44
|
<script>
|
30
|
45
|
import MyImage from "../../components/image/index";
|
|
46
|
+
|
31
|
47
|
export default {
|
32
|
48
|
name: "",
|
33
|
49
|
components: { MyImage },
|
|
@@ -35,14 +51,202 @@ export default {
|
35
|
51
|
// 数据
|
36
|
52
|
data() {
|
37
|
53
|
return {
|
38
|
|
- curShop: {},
|
|
54
|
+ storeId: "",
|
|
55
|
+ classifyList: [
|
|
56
|
+ {
|
|
57
|
+ name: "分类一",
|
|
58
|
+ id: 1,
|
|
59
|
+ children: [
|
|
60
|
+ {
|
|
61
|
+ name: "品牌一",
|
|
62
|
+ id: 11,
|
|
63
|
+ },
|
|
64
|
+ ],
|
|
65
|
+ },
|
|
66
|
+ ],
|
39
|
67
|
};
|
40
|
68
|
},
|
41
|
69
|
|
42
|
|
- onLoad() {},
|
43
|
|
- async onShow() {},
|
|
70
|
+ onLoad() {
|
|
71
|
+ if (this.user.storeId) {
|
|
72
|
+ this.storeId = this.user.storeId;
|
|
73
|
+ }
|
|
74
|
+ },
|
|
75
|
+ async onShow() {
|
|
76
|
+ // this.getClassify();
|
|
77
|
+ },
|
44
|
78
|
// 函数
|
45
|
|
- methods: {},
|
|
79
|
+ methods: {
|
|
80
|
+ // 获取分类
|
|
81
|
+ getClassify() {
|
|
82
|
+ let storeId = this.storeId;
|
|
83
|
+ this.api
|
|
84
|
+ .get("/Product/GetProductType", {
|
|
85
|
+ storeId,
|
|
86
|
+ })
|
|
87
|
+ .then((res) => {
|
|
88
|
+ this.classifyList = res.data;
|
|
89
|
+ });
|
|
90
|
+ },
|
|
91
|
+ toggleChild(val) {
|
|
92
|
+ val.showChildren = !val.showChildren;
|
|
93
|
+ this.$forceUpdate();
|
|
94
|
+ },
|
|
95
|
+ // 设置菜单
|
|
96
|
+ setting(val, type) {
|
|
97
|
+ let arr = ["置顶", "取消置顶"];
|
|
98
|
+ if (type === "root") {
|
|
99
|
+ arr.push("新增二级分类");
|
|
100
|
+ }
|
|
101
|
+ this.fn.showActionSheet(arr).then((res) => {
|
|
102
|
+ switch (res) {
|
|
103
|
+ case 0:
|
|
104
|
+ this.edit(val);
|
|
105
|
+ break;
|
|
106
|
+ case 1:
|
|
107
|
+ this.remove(val, false);
|
|
108
|
+ break;
|
|
109
|
+ case 2:
|
|
110
|
+ this.move(val, false);
|
|
111
|
+ break;
|
|
112
|
+ case 3:
|
|
113
|
+ this.move(val, true);
|
|
114
|
+ break;
|
|
115
|
+ case 4:
|
|
116
|
+ this.addChild(val);
|
|
117
|
+ break;
|
|
118
|
+
|
|
119
|
+ default:
|
|
120
|
+ break;
|
|
121
|
+ }
|
|
122
|
+ });
|
|
123
|
+ },
|
|
124
|
+
|
|
125
|
+ // 编辑
|
|
126
|
+ edit(val) {
|
|
127
|
+ this.$store.commit("common/update", {
|
|
128
|
+ editClassify: val,
|
|
129
|
+ });
|
|
130
|
+ this.router.push({
|
|
131
|
+ path: "/pages/manage/classify-form",
|
|
132
|
+ query: {
|
|
133
|
+ id: val.id,
|
|
134
|
+ },
|
|
135
|
+ });
|
|
136
|
+ },
|
|
137
|
+
|
|
138
|
+ // 删除 confirm是否确认删除
|
|
139
|
+ remove(val, confirm) {
|
|
140
|
+ this.api
|
|
141
|
+ .post("/Product/RemoveType", {
|
|
142
|
+ query: true,
|
|
143
|
+ id: val.id,
|
|
144
|
+ confirm: confirm,
|
|
145
|
+ })
|
|
146
|
+ .then((res) => {
|
|
147
|
+ if (res.success) {
|
|
148
|
+ this.fn.showToast("删除成功");
|
|
149
|
+ let arr = [];
|
|
150
|
+ for (let item of this.classifyList) {
|
|
151
|
+ if (item.id !== val.id) {
|
|
152
|
+ arr.push(item);
|
|
153
|
+ }
|
|
154
|
+ }
|
|
155
|
+ this.classifyList = arr;
|
|
156
|
+ } else {
|
|
157
|
+ this.fn
|
|
158
|
+ .showModal({
|
|
159
|
+ content: "是否确认删除?",
|
|
160
|
+ })
|
|
161
|
+ .then((res) => {
|
|
162
|
+ if (res.confirm) {
|
|
163
|
+ this.remove(val, true);
|
|
164
|
+ }
|
|
165
|
+ });
|
|
166
|
+ }
|
|
167
|
+ });
|
|
168
|
+ },
|
|
169
|
+
|
|
170
|
+ // 移动 up 上移或下移,true-上移,false-下移
|
|
171
|
+ move(val, up) {
|
|
172
|
+ this.api
|
|
173
|
+ .post("/Product/MoveType", {
|
|
174
|
+ query: true,
|
|
175
|
+ id: val.id,
|
|
176
|
+ up: up,
|
|
177
|
+ })
|
|
178
|
+ .then((res) => {
|
|
179
|
+ if (res.success) {
|
|
180
|
+ this.fn.showToast("移动成功");
|
|
181
|
+ this.getClassify();
|
|
182
|
+ } else {
|
|
183
|
+ this.fn.showModal({
|
|
184
|
+ title: "移动失败",
|
|
185
|
+ content: res.message,
|
|
186
|
+ showCancel: false,
|
|
187
|
+ });
|
|
188
|
+ }
|
|
189
|
+ });
|
|
190
|
+ },
|
|
191
|
+
|
|
192
|
+ // 新增
|
|
193
|
+ add() {
|
|
194
|
+ this.router.push({
|
|
195
|
+ path: "/pages/manage/classify-form",
|
|
196
|
+ });
|
|
197
|
+ },
|
|
198
|
+
|
|
199
|
+ // 增加子集
|
|
200
|
+ addChild(val) {
|
|
201
|
+ this.router.push({
|
|
202
|
+ path: "/pages/manage/classify-form",
|
|
203
|
+ query: {
|
|
204
|
+ parentId: val.id,
|
|
205
|
+ },
|
|
206
|
+ });
|
|
207
|
+ },
|
|
208
|
+ // 上下架
|
|
209
|
+ setOnline(val) {
|
|
210
|
+ if (val.status === 0) {
|
|
211
|
+ //下架中,点击上架
|
|
212
|
+ this.api
|
|
213
|
+ .get("/Product/TypeGoOnline", {
|
|
214
|
+ typeId: val.id,
|
|
215
|
+ })
|
|
216
|
+ .then((res) => {
|
|
217
|
+ if (res.success) {
|
|
218
|
+ // this.fn.showToast("上架成功");
|
|
219
|
+ val.status = 1;
|
|
220
|
+ this.$forceUpdate();
|
|
221
|
+ } else {
|
|
222
|
+ this.fn.showModal({
|
|
223
|
+ title: "上架失败",
|
|
224
|
+ content: res.message,
|
|
225
|
+ showCancel: false,
|
|
226
|
+ });
|
|
227
|
+ }
|
|
228
|
+ });
|
|
229
|
+ } else {
|
|
230
|
+ this.api
|
|
231
|
+ .get("/Product/TypeGoOffline", {
|
|
232
|
+ typeId: val.id,
|
|
233
|
+ })
|
|
234
|
+ .then((res) => {
|
|
235
|
+ if (res.success) {
|
|
236
|
+ // this.fn.showToast("下架成功");
|
|
237
|
+ val.status = 0;
|
|
238
|
+ this.$forceUpdate();
|
|
239
|
+ } else {
|
|
240
|
+ this.fn.showModal({
|
|
241
|
+ title: "下架失败",
|
|
242
|
+ content: res.message,
|
|
243
|
+ showCancel: false,
|
|
244
|
+ });
|
|
245
|
+ }
|
|
246
|
+ });
|
|
247
|
+ }
|
|
248
|
+ },
|
|
249
|
+ },
|
46
|
250
|
|
47
|
251
|
// 数据计算
|
48
|
252
|
computed: {
|
|
@@ -58,29 +262,121 @@ export default {
|
58
|
262
|
|
59
|
263
|
<style lang="scss" scoped>
|
60
|
264
|
.page {
|
|
265
|
+ padding-bottom: px(180);
|
61
|
266
|
min-height: 100vh;
|
62
|
267
|
background-color: #fff;
|
63
|
268
|
}
|
64
|
|
-.list {
|
65
|
|
- border-top: 1px solid #f1f1f1;
|
|
269
|
+.add-classify {
|
|
270
|
+ position: fixed;
|
|
271
|
+ bottom: 0;
|
|
272
|
+ left: 0;
|
|
273
|
+ right: 0;
|
|
274
|
+ height: px(150);
|
|
275
|
+ z-index: 100;
|
|
276
|
+ display: flex;
|
|
277
|
+ justify-content: center;
|
|
278
|
+ align-items: center;
|
|
279
|
+ font-size: px(44);
|
|
280
|
+ color: #fff;
|
|
281
|
+ background-color: rgb(0, 188, 38);
|
|
282
|
+}
|
|
283
|
+.page--iphoneX {
|
|
284
|
+ .add-classify {
|
|
285
|
+ padding-bottom: px(30);
|
|
286
|
+ }
|
|
287
|
+}
|
|
288
|
+.classify-list {
|
66
|
289
|
.item {
|
67
|
|
- height: px(120);
|
68
|
|
- padding: 0 px(35);
|
69
|
|
- font-size: px(44);
|
70
|
290
|
display: flex;
|
|
291
|
+ padding: px(30) px(35);
|
71
|
292
|
justify-content: space-between;
|
72
|
293
|
align-items: center;
|
73
|
|
- border-bottom: 1px solid #f1f1f1;
|
74
|
|
- }
|
75
|
|
- .arrow {
|
76
|
|
- width: px(40);
|
77
|
|
- height: px(40);
|
78
|
|
- flex-shrink: 0;
|
79
|
|
- transform: rotate(180deg);
|
80
|
|
- /deep/ img {
|
81
|
|
- width: px(40);
|
82
|
|
- height: px(40);
|
|
294
|
+ border-top: 1px solid #f1f1f1;
|
|
295
|
+ .tool {
|
|
296
|
+ flex-shrink: 0;
|
|
297
|
+ display: flex;
|
|
298
|
+ align-items: center;
|
|
299
|
+ justify-content: center;
|
|
300
|
+ }
|
|
301
|
+ .setting {
|
|
302
|
+ width: px(140);
|
|
303
|
+ height: px(80);
|
|
304
|
+ border: 1px solid #b7b7b7;
|
|
305
|
+ border-radius: px(8);
|
|
306
|
+ color: #666;
|
|
307
|
+ font-size: px(40);
|
|
308
|
+ display: flex;
|
|
309
|
+ align-items: center;
|
|
310
|
+ justify-content: center;
|
83
|
311
|
}
|
|
312
|
+ .con {
|
|
313
|
+ width: 50%;
|
|
314
|
+ padding-right: px(44);
|
|
315
|
+ position: relative;
|
|
316
|
+ }
|
|
317
|
+ .link {
|
|
318
|
+ color: #4395ff;
|
|
319
|
+ font-size: px(42);
|
|
320
|
+ position: absolute;
|
|
321
|
+ right: 0;
|
|
322
|
+ top: 50%;
|
|
323
|
+ z-index: 10;
|
|
324
|
+ transform: translate(0, -50%);
|
|
325
|
+ }
|
|
326
|
+ .name {
|
|
327
|
+ font-size: px(44);
|
|
328
|
+ color: #333;
|
|
329
|
+ }
|
|
330
|
+
|
|
331
|
+ .des {
|
|
332
|
+ font-size: px(36);
|
|
333
|
+ margin-top: px(20);
|
|
334
|
+ color: #666;
|
|
335
|
+ @include omit(100%);
|
|
336
|
+ }
|
|
337
|
+ .arrow {
|
|
338
|
+ position: absolute;
|
|
339
|
+ right: 0;
|
|
340
|
+ top: 50%;
|
|
341
|
+ z-index: 10;
|
|
342
|
+ transform: translate(0, -50%) rotate(180deg);
|
|
343
|
+ width: px(44);
|
|
344
|
+ height: px(44);
|
|
345
|
+ transition: all 0.3s;
|
|
346
|
+ /deep/ img {
|
|
347
|
+ height: px(44);
|
|
348
|
+ width: px(44);
|
|
349
|
+ }
|
|
350
|
+ &.up {
|
|
351
|
+ transform: translate(0, -50%) rotate(90deg);
|
|
352
|
+ }
|
|
353
|
+ }
|
|
354
|
+ .status {
|
|
355
|
+ width: px(120);
|
|
356
|
+ height: px(44);
|
|
357
|
+ background-color: #e7faf0;
|
|
358
|
+ border-radius: px(8);
|
|
359
|
+ border: 1px solid #d0f5e0;
|
|
360
|
+ font-size: px(32);
|
|
361
|
+ color: #13ce66;
|
|
362
|
+ padding: px(6) px(3);
|
|
363
|
+ margin-right: px(30);
|
|
364
|
+ display: flex;
|
|
365
|
+ align-items: center;
|
|
366
|
+ justify-content: center;
|
|
367
|
+ &.status2{
|
|
368
|
+ width: px(150);
|
|
369
|
+ }
|
|
370
|
+ &.up {
|
|
371
|
+ background-color: #ffeded;
|
|
372
|
+ border-color: #ffdbdb;
|
|
373
|
+ color: #ff4949;
|
|
374
|
+ }
|
|
375
|
+ }
|
|
376
|
+ }
|
|
377
|
+ .item-child {
|
|
378
|
+ padding-left: px(60);
|
|
379
|
+ background-color: #efefef;
|
84
|
380
|
}
|
85
|
381
|
}
|
86
|
382
|
</style>
|