zilong 4 years ago
parent
commit
377b9d2692
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Models/ServicePack.php

+ 1 - 1
app/Models/ServicePack.php

xqd
@@ -37,7 +37,7 @@ class ServicePack extends BaseModel
     {
         $data = '';
         if (!empty($this->agreement_id)) {
-            $data = SystemConfig::where('id', $this->agreement_id)->value('value');
+            $data = InsuranceAgreement::where('id', $this->agreement_id)->value('content');
         }
 
         return $data;