|
@@ -279,6 +279,14 @@ export default {
|
|
|
this.showConfirmDialog('是否删除该标签组?',()=>{
|
|
|
api.deleteTagGroup({ids:id,type:type}).then((res)=>{
|
|
|
if(res.data.code=='0'){
|
|
|
+ if(!this.searched){
|
|
|
+ //未点确认时清空搜索条件
|
|
|
+ this.filter={
|
|
|
+ tagType: [], //标签类型
|
|
|
+ tagAdscription: '', //标签归属
|
|
|
+ tagSysName: '', //标签系统名称
|
|
|
+ };
|
|
|
+ }
|
|
|
this.getDataList();
|
|
|
this.warning(res.data.msg || '操作成功','success');
|
|
|
}else{
|