wupengfei
8 小时以前 f3274a6594094d4419a0538ebc16d4601be4ef9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
  <div class="task-card-wrapper">
    <div class="task-card-title-wrapper">
      <div class="task-card-title">宁波人力无忧人力资源有限公司</div>
    </div>
    <div class="task-card-footer">
      <div class="task-card-actions" :style="{ color: '#FF4D4F' }">
        {{ '待签约' }}
      </div>
      <img :src="IconArrow" class="task-card-arrow" />
    </div>
  </div>
</template>
 
<script setup lang="ts">
import { CommonTaskCardProps } from './card';
import IconArrow from '@/assets/setting/icon-arrow.png';
 
defineOptions({
  name: 'MineAgreementSignCard',
});
 
const props = withDefaults(defineProps<CommonTaskCardProps>(), {});
</script>
 
<style lang="scss">
@import '@/styles/common.scss';
 
.task-card-wrapper {
  padding: 24px 32px;
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 12px;
 
  &:last-child {
    margin-bottom: 0;
  }
 
  .task-card-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
 
    .task-card-title {
      flex: 1;
      min-width: 0;
      @include ellipsis;
      font-size: 30px;
      color: boleGetCssVar('text-color', 'primary');
      line-height: 42px;
    }
  }
 
  .task-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
 
    .task-card-actions {
      font-size: 24px;
    }
 
    .task-card-arrow {
      width: 24px;
      height: 24px;
    }
  }
}
</style>