Update step2.js

This commit is contained in:
姜棚 2022-01-21 09:40:48 +08:00
parent faf11cd1a5
commit 576a99a959
1 changed files with 13 additions and 5 deletions

View File

@ -578,15 +578,23 @@ export default class acclist extends React.Component{
importConfirmClick(){ importConfirmClick(){
let temp = this.state.exceldata.filter(o=>o.type == "success"); let temp = this.state.exceldata.filter(o=>o.type == "success");
console.log("临时",temp)
console.log("excel数据",this.state.exceldata)
console.log(temp)
let mobile_repeat= _.map(temp,(o)=>{ let mobile_repeat= _.map(temp,(o)=>{
return o.mobile; return o.mobile;
}) })
console.log("重复的手机号",mobile_repeat)
console.log("手机重复",mobile_repeat)
this.setState({mobile_repeat:mobile_repeat}) this.setState({mobile_repeat:mobile_repeat})
let model = this.state.model; let model = this.state.model;
model.quantity = this.state.excel_count - this.state.error_count + this.state.mobile_repeat.length; console.log("重复号码数量",this.state.mobile_repeat.length)
model.quantity = this.state.excel_count - this.state.error_count + mobile_repeat.length;
console.log("数量", model.quantity)
this.setState({model:model}) this.setState({model:model})
this.setState({accessVerify:false}) this.setState({accessVerify:false})
this.setState({excel_visible:false}) this.setState({excel_visible:false})
@ -639,6 +647,7 @@ export default class acclist extends React.Component{
this.setState({mobile_excel:req.path}) this.setState({mobile_excel:req.path})
getAccessVerification(data).then((res)=>{ getAccessVerification(data).then((res)=>{
this.setState({file_loading:false})
handelResponse(res,(req,msg)=>{ handelResponse(res,(req,msg)=>{
console.log("验证",req) console.log("验证",req)
@ -651,11 +660,10 @@ export default class acclist extends React.Component{
{ {
this.setState({exceldata:req.validationFailed}) this.setState({exceldata:req.validationFailed})
this.setState({file_loading:false})
this.setState({success_visible:true}) this.setState({success_visible:true})
} }
else{ else{
this.setState({file_loading:false})
this.setState({success_visible:true}) this.setState({success_visible:true})
} }
},(err)=>{ },(err)=>{