From fbfdd719817dc79e1a9332a641f95cdfcd0eca32 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期五, 14 二月 2025 15:07:18 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp --- apps/bMiniApp/src/subpackages/task/components/TaskCheckCard.vue | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/apps/bMiniApp/src/subpackages/task/components/TaskCheckCard.vue b/apps/bMiniApp/src/subpackages/task/components/TaskCheckCard.vue new file mode 100644 index 0000000..db091ef --- /dev/null +++ b/apps/bMiniApp/src/subpackages/task/components/TaskCheckCard.vue @@ -0,0 +1,51 @@ +<template> + <div class="task-check-card-wrapper"> + <TaskCheckPersonalView class="task-check-card-view"> + <template #actions> + <nut-button type="primary" class="task-check-card-phone-btn">楠屾敹</nut-button> + <!-- <div class="task-check-card-phone-status" :style="{ color: Colors.Success }">楠屾敹閫氳繃</div> --> + </template> + </TaskCheckPersonalView> + </div> +</template> + +<script setup lang="ts"> +import TaskCheckPersonalView from './TaskCheckPersonalView.vue'; +import { Colors } from '@12333/constants'; + +defineOptions({ + name: 'TaskCheckCard', +}); + +// type Props = {}; + +// const props = withDefaults(defineProps<Props>(), {}); +</script> + +<style lang="scss"> +@import '@/styles/common.scss'; + +.task-check-card-wrapper { + background: #ffffff; + border-radius: 12px; + padding: 40px; + padding-right: 26px; + margin-bottom: 24px; + + &:last-child { + margin-bottom: 0; + } + + .task-check-card-view { + .task-check-card-phone-container { + margin-top: 0; + } + } + + .task-check-card-phone-status { + font-size: 24px; + height: 52px; + line-height: 52px; + } +} +</style> -- Gitblit v1.9.1