cyl/dev
jscyl13849007907 1 year ago
parent a37aef3b94
commit 1f0a216023

@ -25,7 +25,7 @@
</a-breadcrumb>
<div class="content">
<a-form-model ref="ruleForm" :model="form" :colon="true" :rules="rules" size="small">
<a-form-model-item ref="proxy" label="报名人" prop :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" style="height: 30px; margin-bottom: 0px">
<a-form-model-item ref="proxy" label="报名人" prop :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" >
<!-- <a-input
:value="
proxyinfo.userName !== '' &&
@ -54,7 +54,7 @@
</div>
</a-form-model-item>
<a-form-model-item ref="username" label="报名职位" prop="username" :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" style="height: 30px; margin-bottom: 10px">
<a-form-model-item ref="username" label="报名职位" prop="username" :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" style=" margin-bottom: 10px">
<!-- <a-input :value="firminfo.jobName" :disabled="true" /> -->
<div class="pzbox" style="width: 100%">
<!-- <span v-if="jobnameStatus === ''">{{ firminfo.jobName }}</span> -->
@ -70,7 +70,7 @@
<recordBillTable :isModalVisible.sync="isModalVisible" @getSelectedJobId="getSelectedJobId"></recordBillTable>
<a-form-model-item ref="username" label="报名企业" prop="username" :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" style="height: 30px; margin-bottom: 0px">
<a-form-model-item ref="username" label="报名企业" prop="username" :wrapperCol="{ span: 18 }" :labelCol="{ span: 4 }" style="margin-bottom: 0px">
<!-- <a-input :value="firminfo.aliasName" :disabled="true" /> -->
<div class="pzbox" style="width: 100%">
<span>{{ storeName || "-" }}</span>

@ -1,26 +1,21 @@
<template>
<div>
<a-modal title="职位选择" width="1200px" :visible="isModalVisible" @ok="confirmModal" @cancel="cancelModal" :footer="null">
<div class="f40">
<a-input-search placeholder="搜索职位" enter-button="" allow-clear @search="onSearch" style="width:300px;margin-bottom: 20px;"/>
<!-- @search="onSearch" -->
</div>
<a-table :columns="tableColumns" :loading="isspinning" :pagination="false" :data-source="tableData" size="small">
<span slot="cz" slot-scope="text, record">
<a href="javascript:;" style="color: #1890ff;" @click="selectedJob(record)"></a>
</span>
</a-table>
<div class="pagecontainer f40" style="justify-content: start;">
<a-pagination :current="+formvalue.pageNum" :default-current="1" :defaultPageSize="8" :total="formvalue.total" @change="pageChange" />
<div class="ant-pagination-options-quick-jumper">
跳至
<input ref="pageinput" type="text" @keyup.enter="inputpageChange" @blur="inputpageChange" />
</div>
<a-modal title="职位选择" width="800px" :visible="isModalVisible" @ok="confirmModal" @cancel="cancelModal" :footer="null">
<div class="f40">
<a-input-search placeholder="搜索职位" enter-button="" allow-clear @search="onSearch" style="width:300px;margin-bottom: 20px;"/>
</div>
<a-table :columns="tableColumns" :loading="isspinning" :pagination="false" :data-source="tableData" size="small">
<span slot="cz" slot-scope="text, record">
<a href="javascript:;" style="color: #1890ff;" @click="selectedJob(record)"></a>
</span>
</a-table>
<div class="pagecontainer f40" style="justify-content: start;">
<a-pagination :current="+formvalue.pageNum" :default-current="1" :defaultPageSize="8" :total="formvalue.total" @change="pageChange" />
<div class="ant-pagination-options-quick-jumper">
跳至
<input ref="pageinput" type="text" @keyup.enter="inputpageChange" @blur="inputpageChange" />
</div>
</div>
</a-modal>
</div>
</template>
@ -61,21 +56,21 @@ export default {
dataIndex: "agencyName",
key: "agencyName",
ellipsis: true,
width:200,
width:140,
},
{
title: "服务费",
dataIndex: "servetype",
key: "servetype",
ellipsis: true,
width:180,
width:100,
},
{
title: "员工薪资",
dataIndex: "jobpricemonth",
key: "jobpricemonth",
ellipsis: true,
width:180,
width:100,
customRender: (text, row, index) => {
// console.log(row);
// console.log(row.salaryClassify);
@ -146,14 +141,17 @@ export default {
openModal() {
this.isModalVisible = true;
//
// this.$emit('update:isModalVisible', true);
},
confirmModal() {
this.isModalVisible = false;
//
// this.$emit('update:isModalVisible', false);
},
cancelModal() {
this.isModalVisible = false;
//
this.$emit('update:isModalVisible', false);
},
//

Loading…
Cancel
Save