简单说一下它的功能吧:
抖音私信卡片,解决了客户封号严重、引流效率低的痛点,所以从去年到现在,依然是热销品。
"抖音快手私信名片链接跳转"是2022年抖音快手引流最新技术,可以生成卡片链接,支持标题、描述、logo以及跳转落地页的完全自定义配置.
支持微信公众号和微信号复制唤起微信客户端app添加,同时也支持任意链接落地页跳转
提高粉丝引流转化率,关注转化率,引流转化率,安全绿色
私信卡片功能
1、跳转微信
用户点击卡片,自动跳转微信界面,显示好友和群聊二维码
2、跳转链接
用户点击卡片,自动跳转到指定链接,支持任意链接。
3、跳转小程序
用户点击卡片,自动跳转到小程序,支持任意路径。
效果:
主要代码展示:
<?php
namespace app\cx_dyfx\controller;
use think\facade\Db;
use think\facade\Request;
use think\facade\View;
use vitphp\admin\controller\BaseController;
/**
* @title 链接管理
*/
class Url extends BaseController
{
/**
* @title 链接列表
*/
public function index(){
$pid = input('pid');
$pageNum = 20;
$url = Db::name('cx_dyfx_url')->where('pid', $pid)->order('id desc')->paginate($pageNum);
$hdurl = Request::domain() .'/cx_dyfx/index/';
View::assign([
'url'=>$url,
'page'=>$url->render(),
'hdurl'=>$hdurl
]);
return View::fetch();
}
/**
* @title 编辑链接
*/
public function edit(){
$pid = input('pid');
$id = input('id');
$url = Db::name('cx_dyfx_url')->where(['pid'=>$pid,'id'=>$id])->find();
if($url){
$url['expire_time'] = $url['expire_time'] ? date("Y-m-d H:i:s", $url['expire_time']) : '';
}
//判断是否post提交
if(request()->isPost()){
$param = [
'name'=>input('name'),
'url'=>input('url'),
'title'=>input('title'),
'miaoshu'=>input('miaoshu'),
'img'=>input('img'),
'appid'=>input('appid'),
'appsecret'=>input('appsecret'),
'path'=>input('