$result = StoreProductAttrResult::getResult($id);
修改为:$result = StoreProductAttrResult::getResult($id, 0);
步骤二:199行 将$result = StoreProductAttrValue::where('product_id', $id)->find();
修改为:$result = StoreProductAttrValue::where('product_id', $id)->where('type', 0)->find();