flat: 资金合并
This commit is contained in:
@@ -171,6 +171,9 @@
|
|||||||
v-if="vaildData(permission.manage_mission_zpview, false)"
|
v-if="vaildData(permission.manage_mission_zpview, false)"
|
||||||
>招聘情况</el-button> -->
|
>招聘情况</el-button> -->
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="wage"slot-scope="{ row }">
|
||||||
|
<div>{{row.wage}}{{wageUnitCategoryStateEnum[row.wageUnitCategory]}}</div>
|
||||||
|
</template>
|
||||||
</avue-crud>
|
</avue-crud>
|
||||||
<el-drawer title="详情" :visible.sync="viewDrawer" size="60%">
|
<el-drawer title="详情" :visible.sync="viewDrawer" size="60%">
|
||||||
<mission-view :model="view"></mission-view>
|
<mission-view :model="view"></mission-view>
|
||||||
@@ -196,6 +199,10 @@ import zpView from "./zpView";
|
|||||||
import { missionState, wageUnitCategoryState, recruitStatus, dataSourcesEnum, educationState } from "@/common/dic";
|
import { missionState, wageUnitCategoryState, recruitStatus, dataSourcesEnum, educationState } from "@/common/dic";
|
||||||
import { calcDate } from "@/util/date";
|
import { calcDate } from "@/util/date";
|
||||||
import { Message } from "element-ui";
|
import { Message } from "element-ui";
|
||||||
|
const wageUnitCategoryStateEnum = {}
|
||||||
|
wageUnitCategoryState.map((item) => {
|
||||||
|
wageUnitCategoryStateEnum[item.value] = item.label
|
||||||
|
})
|
||||||
import lodash from "lodash";
|
import lodash from "lodash";
|
||||||
const message = lodash.throttle(
|
const message = lodash.throttle(
|
||||||
function (options) {
|
function (options) {
|
||||||
@@ -214,6 +221,7 @@ export default {
|
|||||||
dataSourcesEnum,
|
dataSourcesEnum,
|
||||||
educationState,
|
educationState,
|
||||||
downloadButton: false,
|
downloadButton: false,
|
||||||
|
wageUnitCategoryStateEnum,
|
||||||
view: {},
|
view: {},
|
||||||
form: {},
|
form: {},
|
||||||
selectionList: [],
|
selectionList: [],
|
||||||
@@ -284,15 +292,8 @@ export default {
|
|||||||
search: false,
|
search: false,
|
||||||
searchSpan: 5,
|
searchSpan: 5,
|
||||||
display: false,
|
display: false,
|
||||||
},
|
slot: true,
|
||||||
{
|
width: 140,
|
||||||
label: "工资单位",
|
|
||||||
prop: "wageUnitCategory",
|
|
||||||
search: false,
|
|
||||||
// hide: true,
|
|
||||||
dicData: wageUnitCategoryState,
|
|
||||||
searchSpan: 5,
|
|
||||||
display: false,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "零工工种",
|
label: "零工工种",
|
||||||
|
|||||||
@@ -131,6 +131,9 @@
|
|||||||
>导出</el-button
|
>导出</el-button
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="wage"slot-scope="{ row }">
|
||||||
|
<div>{{row.wage}}{{wageUnitCategoryStateEnum[row.wageUnitCategory]}}</div>
|
||||||
|
</template>
|
||||||
</avue-crud>
|
</avue-crud>
|
||||||
<delay-dialog
|
<delay-dialog
|
||||||
ref="delay"
|
ref="delay"
|
||||||
@@ -168,7 +171,10 @@ import { calcDate } from "@/util/date";
|
|||||||
import { Message } from "element-ui";
|
import { Message } from "element-ui";
|
||||||
import lodash from "lodash";
|
import lodash from "lodash";
|
||||||
import {Auditing} from "@/api/manage/mission";
|
import {Auditing} from "@/api/manage/mission";
|
||||||
|
const wageUnitCategoryStateEnum = {}
|
||||||
|
wageUnitCategoryState.map((item) => {
|
||||||
|
wageUnitCategoryStateEnum[item.value] = item.label
|
||||||
|
})
|
||||||
const message = lodash.throttle(
|
const message = lodash.throttle(
|
||||||
function (options) {
|
function (options) {
|
||||||
Message(options);
|
Message(options);
|
||||||
@@ -186,6 +192,7 @@ export default {
|
|||||||
dataSourcesEnum,
|
dataSourcesEnum,
|
||||||
educationState,
|
educationState,
|
||||||
downloadButton: false,
|
downloadButton: false,
|
||||||
|
wageUnitCategoryStateEnum,
|
||||||
view: {},
|
view: {},
|
||||||
form: {},
|
form: {},
|
||||||
selectionList: [],
|
selectionList: [],
|
||||||
@@ -254,15 +261,8 @@ export default {
|
|||||||
search: false,
|
search: false,
|
||||||
searchSpan: 5,
|
searchSpan: 5,
|
||||||
display: false,
|
display: false,
|
||||||
},
|
slot: true,
|
||||||
{
|
width: 140,
|
||||||
label: "工资单位",
|
|
||||||
prop: "wageUnitCategory",
|
|
||||||
search: false,
|
|
||||||
// hide: true,
|
|
||||||
dicData: wageUnitCategoryState,
|
|
||||||
searchSpan: 5,
|
|
||||||
display: false,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "岗位工种",
|
label: "岗位工种",
|
||||||
|
|||||||
@@ -10,6 +10,9 @@
|
|||||||
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
||||||
v-show="vaildData(permission.tenant_mission_add, false)">批量导入</el-button>
|
v-show="vaildData(permission.tenant_mission_add, false)">批量导入</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="wage"slot-scope="{ row }">
|
||||||
|
<div>{{row.wage}}{{wageUnitCategoryStateEnum[row.wageUnitCategory]}}</div>
|
||||||
|
</template>
|
||||||
<!--/自定义按钮-->
|
<!--/自定义按钮-->
|
||||||
<!--自定义列-->
|
<!--自定义列-->
|
||||||
<template slot="missionTitle" slot-scope="{ row }">
|
<template slot="missionTitle" slot-scope="{ row }">
|
||||||
@@ -110,7 +113,10 @@ import { dateFormat } from "@/util/date";
|
|||||||
import { getTemplate } from "@/api/resource/template";
|
import { getTemplate } from "@/api/resource/template";
|
||||||
import saveButton from "./saveButton";
|
import saveButton from "./saveButton";
|
||||||
import {dataSourcesEnum, educationState, missionState, recruitStatus, wageUnitCategoryState} from "@/common/dic";
|
import {dataSourcesEnum, educationState, missionState, recruitStatus, wageUnitCategoryState} from "@/common/dic";
|
||||||
|
const wageUnitCategoryStateEnum = {}
|
||||||
|
wageUnitCategoryState.map((item) => {
|
||||||
|
wageUnitCategoryStateEnum[item.value] = item.label
|
||||||
|
})
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
CopyMission,
|
CopyMission,
|
||||||
@@ -135,6 +141,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
wageUnitCategoryStateEnum,
|
||||||
excelBox: false,
|
excelBox: false,
|
||||||
excelForm: { isCovered: 1 },
|
excelForm: { isCovered: 1 },
|
||||||
excelOption: {
|
excelOption: {
|
||||||
@@ -240,15 +247,8 @@ export default {
|
|||||||
search: false,
|
search: false,
|
||||||
searchSpan: 5,
|
searchSpan: 5,
|
||||||
display: false,
|
display: false,
|
||||||
},
|
slot: true,
|
||||||
{
|
width: 140,
|
||||||
label: "工资单位",
|
|
||||||
prop: "wageUnitCategory",
|
|
||||||
search: false,
|
|
||||||
// hide: true,
|
|
||||||
dicData: wageUnitCategoryState,
|
|
||||||
searchSpan: 5,
|
|
||||||
display: false,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "零工工种",
|
label: "零工工种",
|
||||||
|
|||||||
@@ -10,6 +10,9 @@
|
|||||||
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
||||||
v-show="vaildData(permission.tenant_works_add, false)">批量导入</el-button>
|
v-show="vaildData(permission.tenant_works_add, false)">批量导入</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="wage"slot-scope="{ row }">
|
||||||
|
<div>{{row.wage}}{{wageUnitCategoryStateEnum[row.wageUnitCategory]}}</div>
|
||||||
|
</template>
|
||||||
<!--/自定义按钮-->
|
<!--/自定义按钮-->
|
||||||
<!--自定义列-->
|
<!--自定义列-->
|
||||||
<template slot="jobName" slot-scope="{ row }">
|
<template slot="jobName" slot-scope="{ row }">
|
||||||
@@ -115,7 +118,10 @@ import { dateFormat } from "@/util/date";
|
|||||||
import { getTemplate } from "@/api/resource/template";
|
import { getTemplate } from "@/api/resource/template";
|
||||||
import saveButton from "./saveButton";
|
import saveButton from "./saveButton";
|
||||||
import {dataSourcesEnum, educationState, missionState, recruitStatus, wageUnitCategoryState} from "@/common/dic";
|
import {dataSourcesEnum, educationState, missionState, recruitStatus, wageUnitCategoryState} from "@/common/dic";
|
||||||
|
const wageUnitCategoryStateEnum = {}
|
||||||
|
wageUnitCategoryState.map((item) => {
|
||||||
|
wageUnitCategoryStateEnum[item.value] = item.label
|
||||||
|
})
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
CopyMission,
|
CopyMission,
|
||||||
@@ -139,6 +145,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
wageUnitCategoryStateEnum,
|
||||||
excelBox: false,
|
excelBox: false,
|
||||||
excelForm: { isCovered: 1 },
|
excelForm: { isCovered: 1 },
|
||||||
excelOption: {
|
excelOption: {
|
||||||
@@ -243,15 +250,8 @@ export default {
|
|||||||
search: false,
|
search: false,
|
||||||
searchSpan: 5,
|
searchSpan: 5,
|
||||||
display: false,
|
display: false,
|
||||||
},
|
slot: true,
|
||||||
{
|
width: 140,
|
||||||
label: "工资单位",
|
|
||||||
prop: "wageUnitCategory",
|
|
||||||
search: false,
|
|
||||||
// hide: true,
|
|
||||||
dicData: wageUnitCategoryState,
|
|
||||||
searchSpan: 5,
|
|
||||||
display: false,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "岗位工种",
|
label: "岗位工种",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ module.exports = {
|
|||||||
port: 1888,
|
port: 1888,
|
||||||
proxy: {
|
proxy: {
|
||||||
"/api": {
|
"/api": {
|
||||||
target: 'http://192.168.1.106:8000',
|
target: 'http://10.165.0.173:8000',
|
||||||
ws: true,
|
ws: true,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
|
|||||||
Reference in New Issue
Block a user