|
@@ -14,8 +14,18 @@
|
|
|
</template>
|
|
|
<template #numericalValue>
|
|
|
<div class="font-size-14 color-error my-1">
|
|
|
- <div>按众聘岗位分配比例计算后的赏金: 推荐人{{ calculation('hirePrice', 1) }}元、平台{{ calculation('hirePrice', 0) }}元、投递人{{ calculation('hirePrice', 2) }}元</div>
|
|
|
- <div>按众聘岗位分配比例计算后的积分: 推荐人{{ calculation('hirePoint', 1) }}点、平台{{ calculation('hirePoint', 0) }}点、投递人{{ calculation('hirePoint', 2) }}点</div>
|
|
|
+ <div class="d-flex">
|
|
|
+ 按众聘岗位分配比例计算后的赏金:
|
|
|
+ <span class="calculation ml-3">推荐人{{ calculation('hirePrice', 1) }}元</span>
|
|
|
+ <span class="calculation">平台{{ calculation('hirePrice', 0) }}元</span>
|
|
|
+ <span class="calculation">投递人{{ calculation('hirePrice', 2) }}元</span>
|
|
|
+ </div>
|
|
|
+ <div class="d-flex">
|
|
|
+ 按众聘岗位分配比例计算后的积分:
|
|
|
+ <span class="calculation ml-3">推荐人{{ calculation('hirePoint', 1) }}点</span>
|
|
|
+ <span class="calculation">平台{{ calculation('hirePoint', 0) }}点</span>
|
|
|
+ <span class="calculation">投递人{{ calculation('hirePoint', 2) }}点</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template #positionId="{ item }">
|
|
@@ -282,4 +292,8 @@ defineExpose({
|
|
|
top: -22px;
|
|
|
left: 0;
|
|
|
}
|
|
|
+.calculation {
|
|
|
+ display: block;
|
|
|
+ width: 120px;
|
|
|
+}
|
|
|
</style>
|