dever 6 лет назад
Родитель
Сommit
3dcd656491
10 измененных файлов с 726 добавлено и 1 удалено
  1. 6 0
      config/base.php
  2. 52 1
      doc/apidoc.php
  3. 565 0
      feature/database/info.php
  4. 8 0
      feature/index.php
  5. 38 0
      feature/lib/Info.php
  6. 12 0
      journal/lib/Manage.php
  7. 6 0
      main/src/View.php
  8. 24 0
      push/database/data.php
  9. 11 0
      push/lib/Data.php
  10. 4 0
      push/lib/Manage.php

+ 6 - 0
config/base.php

@@ -25,6 +25,9 @@ $config['base'] = array
 		3 => '直播',
 		4 => '小刊',
 		5 => '小刊音视频留言',
+		6 => '专题',
+		7 => '小程序',
+		//8 => '商品',
 	),
 
 	# 功能类型
@@ -35,6 +38,9 @@ $config['base'] = array
 		3 => 'video/live',
 		4 => 'journal/info',
 		5 => 'journal/content',
+		6 => 'feature/info',
+		7 => 'content/applet',
+		//8 => 'shop/product',
 		11 => 'act/comment',
 		12 => 'act/live_comment',
 	),

+ 52 - 1
doc/apidoc.php

@@ -33,7 +33,7 @@
  * @apiDescription 类型设置说明
  *
  * @apiParam {String} source_type 请在header中定义,ios:ios | android:android | 移动h5:h5  | 小程序:applet | 公众号:service | pc网站:pc
- * @apiParam {Number} type 图文:1 | 视频:2 | 直播:3 | 小刊:4 | 音视频:5 | 链接:10 | 评论: 11
+ * @apiParam {Number} type 图文:1 | 视频:2 | 直播:3 | 小刊:4 | 音视频:5 | 专题:6 | 小程序:7 | 链接:10 | 评论: 11
  * @apiParam {Number} push_ 所有带push_开头的返回参数,返回字典都是一样的,参考获取首页数据中的push_focus
  */
 
@@ -289,6 +289,7 @@
  * @apiSuccess {String}   push_focus.pic 图片
  * @apiSuccess {String}   push_focus.type 类型,参考公共参数中的类型设置说明中的type说明
  * @apiSuccess {String}   push_focus.id 源表id,根据type计算路径,然后把这个id加上就是最终的path,小程序和app同样。如果没有id,则进入type相对应的列表。请做好判断!!
+ * @apiSuccess {String}   push_focus.appid 当type==7时有效,小程序的appid
  * @apiSuccess {String}   push_focus.link 当type==10时有效,链接
  * @apiSuccess {String}   push_focus.cdate 时间
 
@@ -443,6 +444,56 @@
  * @apiSuccess {String}   comment.up 是否点赞 1为点赞 2为未点赞
 
 
