|
|
|
|
@ -113,7 +113,7 @@
|
|
|
|
|
<div>{{ item.storeJobName }}</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<p>{{ item.policy }}</p>
|
|
|
|
|
<p>员工薪资:<br/>{{ item.employeeSalary || '-' }} <br/> <br/>代理政策:<br/>{{ item.policy || '-' }}</p>
|
|
|
|
|
<div v-show="item.isunfold" class="policyControl" @click="changeStatus(item, index)" :ref="'Control' + index">
|
|
|
|
|
<span v-show="item.controlUnfold">展开</span>
|
|
|
|
|
<span v-show="!item.controlUnfold">收起</span>
|
|
|
|
|
@ -211,6 +211,13 @@
|
|
|
|
|
<template v-if="item.policy">
|
|
|
|
|
<span class="ml12" style="color: #ff4400; cursor: pointer" @click="showInfo2(item.policy)">详情</span>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="f12 c9 mt8">
|
|
|
|
|
{{ item.creator }}
|
|
|
|
|
<span class="ml8">{{ formatDateYMDHM(item.createTime) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<a-modal class="billDetailModal recordInfo" title="报名信息" :visible="zzvisible" @cancel="policyModalCancel" width="716px" :footer="null">
|
|
|
|
|
<a-row class="f16 mb8">
|
|
|
|
|
<a-col :span="4">
|
|
|
|
|
@ -259,7 +266,15 @@
|
|
|
|
|
</a-row>
|
|
|
|
|
<a-row class="f16 mb8">
|
|
|
|
|
<a-col :span="4">
|
|
|
|
|
<span class="dib tr">政策:</span>
|
|
|
|
|
<span class="dib tr">员工薪资:</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="18">
|
|
|
|
|
<span style="white-space: pre-wrap">{{ currentBillInfo.employeeSalary || "-" }}</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
<a-row class="f16 mb8">
|
|
|
|
|
<a-col :span="4">
|
|
|
|
|
<span class="dib tr">代理政策:</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="18">
|
|
|
|
|
<span style="white-space: pre-wrap">{{ currentBillInfo.policy || "-" }}</span>
|
|
|
|
|
@ -272,13 +287,6 @@
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
</a-modal>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="f12 c9 mt8">
|
|
|
|
|
{{ item.creator }}
|
|
|
|
|
<span class="ml8">{{ formatDateYMDHM(item.createTime) }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else>
|
|
|
|
|
@ -1382,8 +1390,8 @@ export default {
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
> p {
|
|
|
|
|
white-space: break-space;
|
|
|
|
|
text-align: center;
|
|
|
|
|
// white-space: break-space;
|
|
|
|
|
// text-align: center;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
@ -1425,6 +1433,9 @@ export default {
|
|
|
|
|
// 跟进信息的状态
|
|
|
|
|
#progressinfo {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
.ui-step-one:last-child .ui-list-info {
|
|
|
|
|
border-left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#progressinfo > div {
|
|
|
|
|
margin-left: 24px;
|
|
|
|
|
|