Explorar o código

修改数据类型

liaofei %!s(int64=2) %!d(string=hai) anos
pai
achega
2ae341ff24
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      crmeb/crmeb/services/crud/Service.php

+ 3 - 0
crmeb/crmeb/services/crud/Service.php

@@ -78,6 +78,9 @@ class Service extends Make
                         if (in_array($item['type'], ['checkbox'])) {
                             $valueContent = '[]';
                             $input = '(array)(' . $input . $valueContent . ')';
+                        } else if ($item['type'] == 'radio') {
+                            $valueContent = '-1';
+                            $input = '(int)(' . $input . $valueContent . ')';
                         } else {
                             $input = $input . $valueContent;
                         }