cr лет назад: 4
Родитель
Сommit
8a2ce7e9cf
2 измененных файлов с 108 добавлено и 166 удалено
  1. 11 2
      src/pages/assistant/setting.vue
  2. 97 164
      src/pages/youxuan/index.vue

+ 11 - 2
src/pages/assistant/setting.vue

@@ -22,8 +22,8 @@
22 22
                     src="/static/common/arrows_left.png"
23 23
                 ></my-image>
24 24
             </li>
25
-            <li class="item">
26
-                <div class="name">暂停本群助理</div>
25
+            <li class="item" v-if="groupData.status===2 ||groupData.status===1">
26
+                <div class="name">启用助理</div>
27 27
                 <!-- <my-image
28 28
                     class="arrow"
29 29
                     src="/static/common/arrows_left.png"
@@ -33,6 +33,11 @@
33 33
                     @change="switchChange"
34 34
                 ></switch>
35 35
             </li>
36
+            <li class="item" v-else>
37
+                <div class="name">助理状态</div>
38
+                <span class="gray-text" v-if="groupData.status===0">待关联</span>
39
+                <span class="gray-text" v-if="groupData.status===3">助理被移除群</span>
40
+            </li>
36 41
         </ul>
37 42
     </div>
38 43
 </template>
@@ -53,6 +58,7 @@ export default {
53 58
 
54 59
     onLoad(opts) {
55 60
         this.groupData = this.$store.state.common.groupData;
61
+        // 判断只有1 和2 时可以设置
56 62
         this.switchChecked = this.groupData.status === 1 ? true : false;
57 63
     },
58 64
     async onShow() {
@@ -141,4 +147,7 @@ export default {
141 147
 switch {
142 148
     transform: scale(0.7);
143 149
 }
150
+.gray-text{
151
+    color: #666;
152
+}
144 153
 </style>

+ 97 - 164
src/pages/youxuan/index.vue

@@ -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;