feat: 完善

master
yin5th 2023-08-29 11:37:40 +08:00
parent e4e36ad392
commit 6e2b617c7c
1 changed files with 4 additions and 1 deletions

View File

@ -308,7 +308,10 @@ class GoodsLogic extends Logic
if (count($paramPair) === 2) {
$key = trim($paramPair[0]);
$value = trim($paramPair[1]);
$result[] = [$key => $value];
$result[] = [
'key' => $key,
'value' => $value,
];
}
}