Browse Source

修改置顶

cr 4 years ago
parent
commit
0ae9617a8a

+ 214 - 0
src/components/xuan-switch/xuan-switch.vue

@@ -0,0 +1,214 @@
1
+<template>
2
+    <view class="switch-container" :style="[{ background: bj_color }]">
3
+        <view class="switch_view">
4
+            <view
5
+                class="switch-item"
6
+                :class="{ checked_switch: isSwitch }"
7
+                :style="isSwitch ? `color:${checked_color}` : ''"
8
+                @click.prevent.stop="changeSwitch(true)"
9
+                :animation="animationData2"
10
+            >
11
+                {{ switchList[0] }}
12
+            </view>
13
+            <view
14
+                class="switch-item"
15
+                :class="{ checked_switch: !isSwitch }"
16
+                :style="!isSwitch ? `color:${checked_color}` : ''"
17
+                @click.prevent.stop="changeSwitch(false)"
18
+                :animation="animationData3"
19
+            >
20
+                {{ switchList[1] }}
21
+            </view>
22
+        </view>
23
+        <view class="disabled" v-if="disabled"></view>
24
+        <view
25
+            class="position_view"
26
+            :animation="animationData1"
27
+            :style="[{ background: checked_bj_color }]"
28
+        ></view>
29
+    </view>
30
+</template>
31
+
32
+<script>
33
+export default {
34
+    props: {
35
+        switchList: {
36
+            type: Array,
37
+            default: () => {
38
+                return ["开", "关"];
39
+            },
40
+        },
41
+        defaultSwitch: {
42
+            type: Boolean,
43
+            default: true,
44
+        },
45
+        isShowModal: {
46
+            //改变开关时,是否弹框提醒
47
+            type: Boolean,
48
+            default: false,
49
+        },
50
+        disabled: {
51
+            type: Boolean,
52
+            default: false,
53
+        },
54
+        bj_color: {
55
+            type: String,
56
+            default: "#fff",
57
+        },
58
+        // checked_bj_color:{
59
+        //   type:String,
60
+        //   default:'rgb(0, 188, 38)',
61
+        // },
62
+        changeBgColor: {
63
+            type: Boolean,
64
+            default: true,
65
+        },
66
+        checked_color: {
67
+            type: String,
68
+            default: "#fff",
69
+        },
70
+    },
71
+    data() {
72
+        return {
73
+            isSwitch: true,
74
+            initAnimation: {},
75
+            animationData1: {},
76
+            animationData2: {},
77
+            animationData3: {},
78
+            checked_bj_color: "00bc26", //#f44336红 #00bc26绿
79
+        };
80
+    },
81
+    created() {
82
+        this.initAnimation = uni.createAnimation({
83
+            duration: 500,
84
+            timingFunction: "ease",
85
+        });
86
+        this.isSwitch = this.defaultSwitch;
87
+        this.changeAnimation();
88
+    },
89
+    methods: {
90
+        changeSwitch(isSwitch) {
91
+            if (isSwitch == this.isSwitch || this.disabled) {
92
+                return;
93
+            }
94
+            if (this.isShowModal) {
95
+                let index = isSwitch ? 0 : 1;
96
+                let text = this.switchList[index];
97
+                uni.showModal({
98
+                    title: "提示",
99
+                    content: `您确定要将其调整为${text}吗?`,
100
+                    success: (res) => {
101
+                        if (res.confirm) {
102
+                            this.isSwitch = isSwitch;
103
+                            this.changeAnimation();
104
+                            this.callParentEvent(isSwitch);
105
+                        }
106
+                    },
107
+                });
108
+            } else {
109
+                this.isSwitch = isSwitch;
110
+                this.changeAnimation();
111
+                this.callParentEvent(isSwitch);
112
+            }
113
+        },
114
+        changeAnimation() {
115
+            if (this.isSwitch) {
116
+                this.animationData1 = this.initAnimation
117
+                    .left(0)
118
+                    .width("60%")
119
+                    .step()
120
+                    .export();
121
+                this.animationData2 = this.initAnimation
122
+                    .width("60%")
123
+                    .step()
124
+                    .export();
125
+                this.animationData3 = this.initAnimation
126
+                    .width("40%")
127
+                    .step()
128
+                    .export();
129
+            } else {
130
+                this.animationData1 = this.initAnimation
131
+                    .left("40%")
132
+                    .width("60%")
133
+                    .step()
134
+                    .export();
135
+                this.animationData2 = this.initAnimation
136
+                    .width("40%")
137
+                    .step()
138
+                    .export();
139
+                this.animationData3 = this.initAnimation
140
+                    .width("60%")
141
+                    .step()
142
+                    .export();
143
+            }
144
+        },
145
+        callParentEvent() {
146
+            this.$emit("change", this.isSwitch);
147
+        },
148
+    },
149
+    watch: {
150
+        isSwitch(v) {
151
+            if (this.changeBgColor) {
152
+                if (v) {
153
+                    this.checked_bj_color = "#00bc26";
154
+                } else {
155
+                    this.checked_bj_color = "#f44336";
156
+                }
157
+            }
158
+        },
159
+    },
160
+};
161
+</script>
162
+
163
+<style lang="scss" scoped>
164
+.switch-container {
165
+    display: flex;
166
+    flex-direction: row;
167
+    width: 160upx;
168
+    height: 60upx;
169
+    border-radius: 100upx;
170
+    border: 1upx solid #ccc;
171
+    position: relative;
172
+    .switch_view {
173
+        position: absolute;
174
+        top: 0;
175
+        left: 0;
176
+        width: 100%;
177
+        height: 100%;
178
+        z-index: 1;
179
+        display: flex;
180
+        border-radius: 100upx;
181
+        .switch-item {
182
+            color: #666;
183
+            font-size: 24upx;
184
+            height: 100%;
185
+            width: 40%;
186
+            border-radius: 100upx;
187
+            display: flex;
188
+            justify-content: center;
189
+            align-items: center;
190
+        }
191
+    }
192
+    .position_view {
193
+        position: absolute;
194
+        top: 0;
195
+        left: 0;
196
+        width: 60%;
197
+        height: 100%;
198
+        border-radius: 100upx;
199
+        background: rgb(0, 188, 38);
200
+        transition: all 0.3s;
201
+    }
202
+    .disabled {
203
+        position: absolute;
204
+        top: 0;
205
+        left: 0;
206
+        width: 100%;
207
+        height: 100%;
208
+        z-index: 99;
209
+        background: #fff;
210
+        opacity: 0.6;
211
+        border-radius: 100upx;
212
+    }
213
+}
214
+</style>

