# 开发记录用


EMSHOP 1.0.85
发布时间：2025-10-03
1. 修复后台用户管理操作栏按钮显示不完整的问题
2. 增加库存导出记录

- 近期更新模板 (在后台模板管理中单独更新)


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




- 数据库变动 (版本号要填更新前的版本号)
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)
        }
    });
});