cr лет назад: 4
Родитель
Сommit
59970e321e

+ 3 - 0
releaselog.md

@@ -1,5 +1,8 @@
1 1
 
2 2
 
3
+# 0.5.2 (21.03.20 18:00) 
4
+### 添加平台  群设置
5
+
3 6
 # 0.5.1 (21.03.18 18:00) 
4 7
 ### 我的钱包
5 8
 

+ 2 - 0
src/common/store/common.js

@@ -20,6 +20,8 @@ const module = {
20 20
         groupData:null, //assistant/setting/xxx 临时保存
21 21
         platformData:null,//assistant/setting2/xxx 临时保存
22 22
         withdrawalData:null,//wallet/detail/ 临时保存
23
+        welcomeData:null, // assistant/welcome-item 临时保存
24
+        welcomeItemData:null,// assistant/welcome-item 临时保存
23 25
         tabList:[{
24 26
             id: 1,
25 27
             name: "订单",

+ 6 - 0
src/pages.json

@@ -483,6 +483,12 @@
483 483
             "style": {
484 484
                 "navigationBarTitleText": "添加平台"
485 485
             }
486
+        },
487
+        {
488
+            "path": "pages/assistant/welcome-item",
489
+            "style": {
490
+                "navigationBarTitleText": "群消息"
491
+            }
486 492
         }
487 493
     ]
488 494
 }

+ 324 - 0
src/pages/assistant/set-welcome.vue

