# 开发记录用


EMSHOP 1.1.18
发布时间：2025.11.09
- 系统更新
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());
}





















