|
@@ -347,6 +347,10 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
searchTagList() {
|
|
|
+ const editData = this.$props.editData;
|
|
|
+ if(editData.id){
|
|
|
+ return;
|
|
|
+ }
|
|
|
let region1 = this.form.region1, region2 = this.form.region2;
|
|
|
let paramFst = !!region2 ? api.getGroupParams(region2): {};
|
|
|
let paramSec = {
|
|
@@ -355,7 +359,7 @@ export default {
|
|
|
"tagName":'',
|
|
|
"notIds": [],
|
|
|
}
|
|
|
- console.log(paramFst,paramSec,7787)
|
|
|
+ // console.log(paramFst,paramSec,7787)
|
|
|
let params = Object.assign({},paramFst,paramSec)
|
|
|
api.searchTagList(params).then((res) => {
|
|
|
if (res.data.code === '0') {
|