|
@@ -43,11 +43,12 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
async initACPUrl() {
|
|
|
+ this.acpUrl = `https://payment.alibaba.com?from=suhaotong`;
|
|
|
try {
|
|
|
const result = await getACPUrlParams();
|
|
|
if (Array.isArray(result) && result.length >= 2) {
|
|
|
const [signature, encrypt] = result;
|
|
|
- this.acpUrl = `https://payment.alibaba.com/home.html?from=suhaotong&&signature=${signature}&platformParam=${encrypt}`;
|
|
|
+ this.acpUrl += `&signature=${signature}&platformParam=${encrypt}`;
|
|
|
}
|
|
|
} catch (error) {
|
|
|
if (error?.response?.status !== 500) {
|