|
@@ -294,6 +294,7 @@
|
|
|
key="fullJob"
|
|
|
prop="fullJob"
|
|
|
v-if="columns[5].visible"
|
|
|
+ width="60"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ ["兼职", "全职"][scope.row.fullJob] }}</span>
|
|
@@ -313,7 +314,7 @@
|
|
|
key="projectQuantity"
|
|
|
prop="projectQuantity"
|
|
|
v-if="columns[7].visible"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
+ width="60"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="上级负责人"
|
|
@@ -329,13 +330,14 @@
|
|
|
key="duration"
|
|
|
prop="duration"
|
|
|
v-if="columns[9].visible"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
+ width="50"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="状态"
|
|
|
align="center"
|
|
|
key="status"
|
|
|
v-if="columns[10].visible"
|
|
|
+ width="50"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ ["正常", "停用", "暂停"][scope.row.status] }}</span>
|