This commit is contained in:
shijingjing
2022-08-04 18:03:12 +08:00
parent 1dacec1de0
commit 8e9db3ddf8
4 changed files with 57 additions and 17 deletions

View File

@@ -0,0 +1,43 @@
<template>
<ai-detail class="detail">
<template slot="title">
<ai-title title="详情" :isShowBack="true" :isShowBottomBorder="true" @onBackClick="$emit('goBack')"></ai-title>
</template>
<template slot="content">
<!-- <div v-html=""></div> -->
</template>
</ai-detail>
</template>
<script>
export default {
name: 'detail',
props: {
instance: Function,
dict: Object,
permissions: Function,
detail: Object,
},
data() {
return {
id: ''
}
},
methods: {
getDetail() {
this.id = this.$route.query.id
this.id && this.instance.post(``, null, {
params: {id: this.id}
}).then(res => {
if (res?.data) {
}
})
}
}
}
</script>
<style>
</style>