+ 1 - 1
src/pages.json

@@ -513,7 +513,7 @@
513 513
         {
514 514
             "path": "pages/youxuan/index",
515 515
             "style": {
516
-                "navigationBarTitleText": "优选管理"
516
+                "navigationBarTitleText": "优选分类"
517 517
             }
518 518
         },
519 519
         {

+ 2 - 2
src/pages/assistant/add-platform.vue

@@ -147,12 +147,12 @@ export default {
147 147
                 }
148 148
             }
149 149
             this.api
150
-                .post("/Group/AddJDPlatform", sendData, { pass: true })
150
+                .get("/Group/AddJDPlatform", sendData, { pass: true })
151 151
                 .then((res) => {
152 152
                     if (res.success) {
153 153
                         this.fn.showModal({
154 154
                             title: "添加平台成功",
155
-                            content: `你已成功添加${1},如果需要在群内关联平台,请在群详情下关联平台,获取点击“一键关联群”,现在一键关联`,
155
+                            content: `你已成功添加${''},如果需要在群内关联平台,请在群详情下关联平台,获取点击“一键关联群”,现在一键关联`,
156 156
                             confirmText: "一键关联",
157 157
                             cancelText: "稍后关联",
158 158
                             confirmColor: "#42b983",

+ 1 - 1
src/pages/assistant/setting.vue

@@ -9,7 +9,7 @@
9 9
                 ></my-image>
10 10
             </li>
11 11
             <li class="item" @click="jump('/pages/assistant/set-time')">
12
-                <div class="name">助理禁言时间</div>
12
+                <div class="name">助理工作时间</div>
13 13
                 <my-image
14 14
                     class="arrow"
15 15
                     src="/static/common/arrows_left.png"

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

@@ -77,7 +77,7 @@
77 77
 
78 78
         <!-- <button class="btn" @click="layout">退出登录</button> -->
79 79
 
80
-        <div class="ver">0.5.34</div>
80
+        <div class="ver">0.5.35</div>
81 81
         <wyg-bottom-tab
82 82
             ref="tabbar"
83 83
             :tabIndex="2"

+ 69 - 53
src/pages/youxuan/index.vue

@@ -3,35 +3,39 @@
3 3
         <ul class="classify-list">
4 4
             <black v-for="item of classifyList" :key="item.categoryId">
5 5
                 <li class="item">
6
-                    <div class="con">
6
+                    <div
7
+                        class="con"
8
+                        @click="
9
+                            jump({
10
+                                path: '/pages/youxuan/brand',
11
+                                query: { cateId: item.categoryId },
12
+                            })
13
+                        "
14
+                    >
7 15
                         <div class="name">
8 16
                             {{ item.name }}
9 17
                         </div>
10 18
                         <div class="des">
11 19
                             <!-- {{ item.children ? item.children.length : 0 }}个品牌 -->
12 20
                         </div>
13
-                        <div
14
-                            class="link"
15
-                            @click="
16
-                                jump({
17
-                                    path: '/pages/youxuan/brand',
18
-                                    query: { cateId: item.categoryId },
19
-                                })
20
-                            "
21
-                        >
22
-                            查看品牌
23
-                        </div>
21
+                        <my-image
22
+                            class="arrow"
23
+                            :class="{ up: item.showChildren }"
24
+                            src="/static/common/arrows_left.png"
25
+                        ></my-image>
24 26
                     </div>
25 27
                     <div class="tool">
26
-                        <span
28
+                        <!-- <span
27 29
                             class="status"
28 30
                             :class="{ up: item.display === 0 }"
29 31
                             @click="setDisPlay(item)"
30 32
                             >{{ item.display === 0 ? "不显示" : "显示" }}</span
31
-                        >
32
-                        <span class="status status2" @click="setLevel(item)"
33
+                        > -->
34
+                        <!-- <span class="status status2" @click="setLevel(item)"
33 35
                             >推荐:{{ item.rcommandLevel }}</span
34
-                        >
36
+                        > -->
37
+                        <selectSwitch class="switch" :defaultSwitch="item.display===1" @change="displaySwitch(item,$event)" :switchList="['显示','隐藏']"/>
38
+                        <selectSwitch class="switch" :defaultSwitch="item.top!==0" @change="setTopSwitch(item,$event)" :switchList="['置顶','取消']" :changeBgColor="false"/>
35 39
                     </div>
36 40
                 </li>
37 41
             </black>
@@ -56,10 +60,11 @@
56 60
 import MyImage from "../../components/image/index";
57 61
 import uniPopup from "../../components/uni-popup/uni-popup";
58 62
 import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
63
+import selectSwitch  from "../../components/xuan-switch/xuan-switch";
59 64
 
60 65
 export default {
61 66
     name: "",
62
-    components: { MyImage, uniPopup, uniPopupDialog },
67
+    components: { MyImage, uniPopup, uniPopupDialog,selectSwitch  },
63 68
 
64 69
     // 数据
65 70
     data() {
@@ -91,7 +96,7 @@ export default {
91 96
         },
92 97
 
93 98
         // 显示隐藏
94
-        setDisPlay(val) {
99
+        displaySwitch(val,e) {
95 100
             if (val.display === 0) {
96 101
                 //下架中,点击上架
97 102
                 this.api
@@ -134,42 +139,50 @@ export default {
134 139
         },
135 140
 
136 141
         // 推荐等级设置
137
-        setLevel(val) {
138
-            this.level = val.rcommandLevel;
139
-            this.curData = val;
140
-            this.$refs.popup.open({
141
-                type: "dialog",
142
-            });
143
-        },
144
-
145
-        popupConfirm(done, value) {
146
-            if (!value) {
147
-                return this.fn.showToast("请输入推荐等级");
148
-            }
149
-            this.api
150
-                .post("/Yx/SetRecommandLevel", {
151
-                    categoryId: this.curData.categoryId,
152
-                    rcommandLevel: value,
153
-                })
154
-                .then((res) => {
155
-                    if (res.success) {
156
-                        // this.fn.showToast("下架成功");
157
-                        for(let item of this.classifyList){
158
-                            if(item.categoryId === this.curData.categoryId){
159
-                                item.rcommandLevel = value;
160
-                            }
142
+        setTopSwitch(val) {
143
+            if (val.top === 0) {
144
+                // 置顶
145
+                this.api
146
+                    .post("/Yx/SetCategoryTop", {
147
+                        id: val.categoryId,
148
+                        query:true
149
+                    })
150
+                    .then((res) => {
151
+                        if (res.success) {
152
+                            val.top = 99;
153
+                            this.$forceUpdate();
154
+                        } else {
155
+                            this.fn.showModal({
156
+                                title: "设置失败",
157
+                                content: res.message,
158
+                                showCancel: false,
159
+                            });
160
+                        }
161
+                    });
162
+            } else {
163
+                // 取消置顶
164
+                this.api
165
+                    .post("/Yx/CancelCategoryTop", {
166
+                        id: val.categoryId,
167
+                        query:true
168
+                    })
169
+                    .then((res) => {
170
+                        if (res.success) {
171
+                            // this.fn.showToast("下架成功");
172
+                            val.top = 0;
173
+                            this.$forceUpdate();
174
+                        } else {
175
+                            this.fn.showModal({
176
+                                title: "设置失败",
177
+                                content: res.message,
178
+                                showCancel: false,
179
+                            });
161 180
                         }
162
-                        this.$forceUpdate();
163
-                    } else {
164
-                        this.fn.showModal({
165
-                            title: "设置失败",
166
-                            content: res.message,
167
-                            showCancel: false,
168
-                        });
169
-                    }
170
-                });
171
-            done();
181
+                    });
182
+            }
172 183
         },
184
+
185
+
173 186
     },
174 187
 
175 188
     // 数据计算
@@ -234,7 +247,7 @@ export default {
234 247
             justify-content: center;
235 248
         }
236 249
         .con {
237
-            width: 50%;
250
+            width: 40%;
238 251
             padding-right: px(44);
239 252
             position: relative;
240 253
         }
@@ -303,4 +316,7 @@ export default {
303 316
         background-color: #efefef;
304 317
     }
305 318
 }
319
+.switch~.switch{
320
+    margin-left: px(40);
321
+}
306 322
 </style>