Detail.vue
424 Bytes
<template>
<view style="padding: 10px;">
<view v-html="info"></view>
</view>
</template>
<script>
import BASE_URL from '@/common/config.js'
export default {
data() {
return {
info: "",
};
},
onLoad(e) {
this.API.GetDetail(e.id).then(res => {
if (res.code == 200) {
this.info = res.data.content;
}
})
},
methods: {
}
}
</script>
<style>
</style>