|
@@ -1066,7 +1066,12 @@ export default {
|
|
|
disabled: true
|
|
|
})
|
|
|
}
|
|
|
- this.contentOption = [...this.contentOption, ...dataTwo]
|
|
|
+ let item = this.contentOption.find(item => {
|
|
|
+ return item.name == "户头";
|
|
|
+ });
|
|
|
+ if (!item){
|
|
|
+ this.contentOption = [...this.contentOption, ...dataTwo]
|
|
|
+ }
|
|
|
this.inDex = this.contentOption.length
|
|
|
}
|
|
|
let data = {
|