|
@@ -154,7 +154,7 @@
|
|
|
</div>
|
|
|
<div class="fixed__btn__panel">
|
|
|
<el-button size="small" @click="onClose" class="normal-btn-width inline-16">取 消</el-button>
|
|
|
- <duplicateCheck :data="form"></duplicateCheck>
|
|
|
+ <duplicateCheck :data="form" @checkSuccess="checkSuccess"></duplicateCheck>
|
|
|
<el-button size="small" type="primary" @click="onSave" class="normal-btn-width">确 定</el-button>
|
|
|
</div>
|
|
|
</el-drawer>
|
|
@@ -283,7 +283,7 @@ export default {
|
|
|
"content": {
|
|
|
"projectname":this.form.projectname,
|
|
|
"address":this.form.address,
|
|
|
- "sa_projectid":this.form.sa_projectid
|
|
|
+ "sa_projectid":0
|
|
|
},
|
|
|
})
|
|
|
console.log(res,"查重结果")
|
|
@@ -469,6 +469,9 @@ export default {
|
|
|
this.$store.dispatch('optiontypeselect','tradefield').then(res=>{
|
|
|
this.tradefieldSelect = res.data
|
|
|
})
|
|
|
+ },
|
|
|
+ checkSuccess(val){
|
|
|
+ this.checkResults = val
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|