songxingwei 2 years ago
parent
commit
75d370de77
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/data/sys.php

+ 2 - 1
app/data/sys.php

@@ -53,11 +53,12 @@ if (!function_exists('show_goods_spec')) {
      */
      */
     function show_goods_spec(string $spec): string
     function show_goods_spec(string $spec): string
     {
     {
-        if (is_null($spec)) return '';
+
         $specs = [];
         $specs = [];
         foreach (explode(';;', $spec) as $sp) {
         foreach (explode(';;', $spec) as $sp) {
             $specs[] = explode('::', $sp)[1];
             $specs[] = explode('::', $sp)[1];
         }
         }
+        return 111;
         return join(' ', $specs);
         return join(' ', $specs);
     }
     }
 }
 }