├── .gitignore ├── Nop.Plugin.Payments.Weixin ├── Controllers │ └── PaymentWeixinController.cs ├── DependencyRegistrar.cs ├── Description.txt ├── Models │ ├── ConfigurationModel.cs │ ├── PaymentInfoModel.cs │ ├── PrepayInfoModel.cs │ └── WxData.cs ├── Nop.Plugin.Payments.Weixin.csproj ├── Notes.txt ├── Properties │ └── AssemblyInfo.cs ├── RouteProvider.cs ├── Scripts │ └── qrcode.min.js ├── Services │ └── WeixinService.cs ├── Utils.cs ├── Validatiors │ └── ConfigurationValidator.cs ├── Views │ └── PaymentWeixin │ │ ├── Configure.cshtml │ │ ├── JsapiPrepay.cshtml │ │ ├── NativePayment.cshtml │ │ └── PaymentInfo.cshtml ├── WeixinPaymentProcessor.cs ├── WeixinPaymentSetting.cs ├── app.config ├── logo.jpg ├── packages.config └── web.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/.gitignore -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Controllers/PaymentWeixinController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Controllers/PaymentWeixinController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Description.txt -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Models/ConfigurationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Models/ConfigurationModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Models/PaymentInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Models/PaymentInfoModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Models/PrepayInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Models/PrepayInfoModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Models/WxData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Models/WxData.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Nop.Plugin.Payments.Weixin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Nop.Plugin.Payments.Weixin.csproj -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Notes.txt -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/RouteProvider.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Scripts/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Scripts/qrcode.min.js -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Services/WeixinService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Services/WeixinService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Utils.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Validatiors/ConfigurationValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Validatiors/ConfigurationValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/Configure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/Configure.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/JsapiPrepay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/JsapiPrepay.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/NativePayment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/NativePayment.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/PaymentInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/Views/PaymentWeixin/PaymentInfo.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/WeixinPaymentProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/WeixinPaymentProcessor.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/WeixinPaymentSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/WeixinPaymentSetting.cs -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/app.config -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/logo.jpg -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/packages.config -------------------------------------------------------------------------------- /Nop.Plugin.Payments.Weixin/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrev/NopPaymentWeixin/HEAD/Nop.Plugin.Payments.Weixin/web.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nop-Commerce 的微信支付插件 2 | 3 | 4 | 授权方式:MIT 5 | 6 | 版权所有 (C) 2017-TODAY 云南伴星科技有限公司 7 | --------------------------------------------------------------------------------