diff --git a/docs/TODO.md b/docs/TODO.md new file mode 100644 index 000000000..12cb015ec --- /dev/null +++ b/docs/TODO.md @@ -0,0 +1,50 @@ +# TODO 列表 + + + +## 重新初始化后,发现页面的问题 + +以下问题是开发者工具,控制台,提供的信息 + +- [ ] http://localhost:8010/shop.html#url=memberrecharge://shop/memberrecharge/orderlists 页面脚本报错 +- [ ] http://localhost:8010/shop.html#url=merch://shop/merch/lists css文件丢失 +- [ ] http://localhost:8010/shop.html#url=shop/stat/member 控制台打印出很多调试数据 + + +### 应用中心 + +#### 电子名片 + +http://localhost:8010/shop.html#url=personnel://shop/personnel/lists + +1. 企业文件:服务器500错误,http://localhost:8010/shop.html#url=personnel://shop/enterprise/lists +1. 电子名片设计器: 服务器500错误, http://localhost:8010/shop.html#url=personnel://shop/personnel/diy + + +#### 电子面单 + + +1. 电子面单模板:很多字段,没有中文翻译 http://localhost:8010/shop.html#url=electronicsheet://shop/electronicsheet/add + + + + +### 商城设置 + +#### 联系我们 + +1. 腾讯地图,警告 Failed to execute 'write' on 'Document': It isn't possible to write into a document from an asynchronously-loaded external script unless it is explicitly opened. +http://localhost:8010/shop.html#url=shop/shop/contact + +#### 其他设置 + +1. 默认图片: 默认商品图片、默认会员头像、默认文章图片,加载文件,文件不存在,报错 http://localhost:8010/shop.html#url=shop/config/defaultpicture + + +#### 注册设置 + +1. 找不到模板,http://localhost:8010/shop.html#url=alisms://shop/message/edit + + +#### 图片管理 + diff --git a/docs/db/init_v2.0_with_data.sql b/docs/db/init_v2.0_with_data.sql index e7c54a193..fe1a3692f 100644 --- a/docs/db/init_v2.0_with_data.sql +++ b/docs/db/init_v2.0_with_data.sql @@ -4244,6 +4244,13 @@ create table if not exists lucky_cron create index IDX_sys_cron_execute_time on lucky_cron (execute_time); +-- 初始化计划任务 +INSERT INTO lucky_cron (type, period, period_type, name, event, execute_time, relate_id, create_time) VALUES +(2, 2, 0, '店铺统计更新(按时)', 'CronStatShopHour', 1763487040, 0, 0), +(2, 2, 0, '门店统计更新(按时)', 'CronStatStoreHour', 1763487040, 0, 0), +(2, 2, 0, '店铺统计更新(按日)', 'CronStatShop', 1763487040, 0, 0), +(2, 2, 0, '门店统计更新(按日)', 'CronStatStore', 1763487040, 0, 0); + create table if not exists lucky_cron_log ( id int(11) unsigned auto_increment diff --git a/src/.env.local b/src/.env.local index afec3dd73..a90ac8794 100644 --- a/src/.env.local +++ b/src/.env.local @@ -7,7 +7,7 @@ default_lang = zh-cn [DATABASE] TYPE = mysql HOSTNAME = newshop_mysql -DATABASE = shop_mallnew +DATABASE = shop_dev USERNAME = shop_mallnew PASSWORD = shop_mallnew HOSTPORT = 3306