flat: 暂存
This commit is contained in:
@@ -238,12 +238,7 @@
|
|||||||
@current-change="workCurrentChange"
|
@current-change="workCurrentChange"
|
||||||
>
|
>
|
||||||
<template slot="missionDesc" slot-scope="{ row }">
|
<template slot="missionDesc" slot-scope="{ row }">
|
||||||
<el-tooltip class="item" effect="dark" placement="top-start">
|
<TextTooltip :content="row.missionDesc" ></TextTooltip>
|
||||||
<div slot="content">
|
|
||||||
<div v-for="(item, index) in clipStr(row.missionDesc)" :key="index"><div>{{item}}</div></div>
|
|
||||||
</div>
|
|
||||||
<span>{{ row.missionDesc.length > 50 ? row.missionDesc.substring(0, 50) : row.missionDesc}}</span>
|
|
||||||
</el-tooltip>
|
|
||||||
</template>
|
</template>
|
||||||
<template slot-scope="{row,index}" slot="menu">
|
<template slot-scope="{row,index}" slot="menu">
|
||||||
<el-button type="text"
|
<el-button type="text"
|
||||||
@@ -372,6 +367,7 @@ import {serviceType} from "@/common/dic";
|
|||||||
import Tinymce from "@/components/Tinymce";
|
import Tinymce from "@/components/Tinymce";
|
||||||
import { deepClone } from "@/util/util";
|
import { deepClone } from "@/util/util";
|
||||||
import PushService from "@/views/tenant/main/serve/Dialog/pushService.vue";
|
import PushService from "@/views/tenant/main/serve/Dialog/pushService.vue";
|
||||||
|
import TextTooltip from "@/components/text-tooltip/index.vue";
|
||||||
const page = {
|
const page = {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
@@ -476,7 +472,7 @@ export default {
|
|||||||
talentsList: []
|
talentsList: []
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: { addGroups, transferGroups, Resume, ied, missionView, workView, Tinymce, PushService},
|
components: { addGroups, transferGroups, Resume, ied, missionView, workView, Tinymce, PushService, TextTooltip},
|
||||||
watch: {},
|
watch: {},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(["permission"]),
|
...mapGetters(["permission"]),
|
||||||
@@ -941,6 +937,8 @@ export default {
|
|||||||
this.ListAllTalents()
|
this.ListAllTalents()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
workSizeChange() {},
|
||||||
|
workCurrentChange() {},
|
||||||
async ListAllTalents() {
|
async ListAllTalents() {
|
||||||
let resData = await getListAllTalents()
|
let resData = await getListAllTalents()
|
||||||
if(resData.data.code === 200) {
|
if(resData.data.code === 200) {
|
||||||
@@ -1484,17 +1482,14 @@ export default {
|
|||||||
matchWorkStation(row) {
|
matchWorkStation(row) {
|
||||||
console.log('匹配任务和岗位')
|
console.log('匹配任务和岗位')
|
||||||
getMatchWorkStation({serveUserId: row.serveUserId, serveId: this.selectInfo.id, companyId: this.selectInfo.companyId}).then(res => {
|
getMatchWorkStation({serveUserId: row.serveUserId, serveId: this.selectInfo.id, companyId: this.selectInfo.companyId}).then(res => {
|
||||||
console.log(res)
|
|
||||||
this.innerDrawer1 = true
|
|
||||||
let _this = this;
|
|
||||||
const {records, current, size, total} = res.data.data
|
const {records, current, size, total} = res.data.data
|
||||||
_this.workData = records
|
this.innerDrawer1 = true
|
||||||
_this.innerDrawer1 = true
|
this.workData = records
|
||||||
_this.workPage = {
|
this.workPage = {
|
||||||
pageSize: size,
|
pageSize: size,
|
||||||
currentPage: current,
|
currentPage: current,
|
||||||
total: total,
|
total: total,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 匹配政策
|
// 匹配政策
|
||||||
|
|||||||
Reference in New Issue
Block a user