b56a13f0 by 杨炀

人员导入-实名不通过-错误提示

1 parent d7948e5b
...@@ -124,7 +124,7 @@ const goHelpZH = () => { ...@@ -124,7 +124,7 @@ const goHelpZH = () => {
124 .kf{width: 45px;margin: auto;height: auto; 124 .kf{width: 45px;margin: auto;height: auto;
125 //animation: pop 2s infinite; 125 //animation: pop 2s infinite;
126 } 126 }
127 .fixed-right{position: fixed;right: 0;bottom: 200px; 127 .fixed-right{position: fixed;right: 0;bottom: 200px;z-index: 9;
128 .mlb{background: #fff;border-radius: 10px 0 0 10px;box-shadow: 0 2px 8px #aaa; 128 .mlb{background: #fff;border-radius: 10px 0 0 10px;box-shadow: 0 2px 8px #aaa;
129 padding: 10px 8px;text-align: center;cursor: pointer; 129 padding: 10px 8px;text-align: center;cursor: pointer;
130 div:first-child{border-bottom: 0.5px solid #eee;padding: 0 0 10px;margin-bottom: 10px} 130 div:first-child{border-bottom: 0.5px solid #eee;padding: 0 0 10px;margin-bottom: 10px}
......
...@@ -61,10 +61,13 @@ function submit(res) { ...@@ -61,10 +61,13 @@ function submit(res) {
61 if(res.data.repeatInFileColumn.length>0){ 61 if(res.data.repeatInFileColumn.length>0){
62 proxy.$modal.msgError(`${res.data.repeatInFileColumn}${language.value == 0? '文件内重复' : 'Repeat In File'}`) 62 proxy.$modal.msgError(`${res.data.repeatInFileColumn}${language.value == 0? '文件内重复' : 'Repeat In File'}`)
63 } 63 }
64 if(res.data.noRealNameColumn.length>0){
65 proxy.$modal.msgError(`${res.data.noRealNameColumn}${language.value == 0? '实名未通过' : 'No real name'}`)
66 }
64 67
65 if(res.data.errIdcTypeColumn.length==0&&res.data.errSexColumn.length==0&& 68 if(res.data.errIdcTypeColumn.length==0&&res.data.errSexColumn.length==0&&
66 res.data.incompleteColumn.length==0&&res.data.repeatInFileColumn.length==0&& 69 res.data.incompleteColumn.length==0&&res.data.repeatInFileColumn.length==0&&
67 res.data.repeatInSystemColumn.length==0 70 res.data.repeatInSystemColumn.length==0&&res.data.noRealNameColumn.length==0
68 ){ 71 ){
69 proxy.$modal.msgSuccess(res.msg) 72 proxy.$modal.msgSuccess(res.msg)
70 } 73 }
......
...@@ -9,9 +9,6 @@ ...@@ -9,9 +9,6 @@
9 <match-info-row v-if="matchId" :match-id="matchId"/> 9 <match-info-row v-if="matchId" :match-id="matchId"/>
10 <group-info-row v-if="matchId&&groupId!=0" :match-id="matchId" :group-id="groupId"/> 10 <group-info-row v-if="matchId&&groupId!=0" :match-id="matchId" :group-id="groupId"/>
11 <coach-info-row v-if="matchId&&user.utype=='2'" :match-id="matchId" :language="language"/> 11 <coach-info-row v-if="matchId&&user.utype=='2'" :match-id="matchId" :language="language"/>
12
13
14
15 <div style="margin: 20px"> 12 <div style="margin: 20px">
16 <div class="leftboderTT" v-if="user.utype=='1'&&myMemberTable.length>0">{{ language==0?'随行人员清单':'List of accompanying personnel' }} 13 <div class="leftboderTT" v-if="user.utype=='1'&&myMemberTable.length>0">{{ language==0?'随行人员清单':'List of accompanying personnel' }}
17 </div> 14 </div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!