* Fix bug.

This commit is contained in:
liumengyi
2023-02-10 13:43:59 +08:00
parent a5807a3a68
commit 2047d0204b
+1 -1
View File
@@ -90,7 +90,7 @@ class datatableModel extends model
$set->id = $id;
$set->show = true;
$set->width = $fieldList[$id]['width'];
$set->fixed = $fieldList[$id]['fixed'];
$set->fixed = isset($fieldList[$id]['fixed']) ? $fieldList[$id]['fixed'] : 'no';
$set->title = $fieldList[$id]['title'];
$set->sort = isset($fieldList[$id]['sort']) ? $fieldList[$id]['sort'] : 'yes';
$set->name = isset($fieldList[$id]['name']) ? $fieldList[$id]['name'] : '';