我的报名添加字段

cyl/dev
wangxia 2 years ago
parent b4b0a32d47
commit 08a9e04458

@ -351,11 +351,11 @@ export default {
},
],
tel: [
// {
// required: true,
// message: "",
// trigger: "blur",
// },
{
required: true,
message: "请输入手机号",
trigger: "blur",
},
{
pattern: /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/,
message: '请输入正确的手机号',

@ -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,67 +211,6 @@
<template v-if="item.policy">
<span class="ml12" style="color: #ff4400; cursor: pointer" @click="showInfo2(item.policy)"></span>
</template>
<a-modal class="billDetailModal recordInfo" title="报名信息" :visible="zzvisible" @cancel="policyModalCancel" width="716px" :footer="null">
<a-row class="f16 mb8">
<a-col :span="4">
<span class="dib tr">姓名</span>
</a-col>
<a-col :span="18">
<span class="fwb" v-if="currentBillInfo.userName">{{ currentBillInfo.userName }}</span>
<span class="fwb" v-if="currentBillInfo.sex">/{{ currentBillInfo.sex == "1" || currentBillInfo.sex == "" ? "" : "" }}</span>
<span class="fwb" v-if="currentBillInfo.age">/{{ currentBillInfo.age }}</span>
<span class="fwb" v-if="currentBillInfo.nation && currentBillInfo.nation != '族'">/{{ currentBillInfo.nation }}</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>{{ currentBillInfo.tel == "" || currentBillInfo.tel == null || currentBillInfo.tel == "undefined" ? "-" : currentBillInfo.tel }}</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>{{ currentBillInfo.idCard == "" || currentBillInfo.idCard == null || currentBillInfo.idCard == "undefined" ? "-" : currentBillInfo.idCard }}</span>
</a-col>
</a-row>
<a-row class="f16">
<a-col :span="4">
<span class="dib tr">家庭住址</span>
</a-col>
<a-col :span="18">
<span>{{ currentBillInfo.address == "" || currentBillInfo.address == null || currentBillInfo.address == "undefined" ? "-" : currentBillInfo.address }}</span>
</a-col>
</a-row>
<div style="border-top: 1px dashed #eeeeee; margin-top: 24px; margin-bottom: 24px"></div>
<a-row class="f16 mb8">
<a-col :span="4">
<span class="dib tr">报名岗位</span>
</a-col>
<a-col :span="18">
<span class="fwb">{{ currentBillInfo.storeJobName || "-" }}</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>
</a-col>
</a-row>
<a-row class="f16 mb8">
<a-col :span="4"></a-col>
<a-col :span="18" class="bfbutton">
<a-button style="background-color: #ff4400; color: white; border-radius: 0; border: none" @click="handleCancel"></a-button>
</a-col>
</a-row>
</a-modal>
</div>
<div class="f12 c9 mt8">
{{ item.creator }}
@ -279,6 +218,75 @@
</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">
<span class="dib tr">姓名</span>
</a-col>
<a-col :span="18">
<span class="fwb" v-if="currentBillInfo.userName">{{ currentBillInfo.userName }}</span>
<span class="fwb" v-if="currentBillInfo.sex">/{{ currentBillInfo.sex == "1" || currentBillInfo.sex == "" ? "" : "" }}</span>
<span class="fwb" v-if="currentBillInfo.age">/{{ currentBillInfo.age }}</span>
<span class="fwb" v-if="currentBillInfo.nation && currentBillInfo.nation != '族'">/{{ currentBillInfo.nation }}</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>{{ currentBillInfo.tel == "" || currentBillInfo.tel == null || currentBillInfo.tel == "undefined" ? "-" : currentBillInfo.tel }}</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>{{ currentBillInfo.idCard == "" || currentBillInfo.idCard == null || currentBillInfo.idCard == "undefined" ? "-" : currentBillInfo.idCard }}</span>
</a-col>
</a-row>
<a-row class="f16">
<a-col :span="4">
<span class="dib tr">家庭住址</span>
</a-col>
<a-col :span="18">
<span>{{ currentBillInfo.address == "" || currentBillInfo.address == null || currentBillInfo.address == "undefined" ? "-" : currentBillInfo.address }}</span>
</a-col>
</a-row>
<div style="border-top: 1px dashed #eeeeee; margin-top: 24px; margin-bottom: 24px"></div>
<a-row class="f16 mb8">
<a-col :span="4">
<span class="dib tr">报名岗位</span>
</a-col>
<a-col :span="18">
<span class="fwb">{{ currentBillInfo.storeJobName || "-" }}</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.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>
</a-col>
</a-row>
<a-row class="f16 mb8">
<a-col :span="4"></a-col>
<a-col :span="18" class="bfbutton">
<a-button style="background-color: #ff4400; color: white; border-radius: 0; border: none" @click="handleCancel"></a-button>
</a-col>
</a-row>
</a-modal>
</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;

Loading…
Cancel
Save