消息管理
This commit is contained in:
24
docs/databases/tables_modify.sql
Normal file
24
docs/databases/tables_modify.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
alter table sms_home_new_product add `original_price` decimal(10,2) DEFAULT NULL COMMENT '市场价';
|
||||
alter table sms_home_recommend_product add `original_price` decimal(10,2) DEFAULT NULL COMMENT '市场价';
|
||||
|
||||
update sms_home_new_product shnp set
|
||||
original_price=(select pp.original_price from pms_product pp where pp.id=shnp.product_id limit 1),
|
||||
price=(select pp.price from pms_product pp where pp.id=shnp.product_id limit 1)
|
||||
|
||||
update sms_home_recommend_product shnp set
|
||||
original_price=(select pp.original_price from pms_product pp where pp.id=shnp.product_id limit 1),
|
||||
price=(select pp.price from pms_product pp where pp.id=shnp.product_id limit 1)
|
||||
|
||||
|
||||
select * from sys_message
|
||||
|
||||
delete from sys_message where 1=1
|
||||
|
||||
insert into sys_message values
|
||||
(1,340,'交易物流','您有新的物流信息','您的订单商品已经到取货点,请在7日内取出。',now(),now(),0,1),
|
||||
(2,340,'云链助手','该施肥了','春天已经至,已到施肥时间。。',now(),now(),0,1),
|
||||
(3,341,'交易物流','您有新的物流信息','您的订单商品已经到取货点,请在7日内取出。',now(),now(),0,1),
|
||||
(4,341,'云链助手','该施肥了','春天已经至,已到施肥时间。。',now(),now(),0,1);
|
||||
|
||||
SELECT id,user_id,code,params,content,ctime,utime,status FROM sys_message WHERE user_id = 341 ORDER BY ctime desc
|
||||
BIN
docs/images/微信图片_20230220120104.jpg
Normal file
BIN
docs/images/微信图片_20230220120104.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 136 KiB |
17
docs/xiugai/wx20230220.txt
Normal file
17
docs/xiugai/wx20230220.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
云链需要修改和完善的内容:
|
||||
1。消息通知功能需要实现;
|
||||
2。后台管理的菜单需要调整,顺序、菜单名称、需要隐藏的都需要调整;
|
||||
3。收货地址(提货点)功能需要实现;
|
||||
4。定时任务功能,可发送定时消息通知。
|
||||
|
||||
问题(2023-02-21)
|
||||
1. APP升级功能
|
||||
2. 后台管理,去掉商户入住,绑定社区
|
||||
3. APP上新增收货地址,新增完后显示错误。
|
||||
4. APP上收藏功能不可用
|
||||
5. APP上注册成功后,需要有提示
|
||||
6. APP注册成功后,直接登录,登录后跳转到登录之前的页面。
|
||||
7. 优惠券领取后,应该不再显示该优惠券
|
||||
8. 优惠券是否可针对某个商品或针对会员可领取
|
||||
9. APP短信验证(注册、登录)
|
||||
10.支付宝付款、微信付款功能
|
||||
Reference in New Issue
Block a user