16 lines
250 B
Vue
16 lines
250 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
import { decryptWithSM4 } from '@/utils/sm'
|
||
|
|
export default {
|
||
|
|
name: 'DetailData',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
id: decryptWithSM4(this.$route.query.id),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|