|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: XuTongZhang
|
|
|
* @Date: 2020-07-30 10:17:25
|
|
|
* @LastEditors: XuTongZhang
|
|
|
- * @LastEditTime: 2020-08-03 10:38:18
|
|
|
+ * @LastEditTime: 2020-08-03 10:45:26
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="indexPage">
|
|
@@ -18,7 +18,7 @@
|
|
|
@details="details"
|
|
|
></v-table>
|
|
|
<v-pager @page="callPage" :total="totalrecords"></v-pager>
|
|
|
- <resume :dialogFormVisible="dialogFormVisible" :close="close"></resume>
|
|
|
+ <resume :dialogFormVisible="dialogFormVisible" :close="close" :info="info"></resume>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -33,6 +33,7 @@ export default {
|
|
|
totalrecords: 0,
|
|
|
pickList: [],
|
|
|
form: {},
|
|
|
+ info: {},
|
|
|
list: [
|
|
|
{
|
|
|
placeholder: '请输入关键字查询',
|
|
@@ -155,6 +156,7 @@ export default {
|
|
|
methods: {
|
|
|
queryData (form = {}) {
|
|
|
let page = this.page
|
|
|
+ this.form = form
|
|
|
let reqdata = form
|
|
|
this.$api
|
|
|
.post('/resumeInfo/queryResumeList', {
|
|
@@ -169,21 +171,17 @@ export default {
|
|
|
search (form) {
|
|
|
this.queryData(form)
|
|
|
},
|
|
|
- details (row) {
|
|
|
- this.open()
|
|
|
- this.querydetail(row.id)
|
|
|
- },
|
|
|
- querydetail (id) {
|
|
|
- // this.$api
|
|
|
- // .post('', {
|
|
|
- // reqdata: {
|
|
|
- // id
|
|
|
- // }
|
|
|
- // })
|
|
|
- // .then((res) => {
|
|
|
- // let obj = res.object
|
|
|
- // this.form = obj
|
|
|
- // })
|
|
|
+ details ({ id }) {
|
|
|
+ this.$api
|
|
|
+ .post('', {
|
|
|
+ reqdata: {
|
|
|
+ id
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ this.open()
|
|
|
+ this.info = res.object
|
|
|
+ })
|
|
|
},
|
|
|
open () {
|
|
|
this.dialogFormVisible = true
|