79 lines
1.9 KiB
Vue
79 lines
1.9 KiB
Vue
|
|
<template>
|
||
|
|
<ai-detail isHasSidebar>
|
||
|
|
<template slot="title">
|
||
|
|
<ai-title title="详情" isShowBack isShowBottomBorder @onBackClick="cancel(true)">
|
||
|
|
</ai-title>
|
||
|
|
</template>
|
||
|
|
<template slot="content">
|
||
|
|
<ai-card title="基本">
|
||
|
|
<template #content>
|
||
|
|
<ai-table
|
||
|
|
class="detail-table__table"
|
||
|
|
:tableData="tableData"
|
||
|
|
:col-configs="colConfigs"
|
||
|
|
:total="total"
|
||
|
|
:current.sync="search.current"
|
||
|
|
:size.sync="search.size"
|
||
|
|
@getList="getList">
|
||
|
|
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
|
||
|
|
<template slot-scope="{ row }">
|
||
|
|
<div class="table-options">
|
||
|
|
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
</ai-table>
|
||
|
|
</template>
|
||
|
|
</ai-card>
|
||
|
|
</template>
|
||
|
|
</ai-detail>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'Detail',
|
||
|
|
|
||
|
|
props: {
|
||
|
|
instance: Function,
|
||
|
|
dict: Object,
|
||
|
|
params: Object
|
||
|
|
},
|
||
|
|
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
info: {}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
created () {
|
||
|
|
if (this.params && this.params.id) {
|
||
|
|
this.id = this.params.id
|
||
|
|
this.dict.load(['epidemicRecentHealth', 'epidemicRecentTravel', 'epidemicTouchInFourteen', 'epidemicMemberType', 'epidemicRecentTestResult']).then(() => {
|
||
|
|
this.getInfo(this.params.id)
|
||
|
|
})
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
methods: {
|
||
|
|
getInfo (id) {
|
||
|
|
this.instance.post(`/app/appepidemicreportmember/queryDetailById?id=${id}`).then(res => {
|
||
|
|
if (res.code === 0) {
|
||
|
|
this.info = res.data
|
||
|
|
this.currIndex = 0
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
|
||
|
|
cancel (isRefresh) {
|
||
|
|
this.$emit('change', {
|
||
|
|
type: 'list',
|
||
|
|
isRefresh: !!isRefresh
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
</style>
|