|
|
@ -15,7 +15,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<template slot="picUrl" slot-scope="text, record"> |
|
|
|
<img :src="record.picUrl" width="50" height="50"> |
|
|
|
<img :src="record.picUrl" height="50" width="50" /> |
|
|
|
</template> |
|
|
|
|
|
|
|
<template slot="serviceType" slot-scope="text, record"> |
|
|
@ -35,12 +35,12 @@ |
|
|
|
<a-empty v-else /> |
|
|
|
|
|
|
|
<!-- 编辑 --> |
|
|
|
<r-d-member-edit :editVisible="editVisible" @closeModal="closeModal" /> |
|
|
|
<r-d-member-edit :edit-visible="editVisible" @closeModal="closeModal" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import RDMemberEdit from "components/innovativeService/innovativeServiceEdit.vue"; |
|
|
|
import RDMemberEdit from 'components/innovativeService/innovativeServiceEdit.vue'; |
|
|
|
|
|
|
|
const columns = [ |
|
|
|
{ |
|
|
@ -68,7 +68,7 @@ const columns = [ |
|
|
|
align: 'center', |
|
|
|
dataIndex: 'picUrl', |
|
|
|
key: 'picUrl', |
|
|
|
scopedSlots: { customRender: 'picUrl' }, |
|
|
|
scopedSlots: { customRender: 'picUrl' }, |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '服务状态', |
|
|
@ -107,35 +107,9 @@ const columns = [ |
|
|
|
}, |
|
|
|
]; |
|
|
|
|
|
|
|
// const columns = [ |
|
|
|
// { |
|
|
|
// id:'001', |
|
|
|
// name:'张三', |
|
|
|
// sex: '男', |
|
|
|
// supportUnit:'传控科技', |
|
|
|
// birth:'1990-01-01', |
|
|
|
// education: '博士', |
|
|
|
// jobTitle: '工程师', |
|
|
|
// researchDirection: '软硬件', |
|
|
|
// }, |
|
|
|
// { |
|
|
|
// id:'002', |
|
|
|
// name:'赵柳', |
|
|
|
// sex: '女', |
|
|
|
// supportUnit:'中绿环保', |
|
|
|
// birth:'1995-01-01', |
|
|
|
// education: '博士', |
|
|
|
// jobTitle: '工人', |
|
|
|
// researchDirection: '硬件', |
|
|
|
// } |
|
|
|
// ]; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "innovativeServiceDate", |
|
|
|
components: { |
|
|
|
RDMemberEdit, |
|
|
|
}, |
|
|
|
// props: { lists: { type: Array, default: () => {} } }, |
|
|
|
name: 'InnovativeServiceDate', |
|
|
|
components: { RDMemberEdit }, |
|
|
|
props: { lists: { type: Array, default: () => [] }, pagination: { type: Object, default: () => {} } }, |
|
|
|
|
|
|
|
data() { |
|
|
@ -144,8 +118,8 @@ export default { |
|
|
|
loading: false, |
|
|
|
editingKey: '', |
|
|
|
height: '', |
|
|
|
editVisible: false |
|
|
|
} |
|
|
|
editVisible: false, |
|
|
|
}; |
|
|
|
}, |
|
|
|
|
|
|
|
mounted() { |
|
|
|