91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 76.2MB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發布日期: 2023-12-31
  • 語言: C#
  • 標簽: 微信開發??

資源簡介

概述 本平臺主要功能是針對微信商家公眾號提供與眾不同的、有針對性的營銷推廣服務。通過沐雪微信平臺,用戶可以輕松管理自己的微信各類信息,對微信公眾賬號進行維護、開展智能機器人、在線發優惠劵、抽獎、刮獎、派發會員卡、打造微官網、開啟微團購等多種活動,對微信營銷實現有效監控,極大擴展潛在客戶群和實現企業的運營目標。沐雪微信平臺很好的彌補了微信公眾平臺本身功能不足、針對性不強、交互不便利的問題,為商家公眾賬號提供更為貼心的、且是核心需求的功能和服務。在線優惠劵、轉盤抽獎、微信會員卡等推廣服務更是讓微信成為商家推廣的利器。智能客服的可調教功能讓用戶真正從微信繁瑣的日??头ぷ髦薪饷摮鰜恚嬲蔀樯碳冶憷男聽I銷渠道。 二、源碼特點 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個文件信息

評論

共有 條評論