+ *
+ * @apiSuccess {Object[]} user_act 用户行为 当用户登录时有效
+ * @apiSuccess {String}   user_act.share 用户分享数 
+ * @apiSuccess {String}   user_act.up 是否喜欢1为喜欢,2为未喜欢
+ */
+
+/**
+ * @api {get} wonderful/main/?l=view.feature 查看专题内容
+ * @apiVersion 1.0.0
+ * @apiName view.feature
+ * @apiGroup Content
+ *
+ * @apiDescription 查看专题内容
+ *
+ * @apiParam {String} signature signature
+ * @apiParam {Number} id 图文id
+ *
+ * @apiSuccess {Object[]} info 专题数据
+ * @apiSuccess {String}   info.id 
+ * @apiSuccess {String}   info.name 名称
+ * @apiSuccess {String}   info.pic_cover 4:3图片
+ * @apiSuccess {String}   info.pic_cover_169 16:9图片
+ * @apiSuccess {String}   info.type 类型,参考公共参数中的类型设置说明中的type说明,根据它生成path
+ * @apiSuccess {String}   info.pdate 时间
+ * @apiSuccess {String}   info.cate_id 栏目ID
+ * @apiSuccess {String}   info.cate_name 栏目名称
+ * @apiSuccess {String}   info.author_id 作者ID
+ * @apiSuccess {String}   info.author_name 作者名称
+ * @apiSuccess {String}   info.num_view 浏览量
+ * @apiSuccess {String}   info.num_up 喜欢量
+ * @apiSuccess {String}   info.num_comment 评论量
+ * @apiSuccess {String}   info.share_yes 是否显示分享按钮 1显示 2不显示
+ * @apiSuccess {String}   info.share_title 分享标题
+ * @apiSuccess {String}   info.share_pic 分享图片
+ * @apiSuccess {String}   info.share_content 分享内容
+ * @apiSuccess {String}   info.function 开启的功能,这是一个字符串,用逗号隔开的,1代表显示浏览量,2代表显示评论,3代表显示喜欢,如值为1,2,则显示浏览量、评论,不显示喜欢
+ * @apiSuccess {String}   info.content 内容
+ * @apiSuccess {String}   info.content_array 数组内容,请使用该字段循环,type为类型,请参考类型设置说明,content为内容,type为1时为图文内容,type为2时content为视频详情的字段,type为3时content为直播详情的字段,当type为5时content为音频地址,name为标题,cover为封面、type为6时是视频地址,name为标题,cover为封面
+ *
+ * @apiSuccess {Object[]} comment 评论列表
+ * @apiSuccess {String}   comment.id 
+ * @apiSuccess {String}   comment.username 用户名
+ * @apiSuccess {String}   comment.avatar 头像
+ * @apiSuccess {String}   comment.content 内容
+ * @apiSuccess {String}   comment.num_up 点赞数
+ * @apiSuccess {String}   comment.time 时间,请用这个时间
+ * @apiSuccess {String}   comment.cdate 时间
+ * @apiSuccess {String}   comment.up 是否点赞 1为点赞 2为未点赞
+
+
  *
  * @apiSuccess {Object[]} user_act 用户行为 当用户登录时有效
  * @apiSuccess {String}   user_act.share 用户分享数 

+ 565 - 0
feature/database/info.php

@@ -0,0 +1,565 @@
+<?php
+
+$audit = Dever::config('base')->audit;
+
+$status = Dever::config('base')->status;
+
+$function = Dever::config('base')->function;
+
+# 每页的数据量
+$page = 15;
+
+$cate = function()
+{
+	$array = array();
+	$info = Dever::db('content/cate')->state();
+	if($info)
+	{
+		$array += $info;
+	}
+	return $array;
+};
+
+$author = function()
+{
+	$array = array();
+	$info = Dever::db('content/author')->state();
+	if($info)
+	{
+		$array += $info;
+	}
+	return $array;
+};
+
+$share = function()
+{
+	$array = array();
+	$info = Dever::db('poster/template')->state();
+	if($info)
+	{
+		$array += $info;
+	}
+	return $array;
+};
+
+$share = array
+(
+	1 => '显示',
+	2 => '不显示',
+);
+
+$wechat = array
+(
+	1 => '否',
+	2 => '是',
+);
+
+# 常用的col
+$col = 'id,cate_id,name,pic_cover,pic_cover_169,pdate,num_add_view+num_view as num_view,num_up+num_add_up as num_up,num_comment,share_yes,share_title,share_pic,share_content,function,content,author_id';
+
+return array
+(
+	# 表名
+	'name' => 'info',
+	# 显示给用户看的名称
+	'lang' => '自定义专题',
+	'order' => 100,
+
+	# 同步更新另外一个或多个表的数据
+	'syncone' => array
+	(
+		'audit/data' => array
+		(
+			# 更新另外一个表的字段 => 本表的字段
+			'where' => array('data_id' => 'id', 'type' => 6),
+			# 要更新的数据
+			'update' => array('data_id' => 'id', 'type' => 6, 'pdate' => 'pdate', 'reorder' => 'reorder', 'name' => 'name', 'audit' => 'audit', 'status' => 'status', 'cate_id' => 'cate_id', 'state' => 'state'),
+		)
+	),
+
+	'end' => array
+	(
+		'insert' => 'tag/lib/core.data?source_table=feature/info',
+		'update' => 'tag/lib/core.data?source_table=feature/info',
+	),
+	# 数据结构
+	'struct' => array
+	(
+		'id' 		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> 'ID',
+			'default' 	=> '',
+			'desc' 		=> '',
+			'match' 	=> 'is_numeric',
+			'list'		=> true,
+		),
+		
+		'name'		=> array
+		(
+			'type' 		=> 'varchar-80',
+			'name' 		=> '标题',
+			'default' 	=> '',
+			'desc' 		=> '标题',
+			'match' 	=> 'is_string',
+			'update'	=> 'text',
+			'list'		=> true,
+			'search'	=> 'fulltext',
+			//增加预览 后续实现
+			'preview'	=> true,
+		),
+		
+		'cate_id'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '所属栏目',
+			'default' 	=> '1',
+			'desc' 		=> '所属栏目',
+			'match' 	=> 'is_numeric',
+			'update'	=> 'select',
+			'option'	=> $cate,
+			'search'	=> 'select',
+		),
+
+		'author_id'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '作者',
+			'default' 	=> '1',
+			'desc' 		=> '作者',
+			'match' 	=> 'is_numeric',
+			'update'	=> 'select',
+			//'option'	=> $author,
+			'search'	=> 'select',
+			'update_search'	=> 'content/lib/author.search',
+		),
+
+		'tag'		=> array
+		(
+			'type' 		=> 'text-255',
+			'name' 		=> '标签',
+			'default' 	=> '',
+			'desc' 		=> '标签',
+			'match' 	=> 'is_numeric',
+			'update'	=> 'selects',
+			//'search'	=> 'fulltext',
+			'update_search'	=> 'tag/lib/core.search',
+		),
+
+  		'pic_cover'		=> array
+		(
+			'type' 		=> 'varchar-150',
+			'name' 		=> '4:3封面图-图片尺寸750*564px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
+			'default' 	=> '',
+			'desc' 		=> '封面图',
+			'match' 	=> 'is_string',
+			'update'	=> 'image',
+			'key' 		=> '1',
+			'place'		=> '150',
+			//直接上传到云端
+			//'upload'	=> 'qiniu',
+			//上传大数据
+			//'large' 	=> true,
+		),
+
+		'pic_cover_169'		=> array
+		(
+			'type' 		=> 'varchar-150',
+			'name' 		=> '16:9封面图-图片尺寸750*422px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
+			'default' 	=> '',
+			'desc' 		=> '封面图',
+			'match' 	=> 'is_string',
+			'update'	=> 'image',
+			'key' 		=> '1',
+			'place'		=> '150',
+			//直接上传到云端
+			//'upload'	=> 'qiniu',
+			//上传大数据
+			//'large' 	=> true,
+		),
+
+		'num_add_view'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '浏览量基数',
+			'default' 	=> '0',
+			'desc' 		=> '浏览量基数',
+			'match' 	=> 'option',
+			'update'	=> 'text',
+		),
+
+		'num_view'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '浏览量pv',
+			'default' 	=> '0',
+			'desc' 		=> '请填写浏览量pv',
+			'match' 	=> 'option',
+			'search'	=> 'order',
+			//'list'		=> '{num_view}+{num_add_view}',
+		),
+
+		'num_add_up'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '喜欢基数',
+			'default' 	=> '0',
+			'desc' 		=> '喜欢基数',
+			'match' 	=> 'option',
+			'update'	=> 'text',
+		),
+		
+		'num_up'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '喜欢数',
+			'default' 	=> '0',
+			'desc' 		=> '请填写喜欢数',
+			'match' 	=> 'option',
+			//'search'	=> 'order',
+			'list'		=> '"喜欢数:{num_up}+{num_add_up}<br />浏览量:{num_view}+{num_add_view}<br />评论数:{num_comment}<br />"',
+			'list_name'	=> '统计数字',
+		),
+
+		'num_comment'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '评论数',
+			'default' 	=> '0',
+			'desc' 		=> '请填写评论数',
+			'search'	=> 'order',
+			'match' 	=> 'option',
+			//'list'		=> true,
+		),
+
+		'state'		=> array
+		(
+			'type' 		=> 'tinyint-1',
+			'name' 		=> '状态',
+			'default' 	=> '1',
+			'desc' 		=> '请选择状态',
+			'match' 	=> 'is_numeric',
+		),
+
+		'admin_founder'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '创建人',
+			'default' 	=> '1',
+			'desc' 		=> '创建人',
+			'match' 	=> 'is_numeric',
+		),
+
+		'admin_editor'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '操作人',
+			'default' 	=> '1',
+			'desc' 		=> '操作人',
+			'match' 	=> 'is_numeric',
+		),
+
+		'pdate'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '发布时间',
+			'match' 	=> array('is_numeric', time()),
+			'default'	=> '',
+			'desc' 		=> '',
+			'update'	=> 'date',
+			'callback'	=> 'maketime',
+			'insert'	=> true,
+			//'list'		=> 'date("Y-m-d H:i:s", {pdate})',
+			'auth'		=> '"{pdate}" > 0',
+		),
+
+		'share'		=> array
+		(
+			'type' 		=> 'text-255',
+			'name' 		=> '分享海报-选择海报库中的海报',
+			'default' 	=> '',
+			'desc' 		=> '分享海报',
+			'match' 	=> 'option',
+			//'update'	=> 'checkbox',
+			'option'	=> $share,
+		),
+
+		'reorder'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '排序(数值越大越靠前)',
+			'default' 	=> '1',
+			'desc' 		=> '请输入排序',
+			'match' 	=> 'option',
+			'update'	=> 'text',
+			'search'	=> 'order',
+			'list'		=> true,
+			'order'		=> 'desc',
+			'edit'		=> true,
+		),
+
+		'udate'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '更新时间',
+			'match' 	=> array('is_numeric', time()),
+			'desc' 		=> '',
+		),
+
+		'function'		=> array
+		(
+			'type' 		=> 'varchar-100',
+			'name' 		=> '功能选择',
+			'default' 	=> '1,2,3',
+			'desc' 		=> '功能选择',
+			'match' 	=> 'option',
+			'update'	=> 'checkbox',
+			'option'	=> $function,
+		),
+
+		'share_yes'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '是否显示分享按钮',
+			'default' 	=> '1',
+			'desc' 		=> '是否显示分享按钮',
+			'match' 	=> 'option',
+			'update'	=> 'radio',
+			'option'	=> $share,
+			'control'	=> 'share_yes',
+		),
+
+		'share_title'		=> array
+		(
+			'type' 		=> 'varchar-100',
+			'name' 		=> '分享标题',
+			'default' 	=> '',
+			'desc' 		=> '分享标题',
+			'match' 	=> 'option',
+			'update'	=> 'text',
+			'show'		=> 'share_yes=1',
+		),
+
+		'share_pic'		=> array
+		(
+			'type' 		=> 'varchar-150',
+			'name' 		=> '分享图片-图片尺寸570*570px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
+			'default' 	=> '',
+			'desc' 		=> '分享图片',
+			'match' 	=> 'is_string',
+			'update'	=> 'image',
+			'key' 		=> '1',
+			'place'		=> '150',
+			'show'		=> 'share_yes=1',
+			//'upload'	=> 'qiniu',
+			//'large' 	=> true,
+		),
+
+		'share_content'		=> array
+		(
+			'type' 		=> 'varchar-200',
+			'name' 		=> '分享内容',
+			'default' 	=> '',
+			'desc' 		=> '分享内容',
+			'match' 	=> 'option',
+			'update'	=> 'textarea',
+			'show'		=> 'share_yes=1',
+		),
+
+		'content'		=> array
+		(
+			'type' 		=> 'text-255',
+			'name' 		=> '内容',
+			'default' 	=> '',
+			'desc' 		=> '请输入内容',
+			'match' 	=> 'is_string',
+			'update'	=> 'editor',
+			'key'		=> '1',
+			//'media'		=> '5',//下面的音视频已经做到了
+			//直接上传到云端
+			//'upload'	=> 'qiniu',
+			//上传大数据
+			//'large' 	=> true,
+			//自定义编辑器右侧按钮
+			'editor'	=> array
+			(
+				'name' => '选择插入模块',
+				'button' => array
+				(
+					array
+					(
+						# 名称
+						'name' => '图片',
+						# 资源库id
+						'key' => 1,
+						# 类型
+						'type' => 'image',
+					),
+					array
+					(
+						'name' => '音频',
+						'key' => 5,
+						'type' => 'media',
+					),
+					array
+					(
+						'name' => '视频',
+						'key' => 'video/lib/core.vod',
+					),
+					array
+					(
+						'name' => '直播',
+						'key' => 'video/lib/core.live',
+					),
+
+					array
+					(
+						'name' => '小程序',
+						'key' => 'content/lib/applet.update',
+						'type' => 'update',
+					),
+				),
+			),
+		),
+
+		'audit'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '审核状态',
+			'default' 	=> '1',
+			'desc' 		=> '审核',
+			'match' 	=> 'is_numeric',
+			//'update'	=> 'select',
+			'option'	=> $audit,
+			'search'	=> 'select',
+			'list'		=> true,
+			'edit'		=> true,
+		),
+
+		'status'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '发布状态',
+			'default' 	=> '1',
+			'desc' 		=> '发布状态',
+			'match' 	=> 'is_numeric',
+			//'update'	=> 'select',
+			'option'	=> $status,
+			'search'	=> 'select',
+			'list'		=> true,
+			'edit'		=> true,
+		),
+
+		'cdate'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '录入时间',
+			'match' 	=> array('is_numeric', time()),
+			'desc' 		=> '',
+			# 只有insert时才生效
+			'insert'	=> true,
+		),
+	),
+
+	# 索引
+	'index' => array
+	(
+		'version' => 1,
+		
+		1 => array
+		(
+			'i1' => 'uid,cate_id',
+		)
+	),
+	
+	# 管理功能
+	'manage' => array
+	(
+		//'insert' => false,
+		# 列表
+		'list_button' => array
+		(
+			'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=6'))),
+		),
+	),
+
+	# request 请求接口定义
+	'request' => array
+	(
+		'search' => array
+		(
+			# 匹配的正则或函数 选填项
+			'option' => array
+			(
+				'ids' => array('yes-id', 'in'),
+				'cate_id' => 'yes',
+				'name' => array('yes', 'like'),
+				'id' => 'yes',
+				'state' => 1,
+			),
+			'type' => 'all',
+			'order' => array('reorder' => 'desc', 'id' => 'desc'),
+			'limit' => '0,1000',
+			'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
+		),
+
+		'getAll' => array
+		(
+			# 匹配的正则或函数 选填项
+			'option' => array
+			(
+				'cate_id' => 'yes',
+				'cate_ids' => array('yes-cate_id', 'in'),
+				'id' => 'yes',
+				'state' => 1,
+			),
+			'type' => 'all',
+			'order' => array('reorder' => 'desc','id' => 'desc'),
+			'page' => array($page, 'list'),
+			'col' => $col,
+		),
+
+		'getRelation' => array
+		(
+			# 匹配的正则或函数 选填项
+			'option' => array
+			(
+				'cate_id' => 'yes',
+				'cate_ids' => array('yes-cate_id', 'in'),
+				'noid' => array('yes-id', '!='),
+				'audit' => 2,
+				'status' => 2,
+				'state' => 1,
+			),
+			'type' => 'all',
+			'order' => array('reorder' => 'desc','id' => 'desc'),
+			'limit' => '0,4',
+			'col' => $col,
+		),
+
+		'getOne' => array
+		(
+			# 匹配的正则或函数 选填项
+			'where' => array
+			(
+				'id' => 'yes',
+			),
+			'type' => 'one',
+			'col' => $col,
+		),
+		
+		# 更新浏览量
+		'addView' => array
+		(
+			'type' => 'update',
+			'where' => array
+			(
+				'id' => 'yes',
+			),
+			'set' => array
+			(
+				'num_view' => array('1', '+='),
+			),
+		),
+	),
+);

+ 8 - 0
feature/index.php

@@ -0,0 +1,8 @@
+<?php
+
+define('DEVER_APP_NAME', 'feature');
+define('DEVER_APP_LANG', '专题管理');
+define('DEVER_APP_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR);
+define('DEVER_MANAGE_ORDER', 190);
+define('DEVER_MANAGE_ICON', 'glyphicon glyphicon-tower layui-icon-template-1');
+include(DEVER_APP_PATH . '../boot.php');

+ 38 - 0
feature/lib/Info.php

@@ -0,0 +1,38 @@
+<?php
+
+namespace Content\Lib;
+
+use Dever;
+
+class Info
+{
+    # 根据文章id 获取文章信息
+    public function get($data)
+    {
+        if (!is_array($data)) {
+            $data = Dever::db('feature/info')->getOne($data);
+        }
+        
+        if (!$data) {
+            Dever::alert('错误的专题信息');
+        }
+    
+        $data = Dever::load('content/lib/article')->getContent($data);
+
+        return $data;
+    }
+
+    # 获取相关推荐
+    public function getRelation($info)
+    {
+        $where['noid'] = $info['id'];
+        $where['cate_id'] = $info['cate_id'];
+        return Dever::db('feature/info')->getRelation($where);
+    }
+
+    # 增加浏览量
+    public function addView($id)
+    {
+        Dever::db('feature/info')->addView($id);
+    }
+}

+ 12 - 0
journal/lib/Manage.php

@@ -125,6 +125,18 @@ class Manage
         return $this->search('journal/info');
     }
 
+    # 搜索专题
+    public function search_feature_api()
+    {
+        return $this->search('feature/info');
+    }
+
+    # 搜索小程序
+    public function search_applet_api()
+    {
+        return $this->search('content/applet');
+    }
+
     # 显示杂志内页
     public function journalContent()
     {

+ 6 - 0
main/src/View.php

@@ -129,4 +129,10 @@ class View extends Core
     {
     	return $this->get('video/lib/live', '直播', 3, 'live');
     }
+
+    # 获取专题详情
+    public function feature()
+    {
+        return $this->get('feature/lib/info', '专题', 6, 'feature');
+    }
 }

+ 24 - 0
push/database/data.php

@@ -165,6 +165,30 @@ return array
             'update_search' => 'journal/lib/manage.search_journal',
         ),
 
+        'feature_id'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '关联专题-如不选择,则点击进入专题列表',
+            'default'   => '',
+            'desc'      => '关联专题',
+            'match'     => 'option',
+            'update'    => 'select',
+            'show'      => 'type=6',
+            'update_search' => 'journal/lib/manage.search_feature',
+        ),
+
+        'applet_id'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '关联小程序',
+            'default'   => '',
+            'desc'      => '关联小程序',
+            'match'     => 'option',
+            'update'    => 'select',
+            'show'      => 'type=7',
+            'update_search' => 'journal/lib/manage.search_applet',
+        ),
+
         'olink'      => array
         (
             'type'      => 'varchar-400',

+ 11 - 0
push/lib/Data.php

@@ -67,12 +67,18 @@ class Data
                 $id = $info['live_id'];
             } elseif ($info['type'] == 4) {
                 $id = $info['journal_id'];
+            } elseif ($info['type'] == 6) {
+                $id = $info['feature_id'];
+            } elseif ($info['type'] == 7) {
+                $id = $info['applet_id'];
             }
 
             unset($info['article_id']);
             unset($info['vod_id']);
             unset($info['live_id']);
             unset($info['journal_id']);
+            unset($info['feature_id']);
+            unset($info['applet_id']);
             if ($id > 0) {
                 $info['id'] = $id;
                 $data = Dever::db($table)->one($id);
@@ -80,6 +86,9 @@ class Data
                     if (isset($data['name']) && $data['name'] && !$info['name']) {
                         $info['name'] = $data['name'];
                     }
+                    if (isset($data['appid']) && $data['appid'] && !$info['appid']) {
+                        $info['appid'] = $data['appid'];
+                    }
                     if (isset($data['pic_cover']) && $data['pic_cover'] && !$info['pic']) {
                         $info['pic'] = $data['pic_cover'];
                     }
@@ -115,6 +124,8 @@ class Data
             unset($info['vod_id']);
             unset($info['live_id']);
             unset($info['journal_id']);
+            unset($info['feature_id']);
+            unset($info['applet_id']);
         }
 
         if ($info['link']) {

+ 4 - 0
push/lib/Manage.php

@@ -25,6 +25,10 @@ class Manage
                 $data = Dever::db($table)->one($info['live_id']);
             } elseif ($info['type'] == 4) {
                 $data = Dever::db($table)->one($info['journal_id']);
+            } elseif ($info['type'] == 6) {
+                $data = Dever::db($table)->one($info['feature_id']);
+            } elseif ($info['type'] == 7) {
+                $data = Dever::db($table)->one($info['applet_id']);
             }
 
             if (isset($data) && $data && isset($data['name'])) {