xxxrrrdddd 2 years ago
parent
commit
1dbd8daa6b

+ 16 - 4
application/admin/model/Agreement.php

@@ -30,12 +30,24 @@ class Agreement extends Model
     protected $append = [
 
     ];
-    
-
-    
-
 
 
+    public function frontValue(){
+        $id=$this['id'];
+        if(in_array($id,[3])){
+            return $this->getServiceUsers();
+        }
+        return $this['content'];
+    }
+
+    protected function getServiceUsers(){
+        $content=json_decode($this['content'],true)?:[];
+        $list=[];
+        foreach ($content as $name=>$tel){
+            $list[]=compact('name','tel');
+        }
+        return $list;
+    }
 
 
 

+ 16 - 0
application/admin/view/agreement/edit.html

@@ -6,12 +6,28 @@
             <input id="c-title" class="form-control" name="row[title]" type="text" value="{$row.title|htmlentities}">
         </div>
     </div>
+    {eq name="row.id" value="3"}
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">人员列表:</label>
+        <div class="col-xs-12 col-sm-8">
+            <dl class="fieldlist" data-name="row[content]">
+                <dd>
+                    <ins>{:__('姓名')}</ins>
+                    <ins>{:__('电话')}</ins>
+                </dd>
+                <dd><a href="javascript:;" class="append btn btn-sm btn-success"><i class="fa fa-plus"></i> {:__('Append')}</a></dd>
+                <textarea name="row[content]" class="form-control hide" cols="30" rows="5">{$row.content|htmlentities}</textarea>
+            </dl>
+        </div>
+    </div>
+    {else/}
     <div class="form-group">
         <label class="control-label col-xs-12 col-sm-2">{:__('Content')}:</label>
         <div class="col-xs-12 col-sm-8">
             <textarea id="c-content" class="form-control editor" name="row[content]" cols="50" rows="20">{$row.content|htmlentities}</textarea>
         </div>
     </div>
+    {/eq}
     <div class="form-group layer-footer">
         <label class="control-label col-xs-12 col-sm-2"></label>
         <div class="col-xs-12 col-sm-8">

+ 2 - 2
application/api/controller/Common.php

@@ -31,8 +31,8 @@ class Common extends Api
         $this->validate($data,[
             'id'=>['require'],
         ]);
-        $agreement=Agreement::where('id',$data['id'])->value('content','');
-        $this->success('',$agreement);
+        $agreement=Agreement::findOrFail($data['id']);
+        $this->success('',$agreement->frontValue());
     }
 
     /**

+ 1 - 1
application/extra/site.php

@@ -99,5 +99,5 @@ TUerZQ+xwiKFEk5f6TVGjCYhEb5Yj3JGklb3VzcEjtf/BNNVY7qQUORVcbWnpel6
 29PPnBR4Nw==
 -----END CERTIFICATE-----',
   'settle_type' => '1',
-  'basic_ordered_notify_admin' => '8,5,7,4,6',
+  'basic_ordered_notify_admin' => '',
 );