# 开发记录用


EMSHOP 1.0.85
发布时间：2025-10-03

EMSHOP 1.0.86
发布时间：2025-10-13
1. 优化多个后台管理页面
2. 修复部分bug




- 近期更新模板 (在后台模板管理中单独更新)
>>> 默认模板 更新至1.1.1
>>> 子神(子鼠) 模板 更新至1.1.7
>>> 八百里(丑牛) 模板 更新至1.1.3
>>> 山君(寅虎) 模板 更新至1.1.1

- 近期更新插件 (在后台插件管理中单独更新)




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











---------------

<form action="xxx.php?action=edit" method="post" enctype="multipart/form-data" id="edit-form">
</form>

// 提交表单
$("#xxx-form").submit(function (event) {
    event.preventDefault();
    $.ajax({
        type: "POST",
        url: $('#xxx-form').attr('action'),
        data: $('#xxx-form').serialize(),
        dataType: "json",
        success: function (e) {
        },
        error: function (xhr) {
            const errorMsg = JSON.parse(xhr.responseText).msg;
            layer.msg(errorMsg)
        }
    });
});