Browse Source

开关设置

cr 3 years ago
parent
commit
0155a4fe1d
4 changed files with 145 additions and 2 deletions
  1. 1 1
      src/App.vue
  2. 1 1
      src/pages/manage/index.vue
  3. 92 0
      src/pages/manage/shop/index.vue
  4. 51 0
      src/pages/manage/shop/points.vue

+ 1 - 1
src/App.vue

@@ -80,7 +80,7 @@ export default {
80 80
 
81 81
         // 登录处理
82 82
         // this.fn.roleHandle();
83
-        await self.fn.getToken(option)
83
+        // await self.fn.getToken(option)
84 84
         // self.fn.getStoreList();
85 85
 
86 86
         // 修改配置

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

@@ -92,7 +92,7 @@
92 92
 
93 93
         <!-- <button class="btn" @click="layout">退出登录</button> -->
94 94
 
95
-        <div class="ver">0.5.58</div>
95
+        <div class="ver">0.5.59</div>
96 96
         <wyg-bottom-tab
97 97
             ref="tabbar"
98 98
             :tabIndex="2"

+ 92 - 0
src/pages/manage/shop/index.vue

@@ -29,6 +29,30 @@
29 29
                     @change="switchChange"
30 30
                 ></switch>
31 31
             </li>
32
+            <li class="item-des" v-if="switchChecked">
33
+                <div class="item">
34
+                    <div class="name">开启日常自动播货</div>
35
+                    <switch
36
+                        :checked="eveningAutoBroadcastGoodsGroup"
37
+                        @change="setEveningAutoBroadcastGoods"
38
+                    ></switch>
39
+                </div>
40
+                <p class="des">
41
+                    助理自动推荐商品链接,每次推荐2个左右商品或活动链接。大约每小时推送一次。
42
+                </p>
43
+            </li>
44
+            <li class="item-des" v-if="switchChecked">
45
+                <div class="item">
46
+                    <div class="name">开启活动自动推荐</div>
47
+                    <switch
48
+                        :checked="dayAutoBroadcastGoodsGroup"
49
+                        @change="setDayAutoBroadcastGoods"
50
+                    ></switch>
51
+                </div>
52
+                <p class="des">
53
+                    助理每天一次自动推送运营专员准备的活动素材内容,包括:文字、图片、食品、产品活动链接。每次推送消息20条左右。每天推送一次
54
+                </p>
55
+            </li>
32 56
         </ul>
33 57
     </div>
34 58
 </template>
@@ -44,6 +68,8 @@ export default {
44 68
         return {
45 69
             curShop: {},
46 70
             switchChecked: false,
71
+            eveningAutoBroadcastGoodsGroup: false,
72
+            dayAutoBroadcastGoodsGroup: false,
47 73
             storeConfig: {},
48 74
         };
49 75
     },
@@ -64,6 +90,14 @@ export default {
64 90
                 .then((infoRes) => {
65 91
                     this.storeConfig = infoRes.data;
66 92
                     this.switchChecked = this.storeConfig.enableYouXuan;
93
+                    this.eveningAutoBroadcastGoodsGroup = this.storeConfig
94
+                        .eveningAutoBroadcastGoodsGroup
95
+                        ? true
96
+                        : false;
97
+                    this.dayAutoBroadcastGoodsGroup = this.storeConfig
98
+                        .dayAutoBroadcastGoodsGroup
99
+                        ? true
100
+                        : false;
67 101
                 });
68 102
         },
69 103
 
@@ -90,6 +124,56 @@ export default {
90 124
                     }
91 125
                 });
92 126
         },
