作者 sgj
1 个管道 的构建 失败 耗费 0 秒

team

@@ -15,6 +15,10 @@ class TeamModel extends Model @@ -15,6 +15,10 @@ class TeamModel extends Model
15 { 15 {
16 protected $name = 'team'; 16 protected $name = 'team';
17 17
  18 + public function getPicAttr($value){
  19 + return cmf_get_image_url($value);
  20 + }
  21 +
18 22
19 /** 23 /**
20 * 获取地址 24 * 获取地址
@@ -123,6 +123,7 @@ class TeamController extends AdminBaseController @@ -123,6 +123,7 @@ class TeamController extends AdminBaseController
123 */ 123 */
124 public function addPost(){ 124 public function addPost(){
125 $data=input(''); 125 $data=input('');
  126 + $data['create_time']=time();
126 $info=db('team')->insert($data); 127 $info=db('team')->insert($data);
127 if (!empty($info)){ 128 if (!empty($info)){
128 $this->success('操作成功!'); 129 $this->success('操作成功!');