提交代码

dev_xd
姜玉琦 2025-07-01 18:00:07 +08:00
parent e9e2a003aa
commit ca25764569
3 changed files with 3 additions and 3 deletions

View File

@ -374,7 +374,7 @@ export default {
data: it,
}
})
this.chart2Data = (res[1].data || []).map((it) => {
this.chart2Data = (res[1].data.fi || []).map((it) => {
return {
id: it.nickedInfo,
name: it.dangerType,

View File

@ -58,7 +58,7 @@
<if test='activeTags == "users"'>, bus.user_picture as businessImg, bus.card_code as businessMk1, sdd.dict_label as businessMk2, bus.sub_dept_name as businessMk3</if>
from vw_flow_await fa
<if test='activeTags == "depts"'> left join pro_project_info_subdepts_users bus on bus.id = fa.businessKey left join pro_project_info_subdepts sud on sud.id = bus.sub_dept_id left join sys_dict_data sdd on sdd.dict_value = bus.sub_dept_type and sdd.dict_type='sub_dept_type' </if>
<if test='activeTags == "users"'> left join pro_project_info_subdepts_users bus on bus.id = fa.businessKey left join sys_dict_data sdd on sdd.dict_value = bus.craft_post and sdd.dict_type='pro_craft_post'</if>
<if test='activeTags == "users" or (groupIds != null and groupIds.size()>0)'> left join pro_project_info_subdepts_users bus on bus.id = fa.businessKey left join sys_dict_data sdd on sdd.dict_value = bus.craft_post and sdd.dict_type='pro_craft_post'</if>
where
fa.taskName != '申请人提交'
<if test="procDefName != null and procDefName != ''"> and fa.procDefName like concat('%', #{procDefName}, '%')</if>

View File

@ -350,7 +350,7 @@ function doBatchAdd(datas) {
datas.forEach((it) => {
it.projectId = userStore.currentPrjId
it.comId = userStore.currentComId
it.infoType = 0
it.infoType = 1
let users = data.users.filter((u) => u.userId == it.lordSent)
it.lordSent = users.map((u) => u.userId).join(',')
it.lordSentUser = users.map((u) => u.userName).join(',')