Commit 83b05182 authored by 杨梦雪's avatar 杨梦雪

111

parent a468d5cd
......@@ -261,7 +261,9 @@ export default {
// return
let div = document.createElement("div");
div.innerHTML = form;
document.body.appendChild(div);
document.forms[0].acceptCharset = "GBK"; //保持与支付宝默认编码格式一致,如果不一致将会出现:调试错误,请回到请求来源地.
// 重新发起请求,错误代码 invalid-signature 错误原因: 验签出错,建议检查签名字符串或签名私钥与应用公钥是否匹配
document.forms[0].submit(); //
......@@ -391,8 +393,7 @@ export default {
this.closeWebSocket();
// this.dialogVisible = false;
// this.$emit("closeCFSUDialog", this.dialogVisible, true);
// status=6,跳转到报名成功页面
// this.$emit("getstatus", res.data.status.status);
} else {
//收到服务器信息,心跳重置
this.reset();
......@@ -531,7 +532,7 @@ export default {
this.file_image = image;
this.getOssConfigs(this.file_image, params.file);
},
onChange() {},
// 上传截图
uploadConfirm() {
this.bankDialogVisible = false;
......
......@@ -56,7 +56,12 @@
width="520px"
center
> -->
<el-dialog
v-if="
!$store.state.indexIdentity == '6c6884d1c83040ee8ca17736a8d67b93' ||
!$store.state.indexIdentity == 'c432d9028b2840ebbbfd56947b38069b'
"
style="font-size: 26px"
class="info"
title="营地声明"
......@@ -325,8 +330,8 @@ export default {
// 银行截图
const bank_Path = res.data.bank_info;
if (bank_Path) {
let arr = bank_Path.split(" ");
if (bank_Path != null) {
let arr = bank_Path.split(",");
// console.log(arr)
let fileList = [];
fileList = arr.map((item) => {
......@@ -343,6 +348,11 @@ export default {
"bank_info" + window.localStorage.getItem("phone" + code) + code,
JSON.stringify(fileList)
); //上传的图片
} else {
window.localStorage.setItem(
"bank_info" + window.localStorage.getItem("phone" + code) + code,
"[]"
);
}
});
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment