bug1000356:标签管理-后台创建了标签,但会员管理无法选上

master
382696293@qq.com 2 years ago
parent 12aa69ec00
commit b1f0b10302

@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectDeptById" parameterType="Long" resultMap="SysTagResult">
<include refid="selectDeptVo"/>
where id = #{id}
where id = #{id} and del_flag = '0'
</select>
<select id="checkDeptExistUser" parameterType="Long" resultType="int">

@ -1364,7 +1364,6 @@ import {
selectUserCount,
getMiniProgramTags,
getWecomTags,
getPurchaseChannel,
getRegionByPid,
batchAddMiniProgramTag,
allAddMiniProgramTag,
@ -1675,9 +1674,7 @@ export default {
this.getTags()
//
this.getProvinceList()
//
this.getDeptTree()
this.getScriptTree()
//
this.getAllInstrument()
},
@ -1726,10 +1723,6 @@ export default {
getWecomTags().then((Response) => {
this.wecomTags = Response.data
})
//
getPurchaseChannel().then((Response) => {
this.purchaseChannels = Response.data
})
//
getMiniProgramTagsTree().then((Response) => {
this.miniProgramTagTree = Response.data
@ -2078,12 +2071,14 @@ export default {
})
return
}
if (this.batchOperateValue == 1) {
if (this.batchOperateValue == 1) {
this.title = '添加小程序标签'
}
if (this.batchOperateValue == 2) {
this.title = '删除小程序标签'
}
//
this.getDeptTree()
this.batchMiniProgramVisible = true
}
if (this.batchOperateValue == 3 || this.batchOperateValue == 4) {
@ -2093,6 +2088,8 @@ export default {
if (this.batchOperateValue == 4) {
this.title = '删除小程序标签'
}
//
this.getDeptTree()
this.batchMiniProgramVisible = true
}
@ -2122,10 +2119,12 @@ export default {
})
return
}
this.getScriptTree()
this.batchScriptVisible = true
this.title = '批量发送话术'
}
if (this.batchOperateValue == 8) {
this.getScriptTree()
this.batchScriptVisible = true
this.title = '全量发送话术'
}
@ -2339,9 +2338,10 @@ export default {
this.miniProgramForm.tagIdArray,
this.ids
).then((Response) => {
this.$modal.msgSuccess('批量添加小程序标签成功')
this.$modal.msgSuccess('批量添加小程序标签成功');
this.cancelMiniProgramDialog(true)
})
this.getList();
}
})
}
@ -2356,6 +2356,7 @@ export default {
this.$modal.msgSuccess('批量删除小程序标签成功')
this.cancelMiniProgramDialog(true)
})
this.getList();
}
})
}
@ -2370,6 +2371,7 @@ export default {
this.$modal.msgSuccess('全量添加小程序标签成功')
this.cancelMiniProgramDialog(true)
})
this.getList();
}
})
}
@ -2384,6 +2386,7 @@ export default {
this.$modal.msgSuccess('全量删除小程序标签成功')
this.cancelMiniProgramDialog(true)
})
this.getList();
}
})
}
@ -2396,6 +2399,7 @@ export default {
this.$modal.msgSuccess('批量操作积分成功')
this.cancelIntegralDialog(true)
})
this.getList();
}
})
}
@ -2409,6 +2413,7 @@ export default {
this.cancelIntegralDialog(true)
}
)
this.getList();
}
})
}
@ -2419,12 +2424,14 @@ export default {
batchSendScript(this.scriptForm).then((Response) => {
this.$modal.msgSuccess('批量发送话术成功')
this.cancelScriptDialog(true)
this.getList();
})
}
if (this.batchOperateValue == 8) {
allSendScript(this.scriptForm, this.queryParams).then((Response) => {
this.$modal.msgSuccess('全量发送话术成功')
this.cancelScriptDialog(true)
this.getList();
})
}
@ -2436,6 +2443,7 @@ export default {
batchAddRemark(this.remarkForm).then((Response) => {
this.$modal.msgSuccess('批量备注成功')
this.cancelRemarkDialog(true)
this.getList();
})
}
})
@ -2448,6 +2456,7 @@ export default {
(Response) => {
this.$modal.msgSuccess('批量备注成功')
this.cancelRemarkDialog(true)
this.getList();
}
)
}

Loading…
Cancel
Save