目前實(shí)現(xiàn)了支付寶當(dāng)面付的掃碼支付功能、二維碼支付功能,即主動(dòng)掃和被動(dòng)掃。測(cè)試請(qǐng)使用支付寶沙箱環(huán)境,支付寶是沙箱版。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比靖安網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式靖安網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋靖安地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。
最終效果如下:
前端頁(yè)面使用阿里的組件,ant-design-vue
通過(guò)node,使用nedb內(nèi)存數(shù)據(jù)庫(kù)進(jìn)行本地?cái)?shù)據(jù)存儲(chǔ)
安裝文件支持自定義。生成的exe,安裝過(guò)程如下
程序代碼簡(jiǎn)述
main.js
import devtools from '@vue/devtools' import Vue from 'vue' import axios from 'axios' import App from './App' import router from './router' import store from './store' import db from './nedb'//訂單表 import Antd from 'ant-design-vue' import 'ant-design-vue/dist/antd.css' import alipayhelper from './alipayhelper' import moment from 'moment'//導(dǎo)入文件 Vue.prototype.$moment = moment;//賦值使用 Vue.prototype.$db = db Vue.prototype.alipayhelper = alipayhelper; Vue.use(Antd) if (!process.env.IS_WEB) Vue.use(require('vue-electron')) Vue.http = Vue.prototype.$http = axios Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ components: { App }, router, store, template: '' }).$mount('#app')
alipayhelper.js 里存儲(chǔ)的支付寶收款方的APPID,pem路徑下應(yīng)用私鑰。這些信息可以通過(guò)阿里官方申請(qǐng),即可以在線收款
const path = require('path'); const fs = require('fs'); const moment = require('moment'); const crypto = require('crypto'); const electron = require('electron'); const dataPath = (electron.app || electron.remote.app).getPath('userData'); const home = (electron.app || electron.remote.app).getPath('home'); const appData = (electron.app || electron.remote.app).getPath('appData'); let ALI_PAY_SETTINGS = { APP_ID: '2016100100638328', APP_GATEWAY_URL: 'http://localhost',//用于接收支付寶異步通知 AUTH_REDIRECT_URL: 'xxxxxxx',//第三方授權(quán)或用戶信息授權(quán)后回調(diào)地址。授權(quán)鏈接中配置的redirect_uri的值必須與此值保持一致。 //__dirname 獲取當(dāng)前目錄,無(wú)法在生產(chǎn)模式assr 獲取到路徑 /* APP_PRIVATE_KEY_PATH: path.join(__dirname, 'pem', 'rsa_private_key.pem'),//應(yīng)用私鑰 APP_PUBLIC_KEY_PATH: path.join(__dirname, 'pem', 'rsa_public_key.pem'),//應(yīng)用公鑰 ALI_PUBLIC_KEY_PATH: path.join(__dirname, 'pem','ali_rsa_public_key.pem'),//阿里公鑰*/ APP_PRIVATE_KEY_PATH: path.join(__static, '/pem/rsa_private_key.pem'),//應(yīng)用私鑰 APP_PUBLIC_KEY_PATH: path.join(__static, '/pem/rsa_public_key.pem'),//應(yīng)用公鑰 ALI_PUBLIC_KEY_PATH: path.join(__static, '/pem/ali_rsa_public_key.pem'),//阿里公鑰 AES_PATH: path.join(__dirname, 'pem', 'remind', 'sandbox', 'aes.txt'),//aes加密(暫未使用) ALI_GATEWAY_URL: 'https://openapi.alipaydev.com/gateway.do?',//用于接收支付寶異步通知 };
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。