内容目录
一、详细介绍
全新流量广告变现系统源码 任务管理系统 开源
项目结构:
接口管理:PHP + Mysql
后台管理系统:Vue3 + ts + TDesign
任务单页:Vue3
小程序:uniapp + Vue2
变现说明:
基础流程:
后台创建任务
复制任务链接
分享到社群或私域
用户打开任务页面
跳转到小程序观看广告
观看广告
下发奖励:
收入来源
官方流量主广告收入
其他收入
二、效果展示
1.部分代码
代码如下(示例):
php
if ($weekViewList[$key]['did'] > 0) {
$weekViewList[$key]['view_rate'] = round($weekViewList[$key]['view'] / $weekViewList[$key]['did'] * 100, 1) . '%';
} else {
$weekViewList[$key]['view_rate'] = '0.0%';
}
if ($weekViewList[$key]['view'] > 0) {
$weekViewList[$key]['click_rate'] = round($weekViewList[$key]['click'] / $weekViewList[$key]['view'] * 100, 1) . '%';
} else {
$weekViewList[$key]['click_rate'] = '0.0%';
}
}
// 返回结果
$result = [
'code' => 200,
'msg' => '查询成功',
'data' => [
'task' => [$usingTaskTotal, $disabledTaskTotal],
'xcx' => [$usingXcxTotal, $disabledXcxTotal],
'domain' => [$usingDomainTotal, $disabledDomainTotal],
'ad_view' => [$allViewTotal, $todayViewTotal],
'today' => $todayDataList,
'all_view' => [$allDidTotal, $allViewTotal, $allClickTotal],
'week' => $weekViewList
]
];
echo json_encode($result);
2.效果图展示