# 开发记录用


EMSHOP 1.1.13
发布时间：2025.11.04
- 系统更新
1. 修复模板插件配置弹框超出屏幕范围的问题
2. 修复前台导航无法取消的问题
3. 修复部分链接跳转错误的问题



- 其他





- 数据库变动 (版本号要填更新前的版本号)













0 = 未支付
1 = 待发货
2 = 已发货
-1 = 部分发货



delete from table_name where id = 10

insert into table_name () value ()

update table_name set content = 1 where id = 58




-------------------- 异常处理
try {
    $db->beginTransaction();

//    throw new Exception('抛出异常');
    $db->commit();
} catch (Exception $e) {
    $db->rollback();
    output::error($e->getMessage());
}





















