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

111

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