chore: 合并华为服务器最新代码前

This commit is contained in:
2025-11-22 09:09:40 +08:00
parent 0f47720f98
commit 2611162e60
3 changed files with 58 additions and 1 deletions

50
docs/TODO.md Normal file
View File

@@ -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
#### 图片管理

View File

@@ -4244,6 +4244,13 @@ create table if not exists lucky_cron
create index IDX_sys_cron_execute_time create index IDX_sys_cron_execute_time
on lucky_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 create table if not exists lucky_cron_log
( (
id int(11) unsigned auto_increment id int(11) unsigned auto_increment

View File

@@ -7,7 +7,7 @@ default_lang = zh-cn
[DATABASE] [DATABASE]
TYPE = mysql TYPE = mysql
HOSTNAME = newshop_mysql HOSTNAME = newshop_mysql
DATABASE = shop_mallnew DATABASE = shop_dev
USERNAME = shop_mallnew USERNAME = shop_mallnew
PASSWORD = shop_mallnew PASSWORD = shop_mallnew
HOSTPORT = 3306 HOSTPORT = 3306