mall + pay:

1. 简化微信支付的配置界面
This commit is contained in:
YunaiV 2023-07-21 21:50:05 +08:00
parent 29d61beb11
commit f92a5899f3
5 changed files with 318 additions and 451 deletions

View File

@ -180,14 +180,6 @@ export const PayDisplayModeEnum = {
} }
} }
/**
* 支付类型枚举
*/
export const PayType = {
WECHAT: "WECHAT",
ALIPAY: "ALIPAY"
}
/** /**
* 支付订单状态枚举 * 支付订单状态枚举
*/ */

View File

@ -172,7 +172,7 @@ export default {
this.formData = response.data; this.formData = response.data;
this.formData.config = JSON.parse(response.data.config); this.formData.config = JSON.parse(response.data.config);
} }
this.title = this.formData.id ? '创建支付渠道' : '编辑支付渠道' this.title = !this.formData.id ? '创建支付渠道' : '编辑支付渠道'
}).finally(() => { }).finally(() => {
this.formLoading = false; this.formLoading = false;
}); });
@ -257,12 +257,7 @@ export default {
this.formData.config.rootCertContent = e.target.result this.formData.config.rootCertContent = e.target.result
} }
readFile.readAsText(event.file); readFile.readAsText(event.file);
}, }
} }
} }
</script> </script>
<style scoped>
</style>

View File

