Browse Source

fix: 不是审核人能进行审核问题

uni
xuesinan 3 years ago
parent
commit
d589394008
  1. 3
      CHANGELOG.md
  2. 2
      plugins/p-check-work/detail.vue

3
CHANGELOG.md

@ -1,4 +1,4 @@
# 1.0.0 (2022-09-14)
# 1.0.0 (2022-09-15)
### 🌟 新功能
范围|描述|commitId
@ -133,6 +133,7 @@
- | 插件id重复的显示问题 | [9010839](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/9010839)
- | 查询插件 | [542d714](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/542d714)
- | 查询查件详情 | [5935a3d](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/5935a3d)
- | 打卡时间选择 | [3af67ba](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/3af67ba)
- | 登录页验证码获取 | [108e322](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/108e322)
- | 顶部状态栏不显示问题 | [a63dfa4](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/a63dfa4)
- | 返回错误码不提示 | [29e4655](https://101.201.226.163:50022/ccsens_tall/TALL-MUI-4/commits/29e4655)

2
plugins/p-check-work/detail.vue

@ -306,7 +306,7 @@
//
async function showActionPanel(status, type, time, data) {
if (status !== 1) return;
if (status !== 1 || data.isChecker !== 1) return;
actionShow.value = true;
timeType.value = type;
examineParams.value = { id: data.id, [type]: time, projectId, type: 0 };

Loading…
Cancel
Save