Commit 5a7e58fe authored by ‘yangmengxue’'s avatar ‘yangmengxue’

填写个人信息-相关资料

parent ac1aeddf
...@@ -139,20 +139,14 @@ ...@@ -139,20 +139,14 @@
text-align: center; text-align: center;
} }
} }
&.bgPic { &.bgPic {
.el-form-item__label { .el-form-item__label {
font-size: 14px; font-size: 14px;
} }
.bgInfo {
font-size: 12px;
font-family: PingFang SC;
font-weight: 500;
color: #a7a2a6;
line-height: 24px;
}
} }
.el-select { .el-select {
...@@ -161,7 +155,7 @@ ...@@ -161,7 +155,7 @@
.image_add { .image_add {
position: relative; position: relative;
margin-top: 24px; // margin-top: 24px;
.image_in { .image_in {
.limit_10 { .limit_10 {
...@@ -222,5 +216,12 @@ ...@@ -222,5 +216,12 @@
} }
} }
.bgInfo {
font-size: 12px;
font-family: PingFang SC;
font-weight: 500;
color: #a7a2a6;
line-height: 24px;
}
} }
} }
This diff is collapsed.
// export const SERVER_URL = "https://ysslapi.thussat.cn"; // 测试环境
// export const DEVELOPMENT_SERVER_URL = "https://ysslapi.thussat.cn"; //开发环境
// export const SERVER_WS_URL = "wss://ysslapi.thussat.cn"; // websocket
// export const SERVER_URL = "http://123.56.237.167:20202"; // 测试环境
// export const DEVELOPMENT_SERVER_URL = "http://123.56.237.167:20202"; //测试环境
// export const SERVER_WS_URL = "wss://123.56.237.167:20202"; // websocket
// 正式(暂时不用)
// export const SERVER_URL = 'https://api1.testgate.cn' // 正式环境
// export const DEVELOPMENT_SERVER_URL = 'https://api1.testgate.cn' // 开发环境
// export const SERVER_WS_URL = 'wss://api1.testgate.cn' // websocket
// 正式
// export const SERVER_URL = "https://apiy.thuers.com/modules-campsite"; // 正式环境
// export const DEVELOPMENT_SERVER_URL = " https://apiy.thuers.com/modules-campsite"; //开发环境
// export const SERVER_WS_URL = "wss://apiy.thuers.com"; // websocket
// 测试 // 测试
// export const SERVER_URL = "https://tgwapi.campcenter.cn/modules-campsite"; // 正式环境 // export const SERVER_URL = "https://tgwapi.campcenter.cn/modules-campsite"; // 正式环境
// export const DEVELOPMENT_SERVER_URL = "https://tgwapi.campcenter.cn/modules-campsite"; //开发环境 // export const DEVELOPMENT_SERVER_URL = "https://tgwapi.campcenter.cn/modules-campsite"; //开发环境
// export const SERVER_WS_URL = "wss://tgwapi.campcenter.cn"; // websocket // export const SERVER_WS_URL = "wss://tgwapi.campcenter.cn"; // websocket
// 正式 // 正式
export const SERVER_URL = "https://gwapi.campcenter.cn/modules-campsite"; // 正式环境 // export const SERVER_URL = "https://gwapi.campcenter.cn/modules-campsite"; // 正式环境
export const DEVELOPMENT_SERVER_URL = "https://gwapi.campcenter.cn/modules-campsite"; //开发环境 // export const DEVELOPMENT_SERVER_URL = "https://gwapi.campcenter.cn/modules-campsite"; //开发环境
export const SERVER_WS_URL = "wss://gwapi.campcenter.cn"; // websocket // export const SERVER_WS_URL = "wss://gwapi.campcenter.cn"; // websocket
// 测试 // 测试
// export const SERVER_URL = "http:// 8088/modules-campsite"; // 正式环境 export const SERVER_URL = "http://192.168.1.146:8088/modules-campsite"; // 正式环境
// export const DEVELOPMENT_SERVER_URL = "http://43.143.166.79:8088/modules-campsite"; //开发环境 export const DEVELOPMENT_SERVER_URL = "http://192.168.1.146:8088/modules-campsite"; //开发环境
// export const SERVER_WS_URL = "wss://43.143.166.79:8088"; // websocket export const SERVER_WS_URL = "wss://192.168.1.146:8088"; // websocket
...@@ -331,9 +331,13 @@ ...@@ -331,9 +331,13 @@
window.localStorage.setItem("examine_reason" + code, window.localStorage.setItem("examine_reason" + code,
res.data.examine_reason res.data.examine_reason
); //资料审核状态 ); //资料审核状态
const aPath = res.data.achievement_path; // 回显上传的相关资料图片
if (aPath) { const aPath1 = res.data.transcripts;
let arr = aPath.split(","); const aPath2 = res.data.achievementCertificate;
const aPath3 = res.data.safetyNotices;
const aPath4 = res.data.achievement_path;
if (aPath1) {
let arr = aPath1.split(",");
let fileList = []; let fileList = [];
fileList = arr.map((item) => { fileList = arr.map((item) => {
let obj = { let obj = {
...@@ -341,7 +345,53 @@ ...@@ -341,7 +345,53 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_file_" + window.localStorage.setItem("sign_up_file1_" +
window.localStorage.getItem("index-phone-all") +
code,
JSON.stringify(fileList)
); //上传的图片
}
if (aPath2) {
let arr = aPath2.split(",");
console.log(arr)
let fileList = [];
fileList = arr.map((item) => {
let obj = {
url: item,
};
return obj;
});
window.localStorage.setItem("sign_up_file2_" +
window.localStorage.getItem("index-phone-all") +
code,
JSON.stringify(fileList)
); //上传的图片
}
if (aPath3) {
let arr = aPath3.split(",");
let fileList = [];
fileList = arr.map((item) => {
let obj = {
url: item,
};
return obj;
});
window.localStorage.setItem("sign_up_file3_" +
window.localStorage.getItem("index-phone-all") +
code,
JSON.stringify(fileList)
); //上传的图片
}
if (aPath4) {
let arr = aPath4.split(",");
let fileList = [];
fileList = arr.map((item) => {
let obj = {
url: item,
};
return obj;
});
window.localStorage.setItem("sign_up_file4_" +
window.localStorage.getItem("index-phone-all") + window.localStorage.getItem("index-phone-all") +
code, code,
JSON.stringify(fileList) JSON.stringify(fileList)
......
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