|
|
|
|
@ -36,7 +36,7 @@
|
|
|
|
|
<button @click="changepage(1)">下一页</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<a-table :columns="columns" class="" :data-source="data" :pagination="false" @change="onChange" :loading="{ spinning: isspinning, tip: '加载中', wrapperClassName: 'spinstyle', }" :rowKey="(record) => record.index">
|
|
|
|
|
<a-table :columns="columns" class :data-source="data" :pagination="false" @change="onChange" :loading="{ spinning: isspinning, tip: '加载中', wrapperClassName: 'spinstyle', }" :rowKey="(record) => record.index">
|
|
|
|
|
<a slot="name" slot-scope="text" style="height:0px">{{ text }}</a>
|
|
|
|
|
<a slot="userDetail" style="color: #ff4400;height:0px" slot-scope="text, text1" @click="toDetail(text1)">详情</a>
|
|
|
|
|
</a-table>
|
|
|
|
|
@ -152,72 +152,11 @@
|
|
|
|
|
<div class="cb-cricle"></div>
|
|
|
|
|
<div class="ui-list-info">
|
|
|
|
|
<!-- :style="padding-bottom: item.desp == '' ? '18px' : '24px';" -->
|
|
|
|
|
<div class="f12 c6" style="white-space: pre-line" v-if="item.desp != ''">
|
|
|
|
|
{{ item.desp }}
|
|
|
|
|
<div class="f12 c6" style="white-space: pre-line" v-html="item.desp" v-if="item.desp != ''">
|
|
|
|
|
<!-- {{ }} -->
|
|
|
|
|
<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">
|
|
|
|
|
{{ item.creator }}
|
|
|
|
|
@ -228,7 +167,67 @@
|
|
|
|
|
</template>
|
|
|
|
|
</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.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>
|
|
|
|
|
<a-modal class="editDetailModal" transitionName centered v-model="editTownsmanVisibel" width="716px" @cancel="cancelEditTownsman" :footer="null" destroyOnClose>
|
|
|
|
|
<div slot="title">老乡信息</div>
|
|
|
|
|
<div class="editInfoContent">
|
|
|
|
|
@ -772,7 +771,7 @@ export default {
|
|
|
|
|
console.log(this.allOrders)
|
|
|
|
|
this.allOrders.forEach((item1, index) => {
|
|
|
|
|
this.replaceIndex(item1, index)
|
|
|
|
|
console.log(item1)
|
|
|
|
|
// console.log(item1)
|
|
|
|
|
for (var key in item1.records) {
|
|
|
|
|
// console.log(key, item1.records[key]);
|
|
|
|
|
item1.records[key].forEach((item, index) => {
|
|
|
|
|
@ -809,7 +808,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log(this.allOrders)
|
|
|
|
|
this.allOrders = this.allOrders.reverse()
|
|
|
|
|
// this.allOrders = this.allOrders.reverse()
|
|
|
|
|
})
|
|
|
|
|
this.getTownsmanImg(e)
|
|
|
|
|
},
|
|
|
|
|
|