cuiqian2004
2025-06-06 08b2db8f26e6b508c7ed9a59006cff3005db5895
js/utils.js
@@ -8,24 +8,19 @@
      }
      return false
   },
   attrTypeIsNumber: function(type) {
      if (attrTypeIsInt(type) || attrTypeIsFloat(type)) {
         return true
      }
      return false
   },
   attrTypeIsFloat: function(type) {
      if (type == '浮点数' ||  type == 'float') {
         return true
      }
      return false
   },
   attrTypeIsInt: function(type) {
      if (type == '整数' || type == 'int') {
         return true
      }
      return false
   },
   attrTypeIsFloat: function(type) {
      if (type == '浮点数' ||  type == 'float') {
         return true
      }
      return false
   },
   attrTypeIsDict: function(type) {
      if (type == '字典' || type == '字典-字符串' || type == '字典-整数' || type == 'dict' || type == 'dict-char' ||
         type == 'dict-int') {