欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

WeMall微信商城源码插件会员卡代码详情

程序员文章站 2022-03-24 18:49:21
...
WeMall微信商城源码插件会员卡代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考
WeMall微信商城源码插件会员卡代码是用于商业推广的比较有效的方式,分享了部分比较重要的代码,供技术员学习参考

Index_index.html


会员卡
content="width=device-width,height=device-height,inital-scale=1.0,maximum-scale=1.0,user-scalable=no;">








WeMall微信商城源码插件会员卡代码详情

VIP会员卡




会员姓名{$user.username}

会员卡号
{$user.id}



使用时向服务员出示此卡






Config_index.html


会员卡设置











会员卡设置










value="{$config.notify_url}"
type="text">






value="{$config.address}"
type="text">







type="text">







type="text">







type="text">













IndexController.class.php namespace Addons\Card\Controller;

class IndexController extends InitController
{
public function index()
{
$user = R("App/Public/oauthLogin");
$this->assign("user", $user);

$config = M("AddonCardConfig")->find();
$this->assign("config", $config);
$this->display('', false);
}
}
代码来源: www.wemallshop.com
WeMall微信商城源码插件会员卡代码详情