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

@ -25,7 +25,7 @@
</a-breadcrumb> </a-breadcrumb>
<div class="content"> <div class="content">
<a-form-model ref="ruleForm" :model="form" :colon="true" :rules="rules" size="small"> <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 <!-- <a-input
:value=" :value="
proxyinfo.userName !== '' && proxyinfo.userName !== '' &&
@ -54,7 +54,7 @@
</div> </div>
</a-form-model-item> </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" /> --> <!-- <a-input :value="firminfo.jobName" :disabled="true" /> -->
<div class="pzbox" style="width: 100%"> <div class="pzbox" style="width: 100%">
<!-- <span v-if="jobnameStatus === ''">{{ firminfo.jobName }}</span> --> <!-- <span v-if="jobnameStatus === ''">{{ firminfo.jobName }}</span> -->
@ -70,7 +70,7 @@
<recordBillTable :isModalVisible.sync="isModalVisible" @getSelectedJobId="getSelectedJobId"></recordBillTable> <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" /> --> <!-- <a-input :value="firminfo.aliasName" :disabled="true" /> -->
<div class="pzbox" style="width: 100%"> <div class="pzbox" style="width: 100%">
<span>{{ storeName || "-" }}</span> <span>{{ storeName || "-" }}</span>

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

Loading…
Cancel
Save