[综法改版,个人中心新增数据模块]

This commit is contained in:
2023-06-21 17:07:43 +08:00
parent 47a057b35b
commit be6d4622bc
10 changed files with 828 additions and 115 deletions

View File

@@ -1,25 +1,25 @@
<template>
<view class="content">
<view class="topItem">
<view class="topItem-label" @click="$Router.push({name: 'SeekOrder'})">
<view class="topItem-label" @click="$Router.push({name: 'SeekOrder'})" v-if="type == 'legal'">
<view class="topItem-name" v-if="synthesisData.synthesis">
咨询单({{synthesisData.synthesis.all}})
</view>
<image class="topItem-arrow" src="@/static/imgs/payArrow.png" mode="widthFix"></image>
</view>
<view class="topItem-label" @click="$Router.push({name: 'YearOrder'})">
<view class="topItem-label" @click="$Router.push({name: 'YearOrder'})" v-if="type == 'legal'">
<view class="topItem-name" v-if="synthesisData.service">
年费单({{synthesisData.service.all}})
</view>
<image class="topItem-arrow" src="@/static/imgs/payArrow.png" mode="widthFix"></image>
</view>
<view class="topItem-label" @click="$Router.push({name: 'EntrustOrder'})">
<view class="topItem-label" @click="$Router.push({name: 'EntrustOrder'})" v-if="type == 'lawsuit'">
<view class="topItem-name" v-if="synthesisData.entrust">
委托单({{synthesisData.entrust.all}})
</view>
<image class="topItem-arrow" src="@/static/imgs/payArrow.png" mode="widthFix"></image>
</view>
<view class="topItem-label" @click="$Router.push({name: 'ExpandOrder'})">
<view class="topItem-label" @click="$Router.push({name: 'ExpandOrder'})" v-if="type == 'lawsuit'">
<view class="topItem-name" v-if="synthesisData.expand">
拓展单({{synthesisData.expand.all}})
</view>
@@ -36,6 +36,7 @@
return {
userLogin : '', // 登录状态
synthesisData : '', // 综法数量
type : this.$Route.query.type
}
},