Files
dvcp_v2_wxcp_app/src/apps/AppIntegralAudit/detail.vue

29 lines
317 B
Vue
Raw Normal View History

2022-02-14 15:02:14 +08:00
<template>
2022-02-14 18:37:56 +08:00
<div>
详情
2022-02-14 15:02:14 +08:00
</div>
</template>
<script>
export default {
name: 'detail',
data () {
return {
}
},
methods: {
2022-02-14 17:31:52 +08:00
2022-02-14 15:02:14 +08:00
},
onShow() {
2022-02-14 17:31:52 +08:00
document.title = '积分审核'
2022-02-14 15:02:14 +08:00
},
onLoad() {
2022-02-14 17:31:52 +08:00
// this.$dict.load('yesOrNo')
2022-02-14 15:02:14 +08:00
},
}
</script>
<style lang="scss" scoped>
2022-02-14 18:37:56 +08:00
.detail {}
2022-02-14 15:02:14 +08:00
</style>