修复属性输入组件bug

This commit is contained in:
2023-01-29 20:45:52 +08:00
parent ab374a9073
commit 9695608147
3 changed files with 7 additions and 1 deletions

View File

@@ -2263,6 +2263,8 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
var list = document.querySelectorAll('[data-toggle="property-input"]');
$.each(list, function (i, v) {
var data = $(v).data()
data.value = $(v).text()
propertyInput.render(v, data, admin);
});