99 lines
3.3 KiB
Vue
99 lines
3.3 KiB
Vue
![]() |
<template>
|
|||
|
<el-form ref="form" :model="form" :rules="rules" style="margin-top: 6px;" size="small" label-width="100px">
|
|||
|
<el-form-item label="appID" prop="appID">
|
|||
|
<el-input v-model="form.appID" style="width: 40%"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">应用APPID,收款账号既是APPID对应支付宝账号</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="商家账号" prop="sysServiceProviderId">
|
|||
|
<el-input v-model="form.sysServiceProviderId" style="width: 40%;"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">商家账号</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="商户私钥" prop="privateKey">
|
|||
|
<el-input v-model="form.privateKey" type="password" style="width: 40%;"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">商户私钥,你的PKCS8格式RSA2私钥</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="支付宝公钥" prop="publicKey">
|
|||
|
<el-input v-model="form.publicKey" type="password" style="width: 40%;"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">支付宝公钥</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="回调地址" prop="returnUrl">
|
|||
|
<el-input v-model="form.returnUrl" style="width: 40%;"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">订单完成后返回的地址</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="异步通知" prop="notifyUrl">
|
|||
|
<el-input v-model="form.notifyUrl" style="width: 40%;"/>
|
|||
|
<span style="color: #C0C0C0;margin-left: 10px;">支付结果异步通知地址</span>
|
|||
|
</el-form-item>
|
|||
|
<el-form-item label="">
|
|||
|
<el-button :loading="loading" size="medium" type="primary" @click="doSubmit">保存配置</el-button>
|
|||
|
</el-form-item>
|
|||
|
</el-form>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import { get, update } from '@/api/alipay'
|
|||
|
export default {
|
|||
|
name: 'Config',
|
|||
|
data() {
|
|||
|
return {
|
|||
|
loading: false,
|
|||
|
form: { appID: '', sysServiceProviderId: '', privateKey: '', publicKey: '', returnUrl: '', notifyUrl: '' },
|
|||
|
rules: {
|
|||
|
appID: [
|
|||
|
{ required: true, message: '请输入appID', trigger: 'blur' }
|
|||
|
],
|
|||
|
sysServiceProviderId: [
|
|||
|
{ required: true, message: '请输入商家账号', trigger: 'blur' }
|
|||
|
],
|
|||
|
privateKey: [
|
|||
|
{ required: true, message: '商户私钥不能为空', trigger: 'blur' }
|
|||
|
],
|
|||
|
publicKey: [
|
|||
|
{ required: true, message: '支付宝公钥不能为空', trigger: 'blur' }
|
|||
|
],
|
|||
|
returnUrl: [
|
|||
|
{ required: true, message: '回调地址不能为空', trigger: 'blur' }
|
|||
|
],
|
|||
|
notifyUrl: [
|
|||
|
{ required: true, message: '回调地址不能为空', trigger: 'blur' }
|
|||
|
]
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
created() {
|
|||
|
this.init()
|
|||
|
},
|
|||
|
methods: {
|
|||
|
init() {
|
|||
|
get().then(res => {
|
|||
|
this.form = res
|
|||
|
})
|
|||
|
},
|
|||
|
doSubmit() {
|
|||
|
this.$refs['form'].validate((valid) => {
|
|||
|
if (valid) {
|
|||
|
this.loading = true
|
|||
|
update(this.form).then(res => {
|
|||
|
this.$notify({
|
|||
|
title: '修改成功',
|
|||
|
type: 'success',
|
|||
|
duration: 2500
|
|||
|
})
|
|||
|
this.loading = false
|
|||
|
}).catch(err => {
|
|||
|
this.loading = false
|
|||
|
console.log(err.response.data.message)
|
|||
|
})
|
|||
|
} else {
|
|||
|
return false
|
|||
|
}
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style scoped>
|
|||
|
|
|||
|
</style>
|