健康报告dao生成

This commit is contained in:
limqhz
2021-03-07 09:57:34 +08:00
parent 0b651dc87d
commit d35edae11e
6 changed files with 628 additions and 14 deletions

View File

@@ -23,10 +23,10 @@
</template>
</el-table-column>
<!-- 场馆ID -->
<el-table-column align="center" label="报告ID">
<!-- 文档名称 -->
<el-table-column align="center" label="报告名称">
<template scope="scope">
<span>{{scope.row.docId}}</span>
<span>{{scope.row.docName}}</span>
</template>
</el-table-column>
@@ -44,6 +44,11 @@
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="150">
<template scope="scope">
<el-button size="small" type="text" @click="handleEdit(scope.row.id)">查看</el-button>
</template>
</el-table-column>
</Pagination>
</div>
</template>
@@ -54,7 +59,7 @@ import waves from '@/directive/waves.js'// 水波纹指令
import Pagination from '@/components/Pagination'
export default {
name: 'memberCard_list',
name: 'healthDocs_list',
components: { Pagination },
directives: {
waves
@@ -62,10 +67,8 @@ export default {
data() {
return {
params: {
veneuType: undefined,
search_eq_card_type: undefined,
search_eq_doc_type: undefined,
search_like_nickname: undefined,
venueName: undefined
},
options: {
docType: [
@@ -83,15 +86,14 @@ export default {
},
methods: {
/**
* 搜索用户会员卡
* 搜索健康报告
*/
handleSearch() {
// this.$refs.pagination.pageRequest()
this.$refs.pagination.handleSearch()
},
/**
* 编辑用户会员卡
* 编辑健康报告
*/
handleEdit(id) {
this.$router.push({ path: '/member/card/edit', query: { id: id }})