123456789101112131415161718192021222324 |
- <template>
- <search-scale :id="id" :come="come" />
- </template>
- <script>
- import SearchScale from '@/components/TestResults/SearchScale.vue'
- export default {
- name: "SearchScaleRecordSCl",
- components: { SearchScale },
- data() {
- return {
- id: "",
- come: "", //1-来自量表测试,2-来自测试记录列表页,3-来自管理端量表测试报告,4-来自管理端用户测试报告进入的量表报告
- };
- },
- //页面初始化函数
- mounted() {
- this.id = this.$route.query.id;
- this.come = this.$route.query.come;
- },
- methods: {},
- };
- </script>
- <style scoped></style>
|