@ -1,328 +0,0 @@
<template>
<div>
<el-dialog :visible.sync="transferParam.wechatOpen" :title="title" @close="close" append-to-body width="800px">
<el-form ref="wechatJsApiForm" :model="form" :rules="rules" size="medium" label-width="120px"
v-loading="transferParam.loading">
<el-form-item label-width="180px" label="渠道费率" prop="feeRate">
<el-input v-model="form.feeRate" placeholder="请输入渠道费率" clearable :style="{width: '100%'}">
<template slot="append">%</template>
</el-input>
</el-form-item>
<el-form-item label-width="180px" label="公众号 APPID" prop="weChatConfig.appId">
<el-input v-model="form.weChatConfig.appId" placeholder="请输入公众号 APPID" clearable :style="{width: '100%'}">
</el-input>
</el-form-item>
<el-form-item label-width="180px" label="商户号" prop="weChatConfig.mchId">
<el-input v-model="form.weChatConfig.mchId" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="渠道状态" prop="status">
<el-radio-group v-model="form.status" size="medium">
<el-radio v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="parseInt(dict.value)">
{{ dict.label }}
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label-width="180px" label="API 版本" prop="weChatConfig.apiVersion">
<el-radio-group v-model="form.weChatConfig.apiVersion" size="medium">
<el-radio v-for="dict in versionDictDatas" :key="dict.value" :label="dict.value">
{{ dict.label }}
</el-radio>
</el-radio-group>
</el-form-item>
<div v-if="form.weChatConfig.apiVersion === 'v2'">
<el-form-item label-width="180px" label="商户密钥" prop="weChatConfig.mchKey">
<el-input v-model="form.weChatConfig.mchKey" placeholder="请输入商户密钥" clearable
:style="{width: '100%'}" type="textarea" :autosize="{minRows: 8, maxRows: 8}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_cert.p12 证书" prop="weChatConfig.keyContent">
<el-input v-model="form.weChatConfig.keyContent" type="textarea"
placeholder="请上传 apiclient_cert.p12 证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="">
<el-upload :limit="1" accept=".p12" action=""
:before-upload="p12FileBeforeUpload"
:http-request="keyContentUpload">
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
</div>
<div v-if="form.weChatConfig.apiVersion === 'v3'">
<el-form-item label-width="180px" label="API V3 密钥" prop="weChatConfig.apiV3Key">
<el-input v-model="form.weChatConfig.apiV3Key" placeholder="请输入 API V3 密钥" clearable
:style="{width: '100%'}" type="textarea" :autosize="{minRows: 8, maxRows: 8}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_key.perm 证书" prop="weChatConfig.privateKeyContent">
<el-input v-model="form.weChatConfig.privateKeyContent" type="textarea"
placeholder="请上传 apiclient_key.perm 证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="" prop="privateKeyContentFile">
<el-upload ref="privateKeyContentFile"
:limit="1"
accept=".pem"
action=""
:before-upload="pemFileBeforeUpload"
:http-request="privateKeyContentUpload"
>
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_cert.perm证书" prop="weChatConfig.privateCertContent">
<el-input v-model="form.weChatConfig.privateCertContent" type="textarea"
placeholder="请上传apiclient_cert.perm证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="" prop="privateCertContentFile">
<el-upload ref="privateCertContentFile"
:limit="1"
accept=".pem"
action=""
:before-upload="pemFileBeforeUpload"
:http-request="privateCertContentUpload"
>
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
</div>
<el-form-item label-width="180px" label="备注" prop="remark">
<el-input v-model="form.remark" :style="{width: '100%'}" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="close">取消</el-button>
<el-button type="primary" @click="handleConfirm">确定</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
import {createChannel, getChannel, updateChannel} from "@/api/pay/channel";
const defaultForm = {
code: '',
status: null,
remark: '',
feeRate: null,
appId: '',
weChatConfig: {
appId: '',
mchId: '',
apiVersion: '',
mchKey: '',
keyContent: '',
privateKeyContent: '',
privateCertContent: '',
apiV3Key:'',
}
}
export default {
name: "wechatChannelForm",
components: {},
props: {
//
transferParam: {
//
"loading": false,
//
"edit": false,
//
"wechatOpen": false,
// ID
"appId": null,
//
"payCode": null,
}
},
data() {
return {
title:'',
form: JSON.parse(JSON.stringify(defaultForm)),
rules: {
feeRate: [{
required: true,
message: '请输入渠道费率',
trigger: 'blur'
}],
'weChatConfig.mchId': [{
required: true,
message: '请传入商户号',
trigger: 'blur'
}],
'weChatConfig.appId': [{
required: true,
message: '请输入公众号APPID',
trigger: 'blur'
}],
status: [{
required: true,
message: '渠道状态不能为空',
trigger: 'blur'
}],
'weChatConfig.apiVersion': [{
required: true,
message: 'API版本不能为空',
trigger: 'blur'
}],
'weChatConfig.mchKey': [{
required: true,
message: '请输入商户密钥',
trigger: 'blur'
}],
'weChatConfig.keyContent': [{
required: true,
message: '请上传 apiclient_cert.p12 证书',
trigger: 'blur'
}],
'weChatConfig.privateKeyContent': [{
required: true,
message: '请上传 apiclient_key.perm 证书',
trigger: 'blur'
}],
'weChatConfig.privateCertContent': [{
required: true,
message: '请上传 apiclient_cert.perm证 书',
trigger: 'blur'
}],
'weChatConfig.apiV3Key': [{
required: true,
message: '请上传 api V3 密钥值',
trigger: 'blur'
}],
},
//
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
versionDictDatas: getDictDatas(DICT_TYPE.PAY_CHANNEL_WECHAT_VERSION),
}
},
watch: {
transferParam: {
deep: true, //
handler(newVal) {
if (newVal.wechatOpen) {
this.form.code = newVal.payCode;
this.form.appId = newVal.appId;
//
if (newVal.edit && newVal.loading) {
this.title = "编辑支付渠道";
this.init();
} else {
this.title = "创建支付渠道";
}
}
}
}
},
methods: {
init() {
getChannel(this.transferParam.appId, this.transferParam.payCode)
.then(response => {
this.form.id = response.data.id;
this.form.feeRate = response.data.feeRate;
this.form.appId = response.data.appId;
this.form.status = response.data.status;
this.form.remark = response.data.remark;
let config = JSON.parse(response.data.config);
this.form.weChatConfig.appId = config.appId;
this.form.weChatConfig.apiVersion = config.apiVersion;
this.form.weChatConfig.mchId = config.mchId;
this.form.weChatConfig.mchKey = config.mchKey;
this.form.weChatConfig.keyContent = config.keyContent;
this.form.weChatConfig.privateKeyContent = config.privateKeyContent;
this.form.weChatConfig.privateCertContent = config.privateCertContent;
this.form.weChatConfig.apiV3Key = config.apiV3Key;
this.transferParam.loading = false;
})
},
close() {
this.transferParam.wechatOpen = false;
this.form = JSON.parse(JSON.stringify(defaultForm));
},
handleConfirm() {
this.$refs['wechatJsApiForm'].validate(valid => {
if (!valid) {
return
}
let data = this.form;
data.config = JSON.stringify(this.form.weChatConfig);
if (this.transferParam.edit) {
updateChannel(data).then(response => {
if (response.code === 0) {
this.$modal.msgSuccess("修改成功");
this.close();
}
})
} else {
createChannel(data).then(response => {
if (response.code === 0) {
this.$modal.msgSuccess("新增成功");
this.$parent.refreshTable();
this.close();
}
});
}
});
},
/**
* apiclient_cert.p12apiclient_cert.pemapiclient_key.pem 上传前的校验
*/
fileBeforeUpload(file, fileAccept) {
let format = '.' + file.name.split(".")[1];
if (format !== fileAccept) {
debugger
this.$message.error('请上传指定格式"' + fileAccept + '"文件');
return false;
}
let isRightSize = file.size / 1024 / 1024 < 2
if (!isRightSize) {
this.$message.error('文件大小超过 2MB')
}
return isRightSize
},
p12FileBeforeUpload(file) {
this.fileBeforeUpload(file, '.p12')
},
pemFileBeforeUpload(file) {
this.fileBeforeUpload(file, '.pem')
},
/**
* 读取 apiclient_key.pem privateKeyContent 字段
*/
privateKeyContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.form.weChatConfig.privateKeyContent = e.target.result
}
readFile.readAsText(event.file);
},
/**
* 读取 apiclient_cert.pem privateCertContent 字段
*/
privateCertContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.form.weChatConfig.privateCertContent = e.target.result
}
readFile.readAsText(event.file);
},
/**
* 读取 apiclient_cert.p12 keyContent 字段
*/
keyContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.form.weChatConfig.keyContent = e.target.result.split(',')[1]
}
readFile.readAsDataURL(event.file); // base64
}
}
}
</script>
<style scoped>
</style>

