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