Commit 5b05a382 authored by danfuman's avatar danfuman

修改

parent 5e271c97
...@@ -118,10 +118,10 @@ ...@@ -118,10 +118,10 @@
<el-input v-model="ruleForm.leaderName" placeholder="请输入劳务队长名称"></el-input> <el-input v-model="ruleForm.leaderName" placeholder="请输入劳务队长名称"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="身份证号码" prop="laborCaptainIdCard"> <el-form-item label="身份证号码" prop="laborCaptainIdCard">
<el-input v-model="ruleForm.laborCaptainIdCard" placeholder="请输入劳务队长身份证号码"></el-input> <el-input v-model="ruleForm.laborCaptainIdCard" placeholder="请输入劳务队长身份证号码" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="联系电话" prop="laborCaptainPhone"> <el-form-item label="联系电话" prop="laborCaptainPhone">
<el-input v-model="ruleForm.laborCaptainPhone" placeholder="请输入联系电话"></el-input> <el-input v-model="ruleForm.laborCaptainPhone" placeholder="请输入联系电话"oninput="if(value.length>11)value=value.slice(0,11)" onkeyup="value = value.replace(/[^\d]/g,'');"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="挂靠单位" prop="customerName"> <el-form-item label="挂靠单位" prop="customerName">
<el-input v-model="ruleForm.customerName" placeholder="请输入挂靠单位"></el-input> <el-input v-model="ruleForm.customerName" placeholder="请输入挂靠单位"></el-input>
......
...@@ -465,6 +465,7 @@ ...@@ -465,6 +465,7 @@
enterpriseList:[], enterpriseList:[],
tip:false, tip:false,
isIdCardRepeat:'', isIdCardRepeat:'',
tableDataList:[]
} }
}, },
watch: { watch: {
...@@ -691,16 +692,17 @@ ...@@ -691,16 +692,17 @@
this.tableDataList=[]; this.tableDataList=[];
} }
} }
}) })
}, },
handleClick(){ handleClick(){
this.dialogVisible=false; this.dialogVisible=false;
this.tip=false; this.tip=false;
this.tableDataList=[];
this.tableData = this.tableDataList; this.tableData = this.tableDataList;
this.tableData.forEach(item=>{ this.tableData.forEach(item=>{
item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '') item.customerText = item.customerName.replace(/<\/?[^>]+(style=('|")[^'"]*)?>/gi, '')
}) })
this.total=this.tableData.length
this.queryParam={ this.queryParam={
cusomerName:'', cusomerName:'',
unifySocialCode:'', unifySocialCode:'',
......
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