|
|
@@ -454,6 +454,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="企业id" align="center" prop="corpId" />
|
|
|
+ <el-table-column label="广告业务ID" align="center" prop="traceId" />
|
|
|
<el-table-column label="重粉看课历史" width="100px" align="center" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.fsUserId">
|
|
|
@@ -716,7 +717,7 @@
|
|
|
<el-dialog title="批量移除标签" :visible.sync="tagDelOpen" width="800px" append-to-body>
|
|
|
<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-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>
|
|
|
</div>
|
|
|
<el-form ref="form" :model="addTagForm" label-width="80px">
|
|
|
@@ -1722,7 +1723,6 @@ export default {
|
|
|
if(this.tagGroupList[i].tag[x].isSelected==true){
|
|
|
this.addTagForm.tagIds.push(this.tagGroupList[i].tag[x].tagId)
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
if(this.addTagForm.tagIds==[]||this.addTagForm.tagIds==null||this.addTagForm.tagIds==""){
|
|
|
@@ -1732,11 +1732,17 @@ export default {
|
|
|
this.addTagForm.corpId=this.queryParams.corpId
|
|
|
this.addTagForm.userIds=this.ids;
|
|
|
this.addTagForm.filter = this.tagFilter;
|
|
|
- let obj = JSON.parse(JSON.stringify(this.queryParams))
|
|
|
- if(obj.tagIds !== null && obj.tagIds !== undefined && obj.tagIds !== ''){
|
|
|
+
|
|
|
+ // 修改这里:正确处理参数对象
|
|
|
+ let obj = JSON.parse(JSON.stringify(this.queryParams));
|
|
|
+
|
|
|
+ // 将逗号分隔的字符串转换为数组
|
|
|
+ if(obj.tagIds && typeof obj.tagIds === 'string') {
|
|
|
obj.tagIds = obj.tagIds.split(",");
|
|
|
}
|
|
|
- this.addTagForm.param = obj;
|
|
|
+ if(obj.outTagIds && typeof obj.outTagIds === 'string') {
|
|
|
+ obj.outTagIds = obj.outTagIds.split(",");
|
|
|
+ }
|
|
|
|
|
|
let loadingRock = this.$loading({
|
|
|
lock: true,
|