client: fix data transform error

This commit is contained in:
fantasticit 2022-05-21 15:35:32 +08:00
parent a42acc4015
commit 1dbbe990d3
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,10 @@ define(function (require, exports, module) {
* v1.1.3 => v1.2.0
* */
function c_113_120(json) {
if (!json.data) {
json.data = {};
}
// 原本的布局风格
var ocs = json.data.currentstyle;
delete json.data.currentstyle;