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/TaskCheckPersonalView.vue |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/apps/bMiniApp/src/subpackages/task/components/TaskCheckPersonalView.vue b/apps/bMiniApp/src/subpackages/task/components/TaskCheckPersonalView.vue
new file mode 100644
index 0000000..1b76904
--- /dev/null
+++ b/apps/bMiniApp/src/subpackages/task/components/TaskCheckPersonalView.vue
@@ -0,0 +1,61 @@
+<template>
+  <FlexJobTopView>
+    <template #detail>
+      <div class="task-check-card-phone-container">
+        <div class="task-check-card-phone-wrapper">
+          <div class="task-check-card-phone-label">鎵嬫満鍙凤細</div>
+          <div class="task-check-card-phone">13000000000</div>
+        </div>
+        <slot name="actions"></slot>
+      </div>
+    </template>
+  </FlexJobTopView>
+</template>
+
+<script setup lang="ts">
+import { FlexJobTopView } from '@12333/components';
+
+defineOptions({
+  name: 'TaskCheckPersonalView',
+});
+</script>
+
+<style lang="scss">
+@import '@/styles/common.scss';
+
+.task-check-card-phone-container {
+  display: flex;
+  align-items: center;
+  /* height: 52px; */
+  margin-top: 14px;
+
+  .task-check-card-phone-wrapper {
+    display: flex;
+    align-items: center;
+    font-weight: 400;
+    font-size: 24px;
+    line-height: 28px;
+    flex: 1;
+    min-width: 0;
+
+    .flexJob-card-top-info {
+      flex: 1;
+      min-width: 0;
+    }
+
+    .task-check-card-phone-label {
+      color: boleGetCssVar('text-color', 'regular');
+    }
+
+    .task-check-card-phone {
+      color: boleGetCssVar('text-color', 'secondary');
+    }
+  }
+
+  .task-check-card-phone-btn {
+    width: 144px;
+    height: 52px;
+    font-size: 24px;
+  }
+}
+</style>

--
Gitblit v1.9.1