资源简介
概述
本平台主要功能是针对微信商家公众号提供与众不同的、有针对性的营销推广服务。通过沐雪微信平台,用户可以轻松管理自己的微信各类信息,对微信公众账号进行维护、开展智能机器人、在线发优惠劵、抽奖、刮奖、派发会员卡、打造微官网、开启微团购等多种活动,对微信营销实现有效监控,极大扩展潜在客户群和实现企业的运营目标。沐雪微信平台很好的弥补了微信公众平台本身功能不足、针对性不强、交互不便利的问题,为商家公众账号提供更为贴心的、且是核心需求的功能和服务。在线优惠劵、转盘抽奖、微信会员卡等推广服务更是让微信成为商家推广的利器。智能客服的可调教功能让用户真正从微信繁琐的日常客服工作中解脱出来,真正成为商家便利的新营销渠道。
二、源码特点
1、微信公众平台开发,对于公众平台所有功能进行完整开发。
2、多用户:可同时进行多公众号的管理和配置。
3、直接性:购买者可直接购买细微修改即是成品的平台商品。
4、开发语言:asp.net,C# ,webform,数据库sqlserver 2005
三、功能介绍
1、菜单回复:关注时回复、默认回复、文本回复、图文回复、语音回复、请求回复、LBS回复。
2、自定义菜单:公众号自定义菜单设置
3、用户列表管理:获取关注公众号的账户信息进行管理
4、微官网:各种微官网模板可自行配置,头部幻灯片,底部,分类模块配置,内容配置
5、微商城:商城模板配置、产品分类管理、商品信息管理、商品录入、客户资源管理、订单管 理、物流配送方式设置
6、支付方式:微信支付,货到付款。
7、微汽车[大模块]、微酒店、点餐系统
8、微会员卡:会员卡商家、会员卡商城、会员卡头部广告设计
9、用户管理:微信用户管理、系统角色管理、系统操作日志
10、后台菜单:后台导航菜单管理
11、系统设置:网站基本信息设置、功能权限设置、短信平台设置、邮件发送设置、文件上传设 置
12、代理商管理:代理商发展下线。
四、环境要求
开发环境:
操作系统:windows7,8
软件:vs2012+sqlserver2005
发布环境:
操作系统:windows server 2003,2008
软件:.netframework4.0,iis6+,sqlserver 2005
后续会更新vs2017+sql2012 ,新功能的开发
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MxWeiXinPF.Common;
using System.Text;
namespace MxWeiXinPF.Web.shop
{
///
/// shopmgr 的摘要说明
///
public class shopmgr : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = “text/json“;
BLL.wx_shop_cart cartBll = new BLL.wx_shop_cart();
string _action = MyCommFun.QueryString(“myact“);
string openid = MyCommFun.RequestOpenid(); //得到微信用户的openid
Dictionary jsonDict = new Dictionary();
if (_action == “addCart“)
{
#region 添加购物车
try
{
int wid = MyCommFun.RequestInt(“wid“);
int productId = MyCommFun.RequestInt(“productid“);
int skuId = MyCommFun.RequestInt(“mid“);
string skuInfo = MyCommFun.QueryString(“attr“);
int productNum = MyCommFun.RequestInt(“bc“);
decimal totalPrice = (decimal)MyCommFun.RequestFloat(“totprice“ 0);
Model.wx_shop_cart cart = new Model.wx_shop_cart();
IList cartList = cartBll.GetModelList(“productId=“ + productId + “ and openid=‘“ + openid + “‘ and skuId=“+skuId);
bool isAdd = true;
if (cartList != null && cartList.Count > 0)
{
isAdd = false;
cart = cartList[0];
}
if (isAdd)
{
cart.createDate = DateTime.Now;
cart.openid = openid;
cart.productId = productId;
cart.productNum = productNum;
cart.skuId = skuId;
cart.skuInfo = skuInfo;
cart.totPrice = totalPrice * productNum;
cart.wid = wid;
int ret = cartBll.Add(cart);
if (ret > 0)
{
jsonDict.Add(“errCode“ “false“);
}
else
{
jsonDict.Add(“errCode“ “true“);
}
}
else
{
cart.openid = openid;
cart.productNum += productNum;
cart.skuId = skuId;
cart.skuInfo = skuInfo;
cart.totPrice += totalPrice * productNum;
cart.wid = wid;
bool ret = cartBll.Update(cart);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-06-14 21:52 weixin\
目录 0 2018-06-14 21:52 weixin\.vs\
目录 0 2018-06-14 21:52 weixin\.vs\MxWeiXinPF\
目录 0 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\
文件 339968 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\.suo
目录 0 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\Server\
目录 0 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\Server\sqlite3\
文件 0 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\Server\sqlite3\db.lock
文件 1822720 2018-06-14 21:53 weixin\.vs\MxWeiXinPF\v15\Server\sqlite3\storage.ide
目录 0 2018-06-14 21:52 weixin\.vs\config\
文件 85136 2017-12-06 21:36 weixin\.vs\config\applicationhost.config
目录 0 2015-02-26 12:22 weixin\Data\
文件 13500416 2015-02-27 13:26 weixin\Data\mxweixin.mdf
文件 1048576 2015-02-27 13:26 weixin\Data\mxweixin_log.ldf
文件 95 2015-02-26 12:47 weixin\Desktop.ini
目录 0 2015-02-26 12:23 weixin\MxWeiXinPF.API\
文件 5550 2015-01-09 21:01 weixin\MxWeiXinPF.API\MxWeiXinPF.API.csproj
文件 227 2014-05-26 19:07 weixin\MxWeiXinPF.API\MxWeiXinPF.API.csproj.user
文件 280 2014-08-11 20:28 weixin\MxWeiXinPF.API\MxWeiXinPF.API.csproj.vspscc
目录 0 2015-02-26 12:23 weixin\MxWeiXinPF.API\OAuth\
文件 2239 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\feixin_helper.cs
文件 2593 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\kaixin_helper.cs
文件 1307 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\oauth_config.cs
文件 1212 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\oauth_helper.cs
文件 5026 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\qq_helper.cs
文件 3740 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\renren_helper.cs
文件 3478 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\sina_helper.cs
文件 2378 2014-05-04 13:40 weixin\MxWeiXinPF.API\OAuth\taobao_helper.cs
文件 338 2014-08-11 20:28 weixin\MxWeiXinPF.API\OAuth\vssver2.scc
目录 0 2015-02-26 12:23 weixin\MxWeiXinPF.API\Payment\
目录 0 2015-02-26 12:23 weixin\MxWeiXinPF.API\Payment\Alipay\
............此处省略6974个文件信息
- 上一篇:在线报修系统
- 下一篇:基于ASP.NET零食销售网站源码
相关资源
- 基于ASP.NET零食销售网站源码
- WinForm C#Demo 会员与消费系统 进销存系
- C#潮流计算和Visio二次开发画电气接线
- 机器学习模型搭建实验数据Adult.data
- C#写的扑克牌
- 基于RFID的学生门禁系统C#、mysql、RF
- C#语言Windows程序设计第二版_实验源码
- c# 模仿windows扑克游戏
- C#多边形交并差-可视化操作
- C# 证书操作数字签名
- C# SFTP文件上传和,有进度条,增加多
- C#截图截屏源代码及使用仿QQ截图
- VS 2008 C#读写excel文件
- Unity通过TCP接收服务端数据
- C#界面美化 (最好用的免费的第三方
- C#美化ComboBox的源码,为下拉列表框着
- .net C#代码生成器
- .net C# Cron表达式解析.
- .Net和C#常用类库100多个
- .NET分布式编程-C#版
- .NET(c#)Web生成二维码
- .NET C# 封装微信API操作类源码
- ODP.NET_Managed_ODAC122cR1
- (原创)C#控制台扫雷小游戏源码
- 年会抽奖小程序c#源代码 亲测可用
- C#源码让windows系统待机休眠
- Protogen编译protobuf demotools.rar
- c#NPOI-POI
- OGC WMSWeb Map Service网络地图
- C#验证码绘制源码
评论
共有 条评论