From df7c6af1c1cfd2e9bda249e381aecb5482120d14 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 19 二月 2025 10:09:10 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp --- packages/components/src/Card/TaskCard.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/packages/components/src/Card/TaskCard.vue b/packages/components/src/Card/TaskCard.vue index ddee2ff..27a75cb 100644 --- a/packages/components/src/Card/TaskCard.vue +++ b/packages/components/src/Card/TaskCard.vue @@ -21,7 +21,7 @@ </div> <div class="task-card-actions" v-if="showActions"> <slot name="actions"> - <nut-button type="primary">鎶ュ悕</nut-button> + <nut-button type="primary" @click.stop="handleSign">鎶ュ悕</nut-button> </slot> </div> </div> @@ -43,6 +43,8 @@ const props = withDefaults(defineProps<Props>(), { showActions: true, }); + +function handleSign() {} </script> <style lang="scss"> -- Gitblit v1.9.1