@@ -0,0 +1,324 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="list-item" v-for="(item, index) of welcome" :key="index">
4
+            <div class="con">
5
+                <div class="l-con">
6
+                    <div class="index">第{{ index + 1 }}条:</div>
7
+                    <div class="type">{{ item.type | welcomeType }}</div>
8
+                </div>
9
+                <div class="r-con">
10
+                    <block v-if="item.type === 1">
11
+                        <div @click="viewImg(item.content)">
12
+                            <my-image
13
+                                class="main-img"
14
+                                :src="item.content"
15
+                            ></my-image>
16
+                        </div>
17
+                    </block>
18
+                    <block v-else>{{ item.content }}</block>
19
+                </div>
20
+            </div>
21
+            <div class="tool" @click="menu(item, index)">
22
+                <my-image class="menu" src="/static/icon/menu.png"></my-image>
23
+            </div>
24
+        </div>
25
+
26
+        <div class="btns">
27
+            <button type="button" class="btn" @click="add">
28
+                添加群欢迎消息
29
+            </button>
30
+        </div>
31
+    </div>
32
+</template>
33
+
34
+<script>
35
+import MyImage from "../../components/image/index";
36
+let welcomeType = {
37
+    0: "文字",
38
+    1: "图片",
39
+    2: "视频",
40
+    3: "网页链接",
41
+    4: "小程序",
42
+    5: "产品",
43
+    6: "优惠券",
44
+    7: "产品列表",
45
+    8: "首页",
46
+    9: "会员码",
47
+    10: "今日推荐",
48
+    11: "京东首页",
49
+    12: "京东秒杀",
50
+    13: "微信名片",
51
+    14: "平台店铺首页",
52
+    15: "平台产品页",
53
+    16: "平台优惠券",
54
+    17: "平台会员码",
55
+    18: "平台今日推荐",
56
+    19: "平台产品分类页",
57
+    999: "登录码",
58
+};
59
+export default {
60
+    name: "",
61
+    components: { MyImage },
62
+
63
+    // 数据
64
+    data() {
65
+        return {
66
+            groupData: {},
67
+            welcome: [],
68
+        };
69
+    },
70
+    filters: {
71
+        welcomeType(v) {
72
+            return welcomeType[v] || "";
73
+        },
74
+    },
75
+
76
+    onLoad(opts) {},
77
+    async onShow() {
78
+        this.getList();
79
+    },
80
+    // 函数
81
+    methods: {
82
+        getList() {
83
+            let gid = this.$store.state.common.groupData._id;
84
+            this.api
85
+                .get("/Group/GetGroup", { gid }, { pass: true })
86
+                .then((res) => {
87
+                    this.groupData = res.data;
88
+                    this.welcome = this.groupData.welcome || [];
89
+                });
90
+        },
91
+        menu(item, index) {
92
+            // "上移", "下移"
93
+            let arr = ["编辑", "删除"];
94
+            if (index !== 0) {
95
+                arr.push("上移");
96
+            }
97
+            if (index !== this.welcome.length - 1) {
98
+                arr.push("下移");
99
+            }
100
+            uni.showActionSheet({
101
+                itemList: arr,
102
+                success: (res) => {
103
+                    let tapIndex = res.tapIndex;
104
+                    switch (arr[tapIndex]) {
105
+                        case "编辑":
106
+                            this.edit(item, index);
107
+                            break;
108
+                        case "删除":
109
+                            this.remove(item, index);
110
+                            break;
111
+                        case "上移":
112
+                            this.up(item, index);
113
+                            break;
114
+                        case "下移":
115
+                            this.down(item, index);
116
+                            break;
117
+                    }
118
+                    console.log(res, item);
119
+                },
120
+            });
121
+        },
122
+        edit(v, index) {
123
+            this.$store.commit("common/update", {
124
+                welcomeData: this.welcome,
125
+                welcomeItemData: v,
126
+            });
127
+            this.router.push({
128
+                path: "/pages/assistant/welcome-item",
129
+                query: {
130
+                    type: index,
131
+                    gid: this.groupData._id,
132
+                    index
133
+                },
134
+            });
135
+        },
136
+        up(v, index) {
137
+            let arr = [...this.welcome];
138
+            arr.splice(index, 1);
139
+            arr.splice(index - 1, 0, v);
140
+            let data = {
141
+                id: this.groupData._id,
142
+                welcome: [...arr],
143
+            };
144
+            this.api
145
+                .post("/Group/SetWelcome", data, { pass: true })
146
+                .then((res) => {
147
+                    this.submitLoading = false;
148
+                    if (res.success) {
149
+                        this.fn.showToast("移动成功");
150
+                        this.welcome = arr;
151
+                    } else {
152
+                        this.fn.showModal({
153
+                            title: "移动失败",
154
+                            content: "错误信息:" + res.message,
155
+                            showCancel: false,
156
+                        });
157
+                    }
158
+                });
159
+        },
160
+        down(v, index) {
161
+            let arr = [...this.welcome];
162
+            arr.splice(index, 1);
163
+            arr.splice(index + 1, 0, v);
164
+
165
+            let data = {
166
+                id: this.groupData._id,
167
+                welcome: [...arr],
168
+            };
169
+            this.api
170
+                .post("/Group/SetWelcome", data, { pass: true })
171
+                .then((res) => {
172
+                    this.submitLoading = false;
173
+                    if (res.success) {
174
+                        this.fn.showToast("移动成功");
175
+                        this.welcome = arr;
176
+                    } else {
177
+                        this.fn.showModal({
178
+                            title: "移动失败",
179
+                            content: "错误信息:" + res.message,
180
+                            showCancel: false,
181
+                        });
182
+                    }
183
+                });
184
+        },
185
+
186
+        remove(v, index) {
187
+            this.welcome.splice(index, 1);
188
+            console.log(this.welcome, index);
189
+            let data = {
190
+                id: this.groupData._id,
191
+                welcome: this.welcome,
192
+            };
193
+            this.api
194
+                .post("/Group/SetWelcome", data, { pass: true })
195
+                .then((res) => {
196
+                    this.submitLoading = false;
197
+                    uni.hideLoading();
198
+                    if (res.success) {
199
+                        this.fn.showToast("删除成功");
200
+                    } else {
201
+                        this.fn.showModal({
202
+                            title: "删除失败",
203
+                            content: "错误信息:" + res.message,
204
+                            showCancel: false,
205
+                        });
206
+                    }
207
+                });
208
+        },
209
+        add() {
210
+            uni.showActionSheet({
211
+                //, , "小程序消息"
212
+                itemList: ["文字消息", "图片消息"],
213
+                success: (res) => {
214
+                    let index = res.tapIndex;
215
+
216
+                    this.$store.commit("common/update", {
217
+                        welcomeData: this.welcome,
218
+                    });
219
+                    this.router.push({
220
+                        path: "/pages/assistant/welcome-item",
221
+                        query: {
222
+                            type: index,
223
+                            gid: this.groupData._id,
224
+                        },
225
+                    });
226
+                },
227
+            });
228
+        },
229
+
230
+        viewImg(url) {
231
+            uni.previewImage({
232
+                urls: [url],
233
+            });
234
+        },
235
+    },
236
+
237
+    // 数据计算
238
+    computed: {
239
+        user() {
240
+            return this.$store.state.user.user;
241
+        },
242
+    },
243
+
244
+    // 数据监听
245
+    watch: {},
246
+};
247
+</script>
248
+
249
+<style lang="scss" scoped>
250
+.page {
251
+    padding-bottom: 4em;
252
+}
253
+.list-item {
254
+    padding: px(40);
255
+    display: flex;
256
+    justify-content: space-between;
257
+    align-items: flex-start;
258
+    background-color: #fff;
259
+    border-bottom: 1px solid #f1f1f1;
260
+    .menu {
261
+        width: px(60);
262
+        height: px(60);
263
+        flex-shrink: 0;
264
+        margin-left: px(40);
265
+        /deep/ img {
266
+            width: px(60);
267
+            height: px(60);
268
+        }
269
+    }
270
+    .con {
271
+        width: 100%;
272
+        display: flex;
273
+        align-items: flex-start;
274
+        justify-content: space-between;
275
+    }
276
+    .l-con {
277
+        width: px(220);
278
+        flex-shrink: 0;
279
+        margin-right: px(10);
280
+        .index {
281
+            font-size: px(44);
282
+        }
283
+        .type {
284
+            font-size: px(42);
285
+            margin-top: px(10);
286
+            color: #666;
287
+        }
288
+    }
289
+    .r-con {
290
+        width: 100%;
291
+        font-size: px(44);
292
+        line-height: 1.5;
293
+    }
294
+}
295
+.btns {
296
+    display: flex;
297
+    justify-content: space-between;
298
+    align-items: center;
299
+    position: fixed;
300
+    bottom: 0;
301
+    left: 0;
302
+    right: 0;
303
+    z-index: 100;
304
+    .btn {
305
+        background-color: rgb(0, 188, 38);
306
+        color: #fff;
307
+        border-radius: 0;
308
+        font-size: px(50);
309
+        border: none;
310
+        width: 100%;
311
+        & ~ .btn {
312
+            border-left: 1px solid #999;
313
+        }
314
+    }
315
+}
316
+.main-img {
317
+    width: px(200);
318
+    height: px(200);
319
+    /deep/ img {
320
+        width: px(200);
321
+        height: px(200);
322
+    }
323
+}
324
+</style>

