|
@@ -39,6 +39,7 @@
|
|
|
@del="del"
|
|
|
@undetermined="undetermined"
|
|
|
@openDia="openDia"
|
|
|
+ @update="update"
|
|
|
@selection-change="selection"
|
|
|
id="id"
|
|
|
></v-table>
|
|
@@ -359,7 +360,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '面试应聘职位',
|
|
|
- props: 'desiredPositionId'
|
|
|
+ props: 'positionName'
|
|
|
},
|
|
|
{
|
|
|
label: '工作年限',
|
|
@@ -410,7 +411,7 @@ export default {
|
|
|
type: 'danger'
|
|
|
},
|
|
|
{
|
|
|
- title: '修改简历',
|
|
|
+ title: '修改信息',
|
|
|
method: 'update',
|
|
|
type: 'info'
|
|
|
}
|
|
@@ -443,7 +444,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '面试应聘职位',
|
|
|
- props: 'desiredPositionId'
|
|
|
+ props: 'positionName'
|
|
|
},
|
|
|
{
|
|
|
label: '工作年限',
|
|
@@ -512,7 +513,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '面试应聘职位',
|
|
|
- props: 'desiredPositionId'
|
|
|
+ props: 'positionName'
|
|
|
},
|
|
|
{
|
|
|
label: '工作年限',
|
|
@@ -572,7 +573,9 @@ export default {
|
|
|
.then((res) => {
|
|
|
this.totalrecords = res.totalrecords
|
|
|
this.tableList = res.list.map(item => {
|
|
|
- item.desiredPositionId = item.desiredPositionId ? this.downList1.some(i => i.id === item.desiredPositionId) ? this.downList1.find(i => i.id === item.desiredPositionId).positionName : '' : ''
|
|
|
+ item.delivererSex = item.delivererSex - 0 || 0
|
|
|
+ item.desiredPositionId = item.desiredPositionId - 0 || null
|
|
|
+ // item.desiredPositionId = item.desiredPositionId ? this.downList1.some(i => i.id === item.desiredPositionId) ? this.downList1.find(i => i.id === item.desiredPositionId).positionName : '' : ''
|
|
|
return item
|
|
|
})
|
|
|
})
|
|
@@ -735,7 +738,8 @@ export default {
|
|
|
},
|
|
|
update (row) {
|
|
|
this.openVisible()
|
|
|
- this.uform = row
|
|
|
+ console.log(row)
|
|
|
+ this.uform = Object.assign({}, row)
|
|
|
},
|
|
|
submit () {
|
|
|
let a
|
|
@@ -835,7 +839,7 @@ export default {
|
|
|
type: 'danger'
|
|
|
},
|
|
|
{
|
|
|
- title: '修改简历',
|
|
|
+ title: '修改信息',
|
|
|
method: 'update',
|
|
|
type: 'info'
|
|
|
}
|