|
@@ -592,7 +592,7 @@
|
|
|
|
|
|
|
|
<div>搜索标签:
|
|
<div>搜索标签:
|
|
|
<el-input v-model="queryTagParams.name" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
|
|
<el-input v-model="queryTagParams.name" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="getPageListTagGroup()">搜索</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchTags(queryTagParams.name)">搜索</el-button>
|
|
|
<el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
|
|
<el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
<div v-for="item in tagGroupList" :key="item.id" >
|
|
<div v-for="item in tagGroupList" :key="item.id" >
|
|
@@ -629,8 +629,8 @@
|
|
|
|
|
|
|
|
<el-dialog title="批量添加标签" :visible.sync="tagOpen" width="800px" append-to-body>
|
|
<el-dialog title="批量添加标签" :visible.sync="tagOpen" width="800px" append-to-body>
|
|
|
<div>搜索标签:
|
|
<div>搜索标签:
|
|
|
- <el-input v-model="queryTagParams.name" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
|
|
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="getPageListTagGroup()">搜索</el-button>
|
|
|
|
|
|
|
+ <el-input v-model="tagChange.tagName" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
|
|
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchTags(tagChange.tagName)">搜索</el-button>
|
|
|
<el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
|
|
<el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
<el-form ref="form" :model="addTagForm" label-width="80px">
|
|
<el-form ref="form" :model="addTagForm" label-width="80px">
|
|
@@ -1523,7 +1523,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
getPageListTagGroup(){
|
|
getPageListTagGroup(){
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
this.queryTagParams.corpId=this.queryParams.corpId
|
|
this.queryTagParams.corpId=this.queryParams.corpId
|
|
|
allListTagGroupPage(this.queryTagParams).then(response => {
|
|
allListTagGroupPage(this.queryTagParams).then(response => {
|
|
|
this.tagGroupList = response.rows;
|
|
this.tagGroupList = response.rows;
|