Logo white

王明 / Recruitment

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Recruitment
  • pages
  • Detail
  • Detail.vue
  • 初始版本开发完毕
    c7add6cf
    “wangming” authored
    2023-01-30 17:38:28 +0800  
    Browse Code »
Detail.vue 424 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<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>