diff --git a/CHANGELOG.md b/CHANGELOG.md
index 978db18..70fa6f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -43,6 +43,7 @@
- | 标题栏变化 | [3898cfe](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/3898cfe)
- | 标题栏变化 | [c0fcd9d](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/c0fcd9d)
- | 标题栏角色栏全局任务组件新建 | [0500cb4](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/0500cb4)
+ - | 检查交付物 | [9d92be5](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/9d92be5)
- | 模拟接口测试 | [69e7931](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/69e7931)
- | 添加内置插件-交付物 | [6e0bc46](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/6e0bc46)
- | 添加子任务插件 子项目插件 | [7bda7e2](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/7bda7e2)
diff --git a/src/plugins/p-delivery-history/p-delivery-history.vue b/src/plugins/p-delivery-history/p-delivery-history.vue
index f5a0455..0eda6da 100644
--- a/src/plugins/p-delivery-history/p-delivery-history.vue
+++ b/src/plugins/p-delivery-history/p-delivery-history.vue
@@ -23,8 +23,8 @@
{{ checker.score }}分
未审核
- 驳回
- 通过
+ 驳回
+ 通过
@@ -87,8 +87,13 @@ export default {
this.$refs.popup.close('bottom');
},
- submit(remark, score) {
- this.checkDeliver(remark, score);
+ async submit(remark, score) {
+ try {
+ await this.checkDeliver(remark, score);
+ this.closeScore();
+ } catch (error) {
+ console.error('error: ', error);
+ }
},
/**