+ 373 - 0
src/pages/assistant/welcome-item.vue

@@ -0,0 +1,373 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card" v-if="type === '0'">
4
+            <section class="form-item">
5
+                <div class="label">
6
+                    <span class="required">*</span>
7
+                    消息内容:
8
+                </div>
9
+                <div class="box">
10
+                    <div class="con">
11
+                        <textarea
12
+                            v-model="content"
13
+                            :maxlength="1048"
14
+                            :auto-height="true"
15
+                        ></textarea>
16
+                    </div>
17
+                </div>
18
+            </section>
19
+        </div>
20
+        <div class="form-card" v-if="type === '1'">
21
+            <section class="form-item">
22
+                <div class="label">
23
+                    <span class="required">*</span>
24
+                    消息内容:
25
+                </div>
26
+                <div class="box">
27
+                    <div class="con">
28
+                        <easy-upload
29
+                            :types="'image'"
30
+                            v-model="mainImage"
31
+                            :uploadCount="1"
32
+                            @change="mainImgChange"
33
+                        ></easy-upload>
34
+                    </div>
35
+                </div>
36
+            </section>
37
+        </div>
38
+        <div class="btn" @click="saveOk">保存</div>
39
+    </div>
40
+</template>
41
+
42
+<script>
43
+import MyImage from "../../components/image/index";
44
+import easyUpload from "../../components/easy-upload/easy-upload";
45
+
46
+export default {
47
+    name: "",
48
+    components: { MyImage, easyUpload },
49
+    // 数据
50
+    data() {
51
+        return {
52
+            type: "0", // 0文字  1图片 2小程序
53
+            gid: "", // 群id
54
+            welcome: [],
55
+            content: "",
56
+            submitLoading: false,
57
+            mainImage: [],
58
+            welcomeItem: null,
59
+            itemIndex: null,
60
+        };
61
+    },
62
+
63
+    onLoad(opts) {
64
+        this.welcome = this.$store.state.common.welcomeData;
65
+        this.gid = opts.gid;
66
+        if (opts.index) {
67
+            this.welcomeItem = this.$store.state.common.welcomeItemData;
68
+            this.type = String(this.welcomeItem.type);
69
+            this.content = this.welcomeItem.content;
70
+            if (this.type === "1") {
71
+                setTimeout(() => {
72
+                    this.mainImage = [this.content];
73
+                });
74
+            }
75
+            this.itemIndex = opts.index;
76
+        } else {
77
+            this.type = opts.type;
78
+        }
79
+    },
80
+
81
+    onShow() {},
82
+
83
+    // 函数
84
+    methods: {
85
+        mainImgChange(e) {
86
+            this.content = e[0] || "";
87
+        },
88
+        saveOk() {
89
+            if (this.submitLoading) {
90
+                return;
91
+            }
92
+            if (!this.content) {
93
+                return this.fn.showToast("请填写内容");
94
+            }
95
+            uni.showLoading({
96
+                title: "提交中...",
97
+                mask: true,
98
+            });
99
+            let data = {
100
+                id: this.gid,
101
+                welcome: [...this.welcome],
102
+            };
103
+            if (this.welcomeItem) {
104
+                let itemIndex = Number(this.itemIndex);
105
+
106
+                data.welcome.splice(itemIndex, 1, {
107
+                    ...this.welcomeItem,
108
+                    content: this.content,
109
+                });
110
+            } else {
111
+                if (this.type === "0") {
112
+                    // 文字消息
113
+                    data.welcome.push({
114
+                        type: 0,
115
+                        content: this.content,
116
+                        amount: 1,
117
+                    });
118
+                } else if (this.type === "1") {
119
+                    // 文字消息
120
+                    data.welcome.push({
121
+                        type: 1,
122
+                        content: this.content,
123
+                        amount: 1,
124
+                    });
125
+                }
126
+            }
127
+
128
+            this.submitLoading = true;
129
+            this.api
130
+                .post("/Group/SetWelcome", data, { pass: true })
131
+                .then((res) => {
132
+                    this.submitLoading = false;
133
+                    uni.hideLoading();
134
+                    if (res.success) {
135
+                        this.fn.showToast("修改成功");
136
+                        this.router.back();
137
+                    } else {
138
+                        this.fn.showModal({
139
+                            title: "修改失败",
140
+                            content: "错误信息:" + res.message,
141
+                            showCancel: false,
142
+                        });
143
+                    }
144
+                });
145
+        },
146
+    },
147
+
148
+    // 数据计算
149
+    computed: {},
150
+
151
+    // 数据监听
152
+    watch: {},
153
+};
154
+</script>
155
+
156
+
157
+<style lang="scss" scoped>
158
+.page {
159
+    padding-bottom: px(120);
160
+    min-height: 100vh;
161
+}
162
+.page--iphoneX {
163
+    padding-bottom: px(150);
164
+    .btn {
165
+        padding-bottom: px(30);
166
+        background-color: rgb(0, 188, 38);
167
+    }
168
+}
169
+.form-card {
170
+    background-color: #fff;
171
+    padding: 0 px(30);
172
+    & ~ .form-card {
173
+        margin-top: px(25);
174
+    }
175
+    .head {
176
+        display: flex;
177
+        align-items: center;
178
+        justify-content: space-between;
179
+        height: px(140);
180
+        background-color: #fbfbfb;
181
+        border-bottom: 1px solid #f1f1f1;
182
+        border-top: 1px solid #f1f1f1;
183
+        font-size: px(44);
184
+    }
185
+}
186
+.form-item {
187
+    display: flex;
188
+    min-height: px(140);
189
+    padding: px(30) 0;
190
+    box-sizing: border-box;
191
+    align-items: center;
192
+    font-size: px(44);
193
+    &.dis-item {
194
+        color: #999;
195
+        background: #f9f9f9;
196
+    }
197
+    & ~ .form-item {
198
+        border-top: 1px solid #f1f1f1;
199
+    }
200
+    .label {
201
+        width: px(240);
202
+        flex-shrink: 0;
203
+        color: #999;
204
+        margin-right: px(10);
205
+    }
206
+    .box {
207
+        width: 100%;
208
+        position: relative;
209
+        input {
210
+            width: 100%;
211
+        }
212
+    }
213
+    .tool {
214
+        flex-shrink: 0;
215
+        color: #999;
216
+        margin-left: px(10);
217
+    }
218
+    .tip {
219
+        font-size: px(36);
220
+        color: #e6a23c;
221
+        margin-top: px(5);
222
+    }
223
+    textarea,
224
+    input {
225
+        max-width: 100%;
226
+        width: 100%;
227
+    }
228
+}
229
+.list {
230
+    // min-height: 100vh;
231
+    // background-color: #fff;
232
+    // border-bottom: 1px solid #f1f1f1;
233
+    li {
234
+        padding: px(0) px(35);
235
+        height: px(140);
236
+        line-height: px(140);
237
+        font-size: px(44);
238
+        border-top: 1px solid #f1f1f1;
239
+        display: flex;
240
+        justify-content: space-between;
241
+        align-items: center;
242
+    }
243
+    .tools {
244
+        display: flex;
245
+        align-items: center;
246
+        flex-shrink: 0;
247
+        span {
248
+            display: inline-block;
249
+            border: 1px solid #f1f1f1;
250
+            font-size: px(36);
251
+            height: px(80);
252
+            width: px(120);
253
+            display: flex;
254
+            justify-content: center;
255
+            align-items: center;
256
+            & ~ span {
257
+                margin-left: px(30);
258
+            }
259
+        }
260
+        .remove {
261
+            color: #f00;
262
+        }
263
+    }
264
+}
265
+.btn {
266
+    position: fixed;
267
+    bottom: 0;
268
+    left: 0;
269
+    right: 0;
270
+    width: 100%;
271
+    height: px(120);
272
+    background-color: rgb(0, 188, 38);
273
+    color: #fff;
274
+    display: flex;
275
+    align-items: center;
276
+    justify-content: center;
277
+    z-index: 100;
278
+}
279
+.add-btn {
280
+    height: px(120);
281
+    color: #333;
282
+    display: flex;
283
+    align-items: center;
284
+    justify-content: center;
285
+    margin: px(50) px(35) 0;
286
+    border: 1px solid #ccc;
287
+    border-radius: px(10);
288
+}
289
+.code-tool {
290
+    display: flex;
291
+    justify-content: flex-start;
292
+    align-items: center;
293
+    .scan-img {
294
+        flex-shrink: 0;
295
+        width: px(80);
296
+        height: px(80);
297
+        /deep/ img {
298
+            width: px(80);
299
+            height: px(80);
300
+        }
301
+    }
302
+    .generate {
303
+        color: #0097d1;
304
+        margin-right: px(30);
305
+        flex-shrink: 0;
306
+    }
307
+}
308
+.required {
309
+    color: #f00;
310
+    font-size: px(44);
311
+    &.hide {
312
+        visibility: hidden;
313
+    }
314
+}
315
+.inp-dis {
316
+    color: #999;
317
+}
318
+
319
+.img-card {
320
+    padding-top: px(30);
321
+    padding-bottom: px(30);
322
+}
323
+.form-img-item {
324
+    .tit {
325
+        padding: px(30);
326
+        font-size: px(44);
327
+    }
328
+}
329
+
330
+.spec-list {
331
+    width: 100%;
332
+    display: flex;
333
+    justify-content: space-between;
334
+    align-items: center;
335
+    li {
336
+        width: 33.333333%;
337
+        font-size: px(40);
338
+        height: px(100);
339
+        border: 1px solid #f1f1f1;
340
+        display: flex;
341
+        align-items: center;
342
+        justify-content: center;
343
+        color: #999;
344
+        & ~ li {
345
+            // border-left: none;
346
+        }
347
+        &.on {
348
+            color: rgb(0, 188, 38);
349
+            border-color: rgb(0, 188, 38);
350
+        }
351
+    }
352
+}
353
+.mo-date {
354
+    margin-top: px(20);
355
+    border-bottom: 1px solid #f1f1f1;
356
+    background: #fbfbfb;
357
+    font-size: px(40);
358
+    padding: px(10);
359
+}
360
+.n-date-box {
361
+    margin-top: px(20);
362
+    font-size: px(40);
363
+}
364
+.n-date {
365
+    border-bottom: 1px solid #f1f1f1;
366
+    background: #fbfbfb;
367
+    padding: 0 px(20);
368
+    display: inline-block;
369
+    width: px(200);
370
+    font-size: px(44);
371
+    vertical-align: bottom;
372
+}
373
+</style>

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

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

BIN
src/static/icon/menu.png