|
@@ -23,7 +23,6 @@
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
.tips {
|
|
.tips {
|
|
- font-size: 14px;
|
|
|
|
margin-top: 15px;
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
.inp {
|
|
.inp {
|
|
@@ -111,7 +110,6 @@
|
|
width: 100%;
|
|
width: 100%;
|
|
text-align: center;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
padding: 20px 0;
|
|
- font-size: 14px;
|
|
|
|
}
|
|
}
|
|
.searchText {
|
|
.searchText {
|
|
padding: 0 35px 0 15px;
|
|
padding: 0 35px 0 15px;
|
|
@@ -347,7 +345,7 @@ export default {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.getList(this.form.concepts);
|
|
this.getList(this.form.concepts);
|
|
this.getIds(this.form.concepts);
|
|
this.getIds(this.form.concepts);
|
|
- this.searchConcept()
|
|
|
|
|
|
+ this.searchConcept();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -439,7 +437,9 @@ export default {
|
|
this.form.concepts.push(concepts);
|
|
this.form.concepts.push(concepts);
|
|
this.getList(this.form.concepts);
|
|
this.getList(this.form.concepts);
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- this.searchConcept();
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.searchConcept();
|
|
|
|
+ }, 150);
|
|
});
|
|
});
|
|
},
|
|
},
|
|
// 切换术语类型
|
|
// 切换术语类型
|