kefu/static/templates/default/setting_pay_config.html

34 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{template "header" }}
<div id="app" style="width:100%">
<template>
<el-tabs type="border-card">
<el-tab-pane label="易支付">
<div class="formWarning">
<p>易支付是一个常见的支付系统源码,任何人都可以下载并搭建</p>
<p>同时市面上多数的小规模支付平台都是由易支付修改而来,例如部分码支付、源支付等等</p>
<p>推荐使用:<a href="https://z-pay.cn/?uid=6282" target="_blank">ZPAY三方支付渠道(个人微信/支付宝收款)</a> </p>
</div>
<el-form label-width="140px">
<el-form-item class="eform" label="易支付商户ID">
<el-input placeholder="易支付商户ID" v-model="yiPay.shopId" @change="setEntConfigItem('易支付商户ID','Nan66Shopid',yiPay.shopId)"></el-input>
</el-form-item>
<el-form-item class="eform" label="易支付商户密钥">
<el-input placeholder="易支付商户密钥" v-model="yiPay.shopSecret" @change="setEntConfigItem('易支付商户密钥','Nan66ShopSecret',yiPay.shopSecret)"></el-input>
</el-form-item>
<el-form-item class="eform" label="易支付API地址">
<el-input placeholder="易支付API地址" v-model="yiPay.api" @change="setEntConfigItem('易支付API地址','Nan66Api',yiPay.api)"></el-input>
<div class="formWarning">
<p>您的易支付接口的API接口地址则请在此处填写完整的API接口支付地址</p>
<p>例如https://pay.xxxxxxx.cn/mapi.php、https://pay.xxxxxxx.cn/pay/apisubmit</p>
<p>如果使用ZPAY请填写https://z-pay.cn/mapi.php</p>
</div>
</el-form-item>
</el-form>
</el-tab-pane>
</el-tabs>
</template>
</div>
</body>
{{template "setting_bottom" .}}