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