127
+
128
+        setEveningAutoBroadcastGoods(e) {
129
+            let detail = e.detail.value;
130
+            this.eveningAutoBroadcastGoodsGroup = detail;
131
+            let data = {
132
+                enabled: detail,
133
+            };
134
+
135
+            this.api
136
+                .get("/Shop/setEveningAutoBroadcastGoods", data, { pass: true })
137
+                .then((res) => {
138
+                    uni.hideLoading();
139
+                    if (res.success) {
140
+                        this.fn.showToast("设置成功");
141
+                    } else {
142
+                        this.eveningAutoBroadcastGoodsGroup = !this
143
+                            .eveningAutoBroadcastGoodsGroup;
144
+                        this.fn.showModal({
145
+                            title: "设置失败",
146
+                            content: "错误信息:" + res.message,
147
+                            showCancel: false,
148
+                        });
149
+                    }
150
+                });
151
+        },
152
+
153
+        setDayAutoBroadcastGoods(e) {
154
+            let detail = e.detail.value;
155
+            this.dayAutoBroadcastGoodsGroup = detail;
156
+            let data = {
157
+                enabled: detail,
158
+            };
159
+
160
+            this.api
161
+                .get("/Shop/setDayAutoBroadcastGoods", data, { pass: true })
162
+                .then((res) => {
163
+                    uni.hideLoading();
164
+                    if (res.success) {
165
+                        this.fn.showToast("设置成功");
166
+                    } else {
167
+                        this.dayAutoBroadcastGoodsGroup = !this
168
+                            .dayAutoBroadcastGoodsGroup;
169
+                        this.fn.showModal({
170
+                            title: "设置失败",
171
+                            content: "错误信息:" + res.message,
172
+                            showCancel: false,
173
+                        });
174
+                    }
175
+                });
176
+        },
93 177
     },
94 178
 
95 179
     // 数据计算
@@ -134,4 +218,12 @@ export default {
134 218
 switch {
135 219
     transform: scale(0.7);
136 220
 }
221
+.item-des{
222
+    border-bottom: 1px solid #f1f1f1;
223
+    .des{
224
+        font-size: px(40);
225
+        color: #999;
226
+        padding: px(15) px(30) px(30);
227
+    }
228
+}
137 229
 </style>

+ 51 - 0
src/pages/manage/shop/points.vue

@@ -68,6 +68,54 @@
68 68
                     </div>
69 69
                 </section>
70 70
             </block>
71
+
72
+
73
+            <section class="form-item">
74
+                <div class="label">晒单赠积分:</div>
75
+                <div class="box">
76
+                    <switch
77
+                        :value="true"
78
+                        :checked="form.enableShareOrderReward"
79
+                        @change="switchChange($event, 'enableShareOrderReward')"
80
+                    ></switch>
81
+                    <span class="tip">目前支持平台:京东区区购</span>
82
+                </div>
83
+            </section>
84
+            <block v-if="form.enableShareOrderReward">
85
+                <section class="form-item">
86
+                    <div class="label">独立店铺晒单赠:</div>
87
+                    <div class="box">
88
+                        <input
89
+                            type="number"
90
+                            v-model="form.shareOrderRewardPoints"
91
+                            placeholder=" "
92
+                        />
93
+                    </div>
94
+                </section>
95
+                <section class="form-item">
96
+                    <div class="label">
97
+                        <!-- <span class="required">*</span> -->
98
+                        其他支持平台晒单赠:
99
+                    </div>
100
+                    <div class="box">
101
+                        <input
102
+                            type="number"
103
+                            v-model="form.shareOtherOrderRewardPoints"
104
+                        />
105
+                    </div>
106
+                </section>
107
+                <!-- <section class="form-item">
108
+                    <div class="label">
109
+                        每日晒单奖励上限:
110
+                    </div>
111
+                    <div class="box">
112
+                        <input
113
+                            type="number"
114
+                            v-model="form.dayShareOrderRewardLimit"
115
+                        />
116
+                    </div>
117
+                </section> -->
118
+            </block>
71 119
         </div>
72 120
         <div class="btns">
73 121
             <div class="btn" @click="saveOk">保存</div>
@@ -90,6 +138,9 @@ export default {
90 138
                 groupSignInRewardPoints: "",
91 139
                 inviteFriendRewardPoints: "",
92 140
                 enabledOrderPayRewardPoints: false,
141
+                enableShareOrderReward:false,
142
+                shareOrderRewardPoints:false,
143
+                shareOtherOrderRewardPoints:false,
93 144
             },
94 145
             submitLoading: false,
95 146
         };