123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <!-- -->
- <div>
- <patentList :projectId="projectId" :projectName="projectName" :assProjectId="assProjectId" :projectType="projectType" :taskId="taskId" :taskType="taskType" :reportType="reportType" :isResult="isResult" :handlerType="handlerType"></patentList>
- </div>
- </template>
- <script>
- import patentList from './components/index.vue'
- export default {
- components: {
- patentList
- },
- data() {
- return {
- }
- },
- computed: {
- projectId() {
- return this.$route.query.projectId || 0
- },
- assProjectId(){
- return this.$route.query.assProjectId
- },
- projectName() {
- return this.$route.query.projectName
- },
- projectType() {
- return this.$route.query.projectType
- },
- taskId() {
- return this.$route.query.taskId
- },
- taskType() {
- return this.$route.query.taskType || 0
- },
- reportType() {
- return this.$route.query.reportType
- },
- isResult() {//1处理2查看3确认结果
- return this.$route.query.isResult
- },
- handlerType() {//1外部人员0内部人员(只有外部做协同的时候传递)
- return this.$route.query.handlerType
- },
- },
- mounted() {
- },
- methods: {
- },
- }
- </script>
- <style lang="scss" scoped></style>
|