30718
This commit is contained in:
@@ -22,14 +22,14 @@
|
|||||||
<ai-info-item label="任务状态" isLine>
|
<ai-info-item label="任务状态" isLine>
|
||||||
<span>{{ dict.getLabel('mstStatus', info.status) }}</span>
|
<span>{{ dict.getLabel('mstStatus', info.status) }}</span>
|
||||||
</ai-info-item>
|
</ai-info-item>
|
||||||
<ai-info-item label="创建人">
|
<ai-info-item label="创建人" isLine>
|
||||||
<div class="user">
|
<div class="user">
|
||||||
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
|
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
|
||||||
<span><ai-open-data type="userName" :openid="info.createUserId"></ai-open-data></span>
|
<span><ai-open-data type="userName" :openid="info.createUserId"></ai-open-data></span>
|
||||||
(<span><ai-open-data type="departmentName" :openid="info.createUserDept"></ai-open-data></span>)
|
(<span><ai-open-data type="departmentName" :openid="info.createUserDept"></ai-open-data></span>)
|
||||||
</div>
|
</div>
|
||||||
</ai-info-item>
|
</ai-info-item>
|
||||||
<ai-info-item label="审批人">
|
<ai-info-item label="审批人" v-if="info.enableExamine === '1'">
|
||||||
<div class="user-wrapper">
|
<div class="user-wrapper">
|
||||||
<div class="user" v-for="(item, index) in info.examines" :key="index">
|
<div class="user" v-for="(item, index) in info.examines" :key="index">
|
||||||
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
|
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
|
||||||
@@ -37,6 +37,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ai-info-item>
|
</ai-info-item>
|
||||||
|
<ai-info-item label="审批拒绝人" v-if="info.enableExamine === '1'">
|
||||||
|
<div class="user">
|
||||||
|
<img src="https://cdn.cunwuyun.cn/dvcp/announce/user.png" />
|
||||||
|
<span><ai-open-data type="userName" :openid="rejecterId"></ai-open-data></span>
|
||||||
|
</div>
|
||||||
|
</ai-info-item>
|
||||||
<ai-info-item label="创建时间" :value="info.createTime"></ai-info-item>
|
<ai-info-item label="创建时间" :value="info.createTime"></ai-info-item>
|
||||||
<ai-info-item label="群发时间" :value="info.choiceTime"></ai-info-item>
|
<ai-info-item label="群发时间" :value="info.choiceTime"></ai-info-item>
|
||||||
<ai-info-item label="群发范围" isLine>
|
<ai-info-item label="群发范围" isLine>
|
||||||
@@ -305,7 +311,8 @@
|
|||||||
groups: [],
|
groups: [],
|
||||||
timer: null,
|
timer: null,
|
||||||
min: 60,
|
min: 60,
|
||||||
isDisabled: false
|
isDisabled: false,
|
||||||
|
rejecterId: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -427,6 +434,14 @@
|
|||||||
groupIds: v.groupIds.split(',')
|
groupIds: v.groupIds.split(',')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (res.data.examines && res.data.examines.length) {
|
||||||
|
const user = res.data.examines.filter(v => v.examineStatus === '2')
|
||||||
|
|
||||||
|
if (user.length) {
|
||||||
|
this.rejecterId = user[0].examineUserId
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user