|
@@ -118,68 +118,43 @@ export default {
|
|
|
'7': '补充证据和理由时间',
|
|
|
'8':'文档时间'
|
|
|
},
|
|
|
- menuList:[
|
|
|
- {
|
|
|
- title:'无效',
|
|
|
- children:[
|
|
|
- {
|
|
|
- title:'添加无效请求书',
|
|
|
- id:1,
|
|
|
- stage:'无效',
|
|
|
- childStage:'无效受理'
|
|
|
- },
|
|
|
- {
|
|
|
- title:'添加权要修改记录',
|
|
|
- id:2,
|
|
|
- stage:'无效',
|
|
|
- childStage:'专利权人提交权要修改'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- title:'行诉一审',
|
|
|
- children:[
|
|
|
- {
|
|
|
- title:'添加行政诉讼起诉状',
|
|
|
- id:3,
|
|
|
- stage:'行诉一审',
|
|
|
- childStage:'行诉一审立案'
|
|
|
- },
|
|
|
- {
|
|
|
- title:'添加行政诉讼判决书',
|
|
|
- id:4,
|
|
|
- stage:'行诉一审',
|
|
|
- childStage:'已出一审判决'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- title:'行诉二审',
|
|
|
- children:[
|
|
|
- {
|
|
|
- title:'添加行政诉讼起诉状',
|
|
|
- id:5,
|
|
|
- stage:'行诉一审',
|
|
|
- childStage:'行诉一审立案'
|
|
|
- },
|
|
|
- {
|
|
|
- title:'添加行政诉讼判决书',
|
|
|
- id:6,
|
|
|
- stage:'行诉一审',
|
|
|
- childStage:'已出一审判决'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- ]
|
|
|
+ menuList:[],
|
|
|
+ currentMenuList:[]
|
|
|
}
|
|
|
},
|
|
|
computed: {},
|
|
|
watch: {},
|
|
|
+ created() {
|
|
|
+ this.getMenuList()
|
|
|
+ },
|
|
|
mounted() {
|
|
|
this.getList()
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
+ getMenuList(){
|
|
|
+ this.$api.queryAssoCasePhaseList().then(response=>{
|
|
|
+ if(response.code == 200){
|
|
|
+ var data = response.data
|
|
|
+ this.currentMenuList = data
|
|
|
+ let arr = []
|
|
|
+ for(let i = 0;i<data.length;i++){
|
|
|
+ let item = data[i]
|
|
|
+ let obj = arr.find(a=>{
|
|
|
+ return a.title == item.casePhase
|
|
|
+ })
|
|
|
+ if(!obj){
|
|
|
+ obj = {
|
|
|
+ title : item.casePhase,
|
|
|
+ children:[]
|
|
|
+ }
|
|
|
+ arr.push(obj)
|
|
|
+ }
|
|
|
+ obj.children.push(item)
|
|
|
+ }
|
|
|
+ this.menuList = arr
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
getList() {
|
|
|
this.queryParams.projectId = this.projectId
|
|
|
// 1正序
|