|
@@ -1,34 +1,41 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="page" :class="{ 'page--iphoneX': iphoneX }">
|
3
|
3
|
<ul class="classify-list">
|
4
|
|
- <black v-for="item of classifyList" :key="item.id">
|
|
4
|
+ <black v-for="item of classifyList" :key="item.categoryId">
|
5
|
5
|
<li class="item">
|
6
|
|
- <div class="con" @click="toggleChild(item)">
|
|
6
|
+ <div class="con">
|
7
|
7
|
<div class="name">
|
8
|
8
|
{{ item.name }}
|
9
|
9
|
</div>
|
10
|
10
|
<div class="des">
|
11
|
|
- {{ item.children ? item.children.length : 0 }}个品牌
|
|
11
|
+ <!-- {{ item.children ? item.children.length : 0 }}个品牌 -->
|
12
|
12
|
</div>
|
13
|
13
|
<!-- <my-image
|
14
|
14
|
class="arrow"
|
15
|
15
|
:class="{ up: item.showChildren }"
|
16
|
16
|
src="/static/common/arrows_left.png"
|
17
|
17
|
></my-image> -->
|
18
|
|
- <div class="link" @click="jump({path:'/pages/youxuan/brand',query:{id:child.id}})">查看品牌</div>
|
|
18
|
+ <div
|
|
19
|
+ class="link"
|
|
20
|
+ @click="
|
|
21
|
+ jump({
|
|
22
|
+ path: '/pages/youxuan/brand',
|
|
23
|
+ query: { id: child.id },
|
|
24
|
+ })
|
|
25
|
+ "
|
|
26
|
+ >
|
|
27
|
+ 查看品牌
|
|
28
|
+ </div>
|
19
|
29
|
</div>
|
20
|
30
|
<div class="tool">
|
21
|
31
|
<span
|
22
|
32
|
class="status"
|
23
|
|
- :class="{ up: item.status === 0 }"
|
24
|
|
- @click="setOnline(item)"
|
25
|
|
- >{{ item.status === 0 ? "下架中" : "上架中" }}</span
|
|
33
|
+ :class="{ up: item.display === 0 }"
|
|
34
|
+ @click="setDisPlay(item)"
|
|
35
|
+ >{{ item.display === 0 ? "不显示" : "显示" }}</span
|
26
|
36
|
>
|
27
|
|
- <span
|
28
|
|
- class="status status2"
|
29
|
|
- :class="{ up: item.status === 0 }"
|
30
|
|
- @click="setOnline(item)"
|
31
|
|
- >{{ item.status === 0 ? "置顶" : "取消置顶" }}</span
|
|
37
|
+ <span class="status status2" @click="setLevel(item)"
|
|
38
|
+ >推荐:{{ item.rcommandLevel }}</span
|
32
|
39
|
>
|
33
|
40
|
<!-- <div class="setting" @click="setting(item, 'root')">
|
34
|
41
|
设置
|
|
@@ -38,189 +45,76 @@
|
38
|
45
|
</black>
|
39
|
46
|
</ul>
|
40
|
47
|
<!-- <div class="add-classify" @click="add">新建分类</div> -->
|
|
48
|
+
|
|
49
|
+ <uni-popup ref="popup" type="dialog">
|
|
50
|
+ <uni-popup-dialog
|
|
51
|
+ mode="input"
|
|
52
|
+ :title="'推荐等级'"
|
|
53
|
+ :content="false"
|
|
54
|
+ :inputType="'number'"
|
|
55
|
+ :value="level"
|
|
56
|
+ placeholder="请输入推荐等级"
|
|
57
|
+ @confirm="popupConfirm"
|
|
58
|
+ ></uni-popup-dialog>
|
|
59
|
+ </uni-popup>
|
41
|
60
|
</div>
|
42
|
61
|
</template>
|
43
|
62
|
|
44
|
63
|
<script>
|
45
|
64
|
import MyImage from "../../components/image/index";
|
|
65
|
+import uniPopup from "../../components/uni-popup/uni-popup";
|
|
66
|
+import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
|
46
|
67
|
|
47
|
68
|
export default {
|
48
|
69
|
name: "",
|
49
|
|
- components: { MyImage },
|
|
70
|
+ components: { MyImage, uniPopup, uniPopupDialog },
|
50
|
71
|
|
51
|
72
|
// 数据
|
52
|
73
|
data() {
|
53
|
74
|
return {
|
54
|
|
- storeId: "",
|
55
|
|
- classifyList: [
|
56
|
|
- {
|
57
|
|
- name: "分类一",
|
58
|
|
- id: 1,
|
59
|
|
- children: [
|
60
|
|
- {
|
61
|
|
- name: "品牌一",
|
62
|
|
- id: 11,
|
63
|
|
- },
|
64
|
|
- ],
|
65
|
|
- },
|
66
|
|
- ],
|
|
75
|
+ classifyList: [],
|
|
76
|
+ curData: {},
|
|
77
|
+ level: 0,
|
67
|
78
|
};
|
68
|
79
|
},
|
69
|
80
|
|
70
|
81
|
onLoad() {
|
71
|
82
|
if (this.user.storeId) {
|
72
|
|
- this.storeId = this.user.storeId;
|
73
|
83
|
}
|
74
|
84
|
},
|
75
|
85
|
async onShow() {
|
76
|
|
- // this.getClassify();
|
|
86
|
+ this.getClassify();
|
77
|
87
|
},
|
78
|
88
|
// 函数
|
79
|
89
|
methods: {
|
80
|
90
|
// 获取分类
|
81
|
91
|
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
|
|
- },
|
|
92
|
+ uni.showLoading({
|
|
93
|
+ title: "加载中...",
|
135
|
94
|
});
|
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",
|
|
95
|
+ this.api.get("/Yx/GetCategoryList", {}).then((res) => {
|
|
96
|
+ uni.hideLoading();
|
|
97
|
+ this.classifyList = res.data;
|
196
|
98
|
});
|
197
|
99
|
},
|
198
|
100
|
|
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) {
|
|
101
|
+ // 显示隐藏
|
|
102
|
+ setDisPlay(val) {
|
|
103
|
+ console.log(val);
|
|
104
|
+ if (val.display === 0) {
|
211
|
105
|
//下架中,点击上架
|
212
|
106
|
this.api
|
213
|
|
- .get("/Product/TypeGoOnline", {
|
214
|
|
- typeId: val.id,
|
|
107
|
+ .post("/Yx/SetCategoryDisplay", {
|
|
108
|
+ categoryId: val.categoryId,
|
|
109
|
+ display: 1,
|
215
|
110
|
})
|
216
|
111
|
.then((res) => {
|
217
|
112
|
if (res.success) {
|
218
|
|
- // this.fn.showToast("上架成功");
|
219
|
|
- val.status = 1;
|
|
113
|
+ val.display = 1;
|
220
|
114
|
this.$forceUpdate();
|
221
|
115
|
} else {
|
222
|
116
|
this.fn.showModal({
|
223
|
|
- title: "上架失败",
|
|
117
|
+ title: "设置失败",
|
224
|
118
|
content: res.message,
|
225
|
119
|
showCancel: false,
|
226
|
120
|
});
|
|
@@ -228,17 +122,18 @@ export default {
|
228
|
122
|
});
|
229
|
123
|
} else {
|
230
|
124
|
this.api
|
231
|
|
- .get("/Product/TypeGoOffline", {
|
232
|
|
- typeId: val.id,
|
|
125
|
+ .post("/Yx/SetCategoryDisplay", {
|
|
126
|
+ categoryId: val.categoryId,
|
|
127
|
+ display: 0,
|
233
|
128
|
})
|
234
|
129
|
.then((res) => {
|
235
|
130
|
if (res.success) {
|
236
|
131
|
// this.fn.showToast("下架成功");
|
237
|
|
- val.status = 0;
|
|
132
|
+ val.display = 0;
|
238
|
133
|
this.$forceUpdate();
|
239
|
134
|
} else {
|
240
|
135
|
this.fn.showModal({
|
241
|
|
- title: "下架失败",
|
|
136
|
+ title: "设置失败",
|
242
|
137
|
content: res.message,
|
243
|
138
|
showCancel: false,
|
244
|
139
|
});
|
|
@@ -246,6 +141,44 @@ export default {
|
246
|
141
|
});
|
247
|
142
|
}
|
248
|
143
|
},
|
|
144
|
+
|
|
145
|
+ // 推荐等级设置
|
|
146
|
+ setLevel(val) {
|
|
147
|
+ this.level = val.rcommandLevel;
|
|
148
|
+ this.curData = val;
|
|
149
|
+ this.$refs.popup.open({
|
|
150
|
+ type: "dialog",
|
|
151
|
+ });
|
|
152
|
+ },
|
|
153
|
+
|
|
154
|
+ popupConfirm(done, value) {
|
|
155
|
+ if (!value) {
|
|
156
|
+ return this.fn.showToast("请输入推荐等级");
|
|
157
|
+ }
|
|
158
|
+ this.api
|
|
159
|
+ .post("/Yx/SetRecommandLevel", {
|
|
160
|
+ categoryId: this.curData.categoryId,
|
|
161
|
+ rcommandLevel: value,
|
|
162
|
+ })
|
|
163
|
+ .then((res) => {
|
|
164
|
+ if (res.success) {
|
|
165
|
+ // this.fn.showToast("下架成功");
|
|
166
|
+ for(let item of this.classifyList){
|
|
167
|
+ if(item.categoryId === this.curData.categoryId){
|
|
168
|
+ item.rcommandLevel = value;
|
|
169
|
+ }
|
|
170
|
+ }
|
|
171
|
+ this.$forceUpdate();
|
|
172
|
+ } else {
|
|
173
|
+ this.fn.showModal({
|
|
174
|
+ title: "设置失败",
|
|
175
|
+ content: res.message,
|
|
176
|
+ showCancel: false,
|
|
177
|
+ });
|
|
178
|
+ }
|
|
179
|
+ });
|
|
180
|
+ done();
|
|
181
|
+ },
|
249
|
182
|
},
|
250
|
183
|
|
251
|
184
|
// 数据计算
|
|
@@ -364,8 +297,8 @@ export default {
|
364
|
297
|
display: flex;
|
365
|
298
|
align-items: center;
|
366
|
299
|
justify-content: center;
|
367
|
|
- &.status2{
|
368
|
|
- width: px(150);
|
|
300
|
+ &.status2 {
|
|
301
|
+ width: px(210);
|
369
|
302
|
}
|
370
|
303
|
&.up {
|
371
|
304
|
background-color: #ffeded;
|