View File

@ -0,0 +1,257 @@
<template>
<div>
<el-dialog :visible.sync="dialogVisible" :title="title" @close="close" append-to-body width="800px">
<el-form ref="form" :model="formData" :rules="rules" size="medium" label-width="120px"
v-loading="formLoading">
<el-form-item label-width="180px" label="渠道费率" prop="feeRate">
<el-input v-model="formData.feeRate" placeholder="请输入渠道费率" clearable :style="{width: '100%'}">
<template slot="append">%</template>
</el-input>
</el-form-item>
<el-form-item label-width="180px" label="公众号 APPID" prop="config.appId">
<el-input v-model="formData.config.appId" placeholder="请输入公众号 APPID" clearable :style="{width: '100%'}">
</el-input>
</el-form-item>
<el-form-item label-width="180px" label="商户号" prop="config.mchId">
<el-input v-model="formData.config.mchId" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="渠道状态" prop="status">
<el-radio-group v-model="formData.status" size="medium">
<el-radio v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)" :key="parseInt(dict.value)"
:label="parseInt(dict.value)">
{{ dict.label }}
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label-width="180px" label="API 版本" prop="config.apiVersion">
<el-radio-group v-model="formData.config.apiVersion" size="medium">
<el-radio label="v2">v2</el-radio>
<el-radio label="v3">v3</el-radio>
</el-radio-group>
</el-form-item>
<div v-if="formData.config.apiVersion === 'v2'">
<el-form-item label-width="180px" label="商户密钥" prop="config.mchKey">
<el-input v-model="formData.config.mchKey" placeholder="请输入商户密钥" clearable
:style="{width: '100%'}" type="textarea" :autosize="{minRows: 8, maxRows: 8}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_cert.p12 证书" prop="config.keyContent">
<el-input v-model="formData.config.keyContent" type="textarea"
placeholder="请上传 apiclient_cert.p12 证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="">
<el-upload :limit="1" accept=".p12" action=""
:before-upload="p12FileBeforeUpload"
:http-request="keyContentUpload">
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
</div>
<div v-if="formData.config.apiVersion === 'v3'">
<el-form-item label-width="180px" label="API V3 密钥" prop="config.apiV3Key">
<el-input v-model="formData.config.apiV3Key" placeholder="请输入 API V3 密钥" clearable
:style="{width: '100%'}" type="textarea" :autosize="{minRows: 8, maxRows: 8}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_key.perm 证书" prop="config.privateKeyContent">
<el-input v-model="formData.config.privateKeyContent" type="textarea"
placeholder="请上传 apiclient_key.perm 证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="" prop="privateKeyContentFile">
<el-upload ref="privateKeyContentFile"
:limit="1"
accept=".pem"
action=""
:before-upload="pemFileBeforeUpload"
:http-request="privateKeyContentUpload"
>
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
<el-form-item label-width="180px" label="apiclient_cert.perm证书" prop="config.privateCertContent">
<el-input v-model="formData.config.privateCertContent" type="textarea"
placeholder="请上传apiclient_cert.perm证书"
readonly :autosize="{minRows: 8, maxRows: 8}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item label-width="180px" label="" prop="privateCertContentFile">
<el-upload ref="privateCertContentFile"
:limit="1"
accept=".pem"
action=""
:before-upload="pemFileBeforeUpload"
:http-request="privateCertContentUpload"
>
<el-button size="small" type="primary" icon="el-icon-upload">点击上传</el-button>
</el-upload>
</el-form-item>
</div>
<el-form-item label-width="180px" label="备注" prop="remark">
<el-input v-model="formData.remark" :style="{width: '100%'}" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="close">取消</el-button>
<el-button type="primary" @click="submitForm">确定</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { createChannel, getChannel, updateChannel } from "@/api/pay/channel";
import { CommonStatusEnum } from "@/utils/constants";
export default {
name: "weixinChannelForm",
data() {
return {
dialogVisible: false,
formLoading: false,
title:'',
formData: {
appId: '',
code: '',
status: undefined,
feeRate: undefined,
remark: '',
config: {
appId: '',
mchId: '',
apiVersion: '',
mchKey: '',
keyContent: '',
privateKeyContent: '',
privateCertContent: '',
apiV3Key:'',
}
},
rules: {
feeRate: [{ required: true, message: '请输入渠道费率', trigger: 'blur' }],
status: [{ required: true, message: '渠道状态不能为空', trigger: 'blur'}],
'config.mchId': [{ required: true, message: '请传入商户号', trigger: 'blur'}],
'config.appId': [{ required: true, message: '请输入公众号APPID', trigger: 'blur'}],
'config.apiVersion': [{ required: true, message: 'API版本不能为空', trigger: 'blur'}],
'config.mchKey': [{ required: true, message: '请输入商户密钥', trigger: 'blur' }],
'config.keyContent': [{ required: true, message: '请上传 apiclient_cert.p12 证书', trigger: 'blur' }],
'config.privateKeyContent': [{ required: true, message: '请上传 apiclient_key.perm 证书', trigger: 'blur' }],
'config.privateCertContent': [{ required: true, message: '请上传 apiclient_cert.perm证 书', trigger: 'blur' }],
'config.apiV3Key': [{ required: true, message: '请上传 api V3 密钥值', trigger: 'blur' }],
},
}
},
methods: {
open(appId, code) {
this.dialogVisible = true;
this.formLoading = true;
this.reset(appId, code);
getChannel(appId, code).then(response => {
if (response.data && response.data.id) {
this.formData = response.data;
this.formData.config = JSON.parse(response.data.config);
}
this.title = !this.formData.id ? '创建支付渠道' : '编辑支付渠道'
}).finally(() => {
this.formLoading = false;
});
},
close() {
this.dialogVisible = false;
this.reset(undefined, undefined);
},
submitForm() {
this.$refs['form'].validate(valid => {
if (!valid) {
return
}
const data = { ...this.formData };
data.config = JSON.stringify(this.formData.config);
if (!data.id) {
createChannel(data).then(response => {
this.$modal.msgSuccess("新增成功");
this.$emit('success')
this.close();
});
} else {
updateChannel(data).then(response => {
this.$modal.msgSuccess("修改成功");
this.$emit('success')
this.close();
})
}
});
},
/** 重置表单 */
reset(appId, code) {
this.formData = {
appId: appId,
code: code,
status: CommonStatusEnum.ENABLE,
feeRate: undefined,
remark: '',
config: {
appId: '',
mchId: '',
apiVersion: '',
mchKey: '',
keyContent: '',
privateKeyContent: '',
privateCertContent: '',
apiV3Key:'',
}
}
this.resetForm('form')
},
/**
* apiclient_cert.p12apiclient_cert.pemapiclient_key.pem 上传前的校验
*/
fileBeforeUpload(file, fileAccept) {
let format = '.' + file.name.split(".")[1];
if (format !== fileAccept) {
debugger
this.$message.error('请上传指定格式"' + fileAccept + '"文件');
return false;
}
let isRightSize = file.size / 1024 / 1024 < 2
if (!isRightSize) {
this.$message.error('文件大小超过 2MB')
}
return isRightSize
},
p12FileBeforeUpload(file) {
this.fileBeforeUpload(file, '.p12')
},
pemFileBeforeUpload(file) {
this.fileBeforeUpload(file, '.pem')
},
/**
* 读取 apiclient_key.pem privateKeyContent 字段
*/
privateKeyContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.formData.config.privateKeyContent = e.target.result
}
readFile.readAsText(event.file);
},
/**
* 读取 apiclient_cert.pem privateCertContent 字段
*/
privateCertContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.formData.config.privateCertContent = e.target.result
}
readFile.readAsText(event.file);
},
/**
* 读取 apiclient_cert.p12 keyContent 字段
*/
keyContentUpload(event) {
const readFile = new FileReader()
readFile.onload = (e) => {
this.formData.config.keyContent = e.target.result.split(',')[1]
}
readFile.readAsDataURL(event.file); // base64
}
}
}
</script>

View File

@ -9,7 +9,7 @@
</el-form-item> </el-form-item>
<el-form-item label="开启状态" prop="status"> <el-form-item label="开启状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择开启状态" clearable> <el-select v-model="queryParams.status" placeholder="请选择开启状态" clearable>
<el-option v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="dict.label" <el-option v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)" :key="parseInt(dict.value)" :label="dict.label"
:value="parseInt(dict.value)"/> :value="parseInt(dict.value)"/>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -48,60 +48,55 @@
<el-table-column :label="payChannelEnum.ALIPAY_APP.name" align="center"> <el-table-column :label="payChannelEnum.ALIPAY_APP.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.ALIPAY_APP.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.ALIPAY_APP.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.ALIPAY_APP.code,payType.ALIPAY)"> @click="handleChannel(scope.row, payChannelEnum.ALIPAY_APP.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.ALIPAY_APP.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.ALIPAY_APP.code,payType.ALIPAY)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.ALIPAY_PC.name" align="center"> <el-table-column :label="payChannelEnum.ALIPAY_PC.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.ALIPAY_PC.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.ALIPAY_PC.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.ALIPAY_PC.code,payType.ALIPAY)"> @click="handleChannel(scope.row, payChannelEnum.ALIPAY_PC.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.ALIPAY_PC.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.ALIPAY_PC.code,payType.ALIPAY)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.ALIPAY_WAP.name" align="center"> <el-table-column :label="payChannelEnum.ALIPAY_WAP.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.ALIPAY_WAP.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.ALIPAY_WAP.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.ALIPAY_WAP.code,payType.ALIPAY)"> @click="handleChannel(scope.row, payChannelEnum.ALIPAY_WAP.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.ALIPAY_WAP.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.ALIPAY_WAP.code,payType.ALIPAY)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.ALIPAY_QR.name" align="center"> <el-table-column :label="payChannelEnum.ALIPAY_QR.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.ALIPAY_QR.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.ALIPAY_QR.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.ALIPAY_QR.code,payType.ALIPAY)"> @click="handleChannel(scope.row, payChannelEnum.ALIPAY_QR.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.ALIPAY_QR.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.ALIPAY_QR.code,payType.ALIPAY)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.ALIPAY_BAR.name" align="center"> <el-table-column :label="payChannelEnum.ALIPAY_BAR.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.ALIPAY_BAR.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.ALIPAY_BAR.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.ALIPAY_BAR.code,payType.ALIPAY)"> @click="handleChannel(scope.row,payChannelEnum.ALIPAY_BAR.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.ALIPAY_BAR.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.ALIPAY_BAR.code,payType.ALIPAY)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -110,60 +105,55 @@
<el-table-column :label="payChannelEnum.WX_LITE.name" align="center"> <el-table-column :label="payChannelEnum.WX_LITE.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.WX_LITE.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.WX_LITE.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.WX_LITE.code,payType.WECHAT)"> @click="handleChannel(scope.row, payChannelEnum.WX_LITE.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.WX_LITE.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.WX_LITE.code,payType.WECHAT)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.WX_PUB.name" align="center"> <el-table-column :label="payChannelEnum.WX_PUB.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.WX_PUB.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.WX_PUB.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.WX_PUB.code,payType.WECHAT)"> @click="handleChannel(scope.row, payChannelEnum.WX_PUB.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.WX_PUB.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.WX_PUB.code,payType.WECHAT)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.WX_APP.name" align="center"> <el-table-column :label="payChannelEnum.WX_APP.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.WX_APP.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.WX_APP.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.WX_APP.code,payType.WECHAT)"> @click="handleChannel(scope.row, payChannelEnum.WX_APP.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.WX_APP.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.WX_APP.code,payType.WECHAT)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.WX_NATIVE.name" align="center"> <el-table-column :label="payChannelEnum.WX_NATIVE.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.WX_NATIVE.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.WX_NATIVE.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.WX_NATIVE.code,payType.WECHAT)"> @click="handleChannel(scope.row, payChannelEnum.WX_NATIVE.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.WX_NATIVE.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.WX_NATIVE.code,payType.WECHAT)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="payChannelEnum.WX_BAR.name" align="center"> <el-table-column :label="payChannelEnum.WX_BAR.name" align="center">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="success" icon="el-icon-check" circle <el-button type="success" icon="el-icon-check" circle
v-if="judgeChannelExist(scope.row.channelCodes,payChannelEnum.WX_BAR.code)" v-if="isChannelExists(scope.row.channelCodes, payChannelEnum.WX_BAR.code)"
@click="handleUpdateChannel(scope.row,payChannelEnum.WX_BAR.code,payType.WECHAT)"> @click="handleChannel(scope.row, payChannelEnum.WX_BAR.code)">
</el-button> </el-button>
<el-button v-else <el-button v-else type="danger" icon="el-icon-close" circle
type="danger" icon="el-icon-close" circle @click="handleChannel(scope.row, payChannelEnum.WX_BAR.code)">
@click="handleCreateChannel(scope.row,payChannelEnum.WX_BAR.code,payType.WECHAT)">
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -191,7 +181,7 @@
</el-form-item> </el-form-item>
<el-form-item label="开启状态" prop="status"> <el-form-item label="开启状态" prop="status">
<el-radio-group v-model="form.status"> <el-radio-group v-model="form.status">
<el-radio v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="parseInt(dict.value)"> <el-radio v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)" :key="parseInt(dict.value)" :label="parseInt(dict.value)">
{{ dict.label }} {{ dict.label }}
</el-radio> </el-radio>
</el-radio-group> </el-radio-group>
@ -214,24 +204,23 @@
</div> </div>
</el-dialog> </el-dialog>
<!-- 弹窗 --> <!-- 对话框支付应用的配置 -->
<wechat-channel-form :transferParam="channelParam" /> <weixin-channel-form ref="weixinChannelFormRef" @success="getList" />
<alipay-channel-form ref="alipayChannelFormRef" @success="getList" /> <alipay-channel-form ref="alipayChannelFormRef" @success="getList" />
</div> </div>
</template> </template>
<script> <script>
import { createApp, updateApp, changeAppStatus, deleteApp, getApp, getAppPage } from "@/api/pay/app"; import { createApp, updateApp, changeAppStatus, deleteApp, getApp, getAppPage } from "@/api/pay/app";
import { DICT_TYPE, getDictDatas } from "@/utils/dict"; import { PayChannelEnum, CommonStatusEnum } from "@/utils/constants";
import { PayType, PayChannelEnum, CommonStatusEnum } from "@/utils/constants"; import weixinChannelForm from "@/views/pay/app/components/weixinChannelForm";
import wechatChannelForm from "@/views/pay/app/components/wechatChannelForm";
import alipayChannelForm from "@/views/pay/app/components/alipayChannelForm"; import alipayChannelForm from "@/views/pay/app/components/alipayChannelForm";
export default { export default {
name: "PayApp", name: "PayApp",
components: { components: {
"wechatChannelForm": wechatChannelForm, weixinChannelForm,
"alipayChannelForm": alipayChannelForm alipayChannelForm
}, },
data() { data() {
return { return {
@ -264,28 +253,8 @@ export default {
orderNotifyUrl: [{required: true, message: "支付结果的回调地址不能为空", trigger: "blur"}], orderNotifyUrl: [{required: true, message: "支付结果的回调地址不能为空", trigger: "blur"}],
refundNotifyUrl: [{required: true, message: "退款结果的回调地址不能为空", trigger: "blur"}], refundNotifyUrl: [{required: true, message: "退款结果的回调地址不能为空", trigger: "blur"}],
}, },
//
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
sysCommonStatusEnum: CommonStatusEnum,
// //
payChannelEnum: PayChannelEnum, payChannelEnum: PayChannelEnum,
//
payType: PayType,
//
payOpen: false,
//
channelParam: {
//
"edit": false,
//
"wechatOpen": false,
//
"aliPayOpen": false,
// ID
"appId": null,
//
"payCode": null,
}
}; };
}, },
created() { created() {
@ -312,7 +281,7 @@ export default {
this.form = { this.form = {
id: undefined, id: undefined,
name: undefined, name: undefined,
status: undefined, status: CommonStatusEnum.ENABLE,
remark: undefined, remark: undefined,
orderNotifyUrl: undefined, orderNotifyUrl: undefined,
refundNotifyUrl: undefined, refundNotifyUrl: undefined,
@ -397,43 +366,25 @@ export default {
/** /**
* 修改支付渠道信息 * 修改支付渠道信息
*/ */
handleUpdateChannel(row, payCode, type) { handleChannel(row, code) {
this.settingChannelParam(row, payCode, type) if (code.indexOf('alipay_') === 0) {
this.channelParam.edit = true; this.$refs['alipayChannelFormRef'].open(row.id, code);
this.channelParam.loading = true; return
},
/**
* 新增支付渠道信息
*/
handleCreateChannel(row, payCode, type) {
this.settingChannelParam(row, payCode, type)
this.channelParam.edit = false;
this.channelParam.loading = false;
},
/**
* 设置支付渠道信息
*/
settingChannelParam(row, payCode, type) {
if (type === PayType.WECHAT) {
this.channelParam.wechatOpen = true;
this.channelParam.aliPayOpen = false;
} }
if (type === PayType.ALIPAY) { if (code.indexOf('wx_') === 0) {
console.log(this.$refs['alipayChannelFormRef']) this.$refs['weixinChannelFormRef'].open(row.id, code);
this.$refs['alipayChannelFormRef'].open(row.id, payCode); return
return;
// this.channelParam.aliPayOpen = true;
// this.channelParam.wechatOpen = false;
} }
}, },
/** /**
* 根据渠道编码判断渠道列表中是否存在 * 根据渠道编码判断渠道列表中是否存在
*
* @param channels 渠道列表 * @param channels 渠道列表
* @param channelCode 渠道编码 * @param channelCode 渠道编码
*/ */
judgeChannelExist(channels, channelCode) { isChannelExists(channels, channelCode) {
return channels.indexOf(channelCode) !== -1; return channels.indexOf(channelCode) !== -1;
} }
} }
}; }
</script> </script>