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

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

@@ -28,6 +28,10 @@
<view class="confirm-user-text"><image src="https://cdn.douhuofalv.com/images/2023/04/20/c359f2fa277e6658157c7108f37d0d44.png" mode="widthFix"></image> 业务联系人</view>
<view class="confirm-user-name">{{parent.nickname}}</view>
</view>
<view class="confirm-user" v-if="seekData.center_user">
<view class="confirm-user-text"><image src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/15/e49b01d43843a4e32b1f7a45473c88a7.png" mode="widthFix"></image> 运营中心</view>
<view class="confirm-user-name">{{seekData.center_user}}</view>
</view>
</view>
<view class="idcardBtn">

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
}
},