Commit 76f08c3c authored by danfuman's avatar danfuman

修改

parent 4d6a187f
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
</div> </div>
</div> </div>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="qyVisible=false">取消</el-button> <el-button @click="handleCancel1">取消</el-button>
<el-button type="primary" @click="handleAdd">确定</el-button> <el-button type="primary" @click="handleAdd">确定</el-button>
</div> </div>
</el-dialog> </el-dialog>
...@@ -227,13 +227,17 @@ ...@@ -227,13 +227,17 @@
this.addEnterprise() this.addEnterprise()
}, },
changeCheckbox(item){ changeCheckbox(item){
console.log(item)
if (this.cid.indexOf(item.id) == -1) { if (this.cid.indexOf(item.id) == -1) {
this.cid.push(item.id) this.cid.push(item.id)
} else { } else {
this.cid.splice(this.cid.indexOf(item.id), 1) this.cid.splice(this.cid.indexOf(item.id), 1)
} }
}, },
handleCancel1(){
this.qyVisible=false;
this.companyName=''
this.dataList=[]
},
handleAdd(){ handleAdd(){
let data={ let data={
cid:this.cid cid:this.cid
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
</div> </div>
<div class="main-item" style="line-height: 32px;"> <div class="main-item" style="line-height: 32px;">
<div class="label">手机号码</div> <div class="label">手机号码</div>
<el-input class="phone" v-model="queryParams.phones" placeholder="请输入手机号"></el-input> <el-input class="phone" v-model="queryParams.phones" placeholder="请输入手机号" oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</div> </div>
</div> </div>
<div class="search"> <div class="search">
......
...@@ -236,6 +236,7 @@ ...@@ -236,6 +236,7 @@
height: 550px; height: 550px;
text-align: center; text-align: center;
border-top: 1px solid #EFEFEF; border-top: 1px solid #EFEFEF;
background: #ffffff;
.img{ .img{
width: 108px; width: 108px;
height: 108px; height: 108px;
......
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