Compare commits
3 Commits
c5658fb2c7
...
571e8e5ee2
Author | SHA1 | Date |
---|---|---|
|
571e8e5ee2 | 10 months ago |
|
69f63076c8 | 10 months ago |
|
39b6283793 | 10 months ago |
4 changed files with 1211 additions and 919 deletions
@ -0,0 +1,11 @@ |
|||||||
|
import request from '@/utils/request' |
||||||
|
|
||||||
|
export default { |
||||||
|
getInvoicePoolPage(data = {}) { |
||||||
|
return request({ |
||||||
|
url: '/oil-finance/internalCompany/getInvoicePoolPage', |
||||||
|
method: 'post', |
||||||
|
data: data |
||||||
|
}) |
||||||
|
}, |
||||||
|
} |
@ -0,0 +1,271 @@ |
|||||||
|
<template> |
||||||
|
<view style="height: 100vh;display: flex;flex-direction: column; "> |
||||||
|
<view class="header"> |
||||||
|
<view :style="{height:styles.top+'px'}" class="top"></view> |
||||||
|
<uni-nav-bar @clickLeft='back' color='white' backgroundColor="rgba(0,0,0,0)" left-icon="back" |
||||||
|
title="结算单管理" /> |
||||||
|
|
||||||
|
</view> |
||||||
|
<view class="content" style="flex: 1;overflow: hidden;"> |
||||||
|
<view class="buttons"> |
||||||
|
<view>{{obtainMonth()}}月票池</view> |
||||||
|
<view> |
||||||
|
<view @click="screen('0')">进项</view> |
||||||
|
<view @click="screen('1')">销项</view> |
||||||
|
</view> |
||||||
|
</view> |
||||||
|
<view class="list"> |
||||||
|
<scroll-view style="height: 100%;" scroll-y="true" :refresher-enabled="true" :refresher-triggered="isRefresherTriggered" @refresherrefresh="refresherrefresh"> |
||||||
|
<view class="item" v-for="item,index in handleList" :key="index"> |
||||||
|
<view class="title"> |
||||||
|
<view>{{item.companyName}}</view> |
||||||
|
<view v-if="item.outputLimit">{{item.outputLimit}}</view> |
||||||
|
</view> |
||||||
|
<view class="percentage"> |
||||||
|
<view :style="{ |
||||||
|
width:item.proportion +'%', |
||||||
|
background:item.color, |
||||||
|
color:item.proportion > 10 ? '#fff' :'#333'}"> |
||||||
|
{{item.text}}{{item.money}} |
||||||
|
</view> |
||||||
|
</view> |
||||||
|
</view> |
||||||
|
</scroll-view> |
||||||
|
</view> |
||||||
|
|
||||||
|
</view> |
||||||
|
</view> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import serve from '@/api/financialCenter/invoice.js' |
||||||
|
export default { |
||||||
|
|
||||||
|
data() { |
||||||
|
return { |
||||||
|
isRefresherTriggered:false, |
||||||
|
styles: {}, |
||||||
|
currentType: '0', |
||||||
|
listData: [], |
||||||
|
handleList: [], |
||||||
|
userInfo: uni.getStorageSync('user'), |
||||||
|
|
||||||
|
} |
||||||
|
}, |
||||||
|
|
||||||
|
onLoad() { |
||||||
|
this.styles = uni.getMenuButtonBoundingClientRect() |
||||||
|
this.getInvoicePoolPage() |
||||||
|
}, |
||||||
|
|
||||||
|
methods: { |
||||||
|
obtainMonth() { |
||||||
|
return new Date().getMonth() + 1 |
||||||
|
}, |
||||||
|
refresherrefresh() { |
||||||
|
this.isRefresherTriggered = true |
||||||
|
this.getInvoicePoolPage() |
||||||
|
}, |
||||||
|
screen(type) { |
||||||
|
let handle = { |
||||||
|
0: (item) => { |
||||||
|
return { |
||||||
|
companyName: item.companyName, |
||||||
|
money: item.sumZMoney || 0, |
||||||
|
proportion: 100, |
||||||
|
text: '进项金额:', |
||||||
|
color: '#409eff', |
||||||
|
} |
||||||
|
|
||||||
|
}, |
||||||
|
1: (item) => { |
||||||
|
let { |
||||||
|
sumXMoney, |
||||||
|
outputLimit |
||||||
|
} = item |
||||||
|
|
||||||
|
let money = 0 |
||||||
|
if (sumXMoney) { |
||||||
|
let result = ((outputLimit * 10000 - sumXMoney * 10000) / 10000).toFixed(2) |
||||||
|
money = result < 0 ? 0 : result |
||||||
|
} else money = outputLimit || 0 |
||||||
|
|
||||||
|
let proportion = 0 |
||||||
|
if (sumXMoney) { |
||||||
|
let numerator = ((outputLimit * 10000 - sumXMoney * 10000) / 10000).toFixed(2) |
||||||
|
let result = (numerator / outputLimit).toFixed(2) * 100 |
||||||
|
proportion = result < 0 ? 0 : result > 100 ? 100 : result |
||||||
|
} else proportion = 100 |
||||||
|
|
||||||
|
return { |
||||||
|
companyName: item.companyName, |
||||||
|
money, |
||||||
|
proportion, |
||||||
|
text: '可用:', |
||||||
|
color: '#f56c6c', |
||||||
|
outputLimit, |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
this.handleList = this.listData.map(item => { |
||||||
|
let result = handle[type](item) |
||||||
|
return result |
||||||
|
}) |
||||||
|
console.log('this.handleList', this.handleList) |
||||||
|
}, |
||||||
|
getInvoicePoolPage() { |
||||||
|
serve.getInvoicePoolPage().then(res => { |
||||||
|
this.isRefresherTriggered = false |
||||||
|
if (res.code === 20000) { |
||||||
|
this.listData = res.data |
||||||
|
this.screen('0') |
||||||
|
} |
||||||
|
}) |
||||||
|
}, |
||||||
|
back() { |
||||||
|
uni.navigateBack() |
||||||
|
}, |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss"> |
||||||
|
page { |
||||||
|
background-color: #F0F2FF; |
||||||
|
} |
||||||
|
|
||||||
|
.uni-navbar--border { |
||||||
|
border: 0px !important; |
||||||
|
} |
||||||
|
|
||||||
|
.header { |
||||||
|
position: relative; |
||||||
|
color: white; |
||||||
|
height: 300rpx; |
||||||
|
background: url('https://xoi-support.oss-cn-hangzhou.aliyuncs.com/星油admin小程序/sjbj.png') 100%/100%; |
||||||
|
} |
||||||
|
|
||||||
|
.uni-navbar__header-btns-right { |
||||||
|
padding-right: 0 !important; |
||||||
|
width: 120rpx !important; |
||||||
|
} |
||||||
|
|
||||||
|
.top { |
||||||
|
height: var(--status-bar-height); |
||||||
|
} |
||||||
|
|
||||||
|
.content { |
||||||
|
position: relative; |
||||||
|
top: -80rpx; |
||||||
|
left: 1%; |
||||||
|
z-index: 100; |
||||||
|
width: 98%; |
||||||
|
background: #F0F2FF; |
||||||
|
border-radius: 20rpx; |
||||||
|
|
||||||
|
.buttons { |
||||||
|
padding: 20rpx; |
||||||
|
|
||||||
|
>view { |
||||||
|
&:nth-of-type(1) { |
||||||
|
text-align: center; |
||||||
|
font-size: 35rpx; |
||||||
|
font-weight: 550; |
||||||
|
} |
||||||
|
|
||||||
|
&:nth-of-type(2) { |
||||||
|
margin-top: 20rpx; |
||||||
|
display: flex; |
||||||
|
justify-content: space-around; |
||||||
|
|
||||||
|
>view { |
||||||
|
width: 270rpx; |
||||||
|
height: 70rpx; |
||||||
|
line-height: 70rpx; |
||||||
|
text-align: center; |
||||||
|
color: #fff; |
||||||
|
border-radius: 10rpx; |
||||||
|
|
||||||
|
&:nth-of-type(1) { |
||||||
|
background: #409eff; |
||||||
|
} |
||||||
|
|
||||||
|
&:nth-of-type(2) { |
||||||
|
background: #f56c6c; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.list { |
||||||
|
margin: 20rpx auto 0; |
||||||
|
width: 98%; |
||||||
|
height: 80%; |
||||||
|
border: 1rpx solid #ddd; |
||||||
|
border-radius: 10rpx; |
||||||
|
|
||||||
|
.item { |
||||||
|
margin-top: 30rpx; |
||||||
|
padding-left: 3%; |
||||||
|
&:nth-last-child(1) { |
||||||
|
padding-bottom: 30rpx; |
||||||
|
} |
||||||
|
.title { |
||||||
|
display: flex; |
||||||
|
padding-right: 20rpx; |
||||||
|
margin: 0; |
||||||
|
height: 50rpx; |
||||||
|
|
||||||
|
>view { |
||||||
|
&:nth-of-type(1) { |
||||||
|
flex: 1; |
||||||
|
padding-left: 5rpx; |
||||||
|
font-size: 28rpx; |
||||||
|
font-weight: 550; |
||||||
|
} |
||||||
|
|
||||||
|
&:nth-of-type(2) { |
||||||
|
width: 180rpx; |
||||||
|
height: 50rpx; |
||||||
|
line-height: 50rpx; |
||||||
|
text-align: center; |
||||||
|
background: #ddd; |
||||||
|
color: #999; |
||||||
|
border-radius: 5rpx; |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.percentage { |
||||||
|
overflow: hidden; |
||||||
|
position: relative; |
||||||
|
margin-top: 20rpx; |
||||||
|
height: 50rpx; |
||||||
|
width: 94%; |
||||||
|
background: rgb(244, 244, 245); |
||||||
|
border: 1px solid rgb(211, 212, 214); |
||||||
|
border-radius: 20px; |
||||||
|
|
||||||
|
>view { |
||||||
|
position: absolute; |
||||||
|
top: 0; |
||||||
|
left: 0; |
||||||
|
padding-left: 10rpx; |
||||||
|
height: 50rpx; |
||||||
|
line-height: 50rpx; |
||||||
|
color: #fff; |
||||||
|
font-size: 24rpx; |
||||||
|
background: #409eff; |
||||||
|
border-radius: 20rpx; |
||||||
|
white-space: nowrap; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
File diff suppressed because it is too large
Load Diff
@ -1,260 +1,266 @@ |
|||||||
[ |
[ |
||||||
{ |
{ |
||||||
"name":"司机管理", |
"name": "司机管理", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"label":"driver", |
"label": "driver", |
||||||
"colorOpen":true, |
"colorOpen": true, |
||||||
"submenu":[ |
"submenu": [ |
||||||
{ |
{ |
||||||
"name":"司机列表", |
"name": "司机列表", |
||||||
"router":"/driverManagement/index/index", |
"router": "/driverManagement/index/index", |
||||||
"lable":"driver:info:list", |
"lable": "driver:info:list", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"image":"../../static/newindex/driverList.png" |
"image": "../../static/newindex/driverList.png" |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name":"新增司机", |
"name": "新增司机", |
||||||
"router":"/driverManagement/addDiver/addDiver", |
"router": "/driverManagement/addDiver/addDiver", |
||||||
"lable":"driver:info:add", |
"lable": "driver:info:add", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"image":"../../static/newindex/driverAdd.png" |
"image": "../../static/newindex/driverAdd.png" |
||||||
} |
} |
||||||
] |
] |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name":"油品分发", |
"name": "油品分发", |
||||||
"icon":"iconbiangeng", |
"icon": "iconbiangeng", |
||||||
"label":"distributeReverse", |
"label": "distributeReverse", |
||||||
"colorOpen":false, |
"colorOpen": false, |
||||||
"submenu":[ |
"submenu": [ |
||||||
{ |
{ |
||||||
"name":"分发列表", |
"name": "分发列表", |
||||||
"router":"/oilDistribution/index/index", |
"router": "/oilDistribution/index/index", |
||||||
"lable":"distributeReverse:info:list", |
"lable": "distributeReverse:info:list", |
||||||
"icon":"iconbiangeng", |
"icon": "iconbiangeng", |
||||||
"image":"../../static/newindex/distributeReverseList.png" |
"image": "../../static/newindex/distributeReverseList.png" |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"icon":"iconbiangeng", |
"icon": "iconbiangeng", |
||||||
"name":"新增分发", |
"name": "新增分发", |
||||||
"router":"/oilDistribution/distribute/distribute", |
"router": "/oilDistribution/distribute/distribute", |
||||||
"lable":"distributeReverse:info:add", |
"lable": "distributeReverse:info:add", |
||||||
"image":"../../static/newindex/distributeReverseAdd.png" |
"image": "../../static/newindex/distributeReverseAdd.png" |
||||||
} |
} |
||||||
] |
] |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name":"订单管理", |
"name": "订单管理", |
||||||
"icon":"iconzhangdanchaxun", |
"icon": "iconzhangdanchaxun", |
||||||
"label":"oilOrder", |
"label": "oilOrder", |
||||||
"colorOpen":false, |
"colorOpen": false, |
||||||
"submenu":[ |
"submenu": [ |
||||||
{ |
{ |
||||||
"icon":"iconzhangdanchaxun", |
"icon": "iconzhangdanchaxun", |
||||||
"name":"订单列表", |
"name": "订单列表", |
||||||
"router":"/orderList/index/index", |
"router": "/orderList/index/index", |
||||||
"lable":"oilOrder:info:list", |
"lable": "oilOrder:info:list", |
||||||
"image":"../../static/newindex/oilOrderList.png" |
"image": "../../static/newindex/oilOrderList.png" |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"icon":"iconzhangdanchaxun", |
"icon": "iconzhangdanchaxun", |
||||||
"name":"订单退款审核", |
"name": "订单退款审核", |
||||||
"router":"/orderList/refundReview/index", |
"router": "/orderList/refundReview/index", |
||||||
"lable":"oilOrder:info:list", |
"lable": "oilOrder:info:list", |
||||||
"image":"../../static/newindex/oilOrderList.png" |
"image": "../../static/newindex/oilOrderList.png" |
||||||
} |
} |
||||||
|
] |
||||||
] |
}, |
||||||
}, |
{ |
||||||
{ |
"name": "动销排名", |
||||||
"name":"动销排名", |
"icon": "iconjiagebiangeng", |
||||||
"icon":"iconjiagebiangeng", |
"label": "ranking", |
||||||
"label":"ranking", |
"colorOpen": false, |
||||||
"colorOpen":false, |
"submenu": [ |
||||||
"submenu":[ |
{ |
||||||
{ |
"icon": "iconjiagebiangeng", |
||||||
"icon":"iconjiagebiangeng", |
"name": "油站动销", |
||||||
"name":"油站动销", |
"router": "/salesRanking/page/index/index", |
||||||
"router":"/salesRanking/page/index/index", |
"lable": "ranking:info:list", |
||||||
"lable":"ranking:info:list", |
"image": "../../static/newindex/rankingList.png" |
||||||
"image":"../../static/newindex/rankingList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconjiagebiangeng", |
||||||
"icon":"iconjiagebiangeng", |
"name": "企业动销", |
||||||
"name":"企业动销", |
"router": "/salesRanking/page/index/enterpriseIndex", |
||||||
"router":"/salesRanking/page/index/enterpriseIndex", |
"lable": "ranking:info:list", |
||||||
"lable":"ranking:info:list", |
"image": "../../static/newindex/enterpriseList.png" |
||||||
"image":"../../static/newindex/enterpriseList.png" |
} |
||||||
} |
] |
||||||
] |
}, |
||||||
}, |
{ |
||||||
{ |
"name": "调价管理", |
||||||
"name":"调价管理", |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"label": "priceAdjust", |
||||||
"label":"priceAdjust", |
"colorOpen": false, |
||||||
"colorOpen":false, |
"submenu": [ |
||||||
"submenu":[ |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "调价申请", |
||||||
"name":"调价申请", |
"router": "/priceAdjustment/page/index/index", |
||||||
"router":"/priceAdjustment/page/index/index", |
"lable": "priceAdjust:info:list", |
||||||
"lable":"priceAdjust:info:list", |
"image": "../../static/newindex/priceAdjustList.png" |
||||||
"image":"../../static/newindex/priceAdjustList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "调价任务", |
||||||
"name":"调价任务", |
"router": "/priceAdjustmentTask/page/index", |
||||||
"router":"/priceAdjustmentTask/page/index", |
"lable": "priceTask:info:list", |
||||||
"lable":"priceTask:info:list", |
"image": "../../static/newindex/priceTaskList.png" |
||||||
"image":"../../static/newindex/priceTaskList.png" |
} |
||||||
} |
] |
||||||
] |
}, |
||||||
}, |
{ |
||||||
{ |
"name": "油站账户管理", |
||||||
"name":"油站账户管理", |
"icon": "iconqichexiangguan-jiayouzhan", |
||||||
"icon":"iconqichexiangguan-jiayouzhan", |
"label": "oilAccount", |
||||||
"label":"oilAccount", |
"colorOpen": false, |
||||||
"colorOpen":false, |
"submenu": [ |
||||||
"submenu":[ |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "油站公司充值", |
||||||
"name":"油站公司充值", |
"router": "/oilAccount/page/companyRecharge/index", |
||||||
"router":"/oilAccount/page/companyRecharge/index", |
"lable": "sys:siteCompany:recharge", |
||||||
"lable":"sys:siteCompany:recharge", |
"image": "../../static/newindex/siteCompanyList.png" |
||||||
"image":"../../static/newindex/siteCompanyList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "油站账户充值", |
||||||
"name":"油站账户充值", |
"router": "/oilAccount/page/accountRecharge/index", |
||||||
"router":"/oilAccount/page/accountRecharge/index", |
"lable": "sys:siteAcct:recharge", |
||||||
"lable":"sys:siteAcct:recharge", |
"image": "../../static/newindex/siteAcctList.png" |
||||||
"image":"../../static/newindex/siteAcctList.png" |
} |
||||||
} |
] |
||||||
] |
}, |
||||||
}, |
{ |
||||||
{ |
"name": "财务中心", |
||||||
"name":"财务中心", |
"icon": "iconqichexiangguan-jiayouzhan", |
||||||
"icon":"iconqichexiangguan-jiayouzhan", |
"label": "financialCenter", |
||||||
"label":"financialCenter", |
"colorOpen": false, |
||||||
"colorOpen":false, |
"submenu": [ |
||||||
"submenu":[ |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "公司账户管理", |
||||||
"name":"公司账户管理", |
"router": "/financialCenter/enterprise/account/index", |
||||||
"router":"/financialCenter/enterprise/account/index", |
"lable": "finance:enterprise:account", |
||||||
"lable":"finance:enterprise:account", |
"image": "../../static/newindex/accountEnterpriseList.png" |
||||||
"image":"../../static/newindex/accountEnterpriseList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "油站账户管理", |
||||||
"name":"油站账户管理", |
"router": "/financialCenter/serviceStation/index", |
||||||
"router":"/financialCenter/serviceStation/index", |
"lable": "finance:serviceStation:account", |
||||||
"lable":"finance:serviceStation:account", |
"image": "../../static/newindex/accountServiceStationList.png" |
||||||
"image":"../../static/newindex/accountServiceStationList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "企业充值", |
||||||
"name":"企业充值", |
"router": "/financialCenter/enterprise/recharge/index", |
||||||
"router":"/financialCenter/enterprise/recharge/index", |
"lable": "finance:enterprise:recharge", |
||||||
"lable":"finance:enterprise:recharge", |
"image": "../../static/newindex/customerList.png" |
||||||
"image":"../../static/newindex/customerList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "结算单管理", |
||||||
"name":"结算单管理", |
"router": "/financialCenter/settlementDoc/manage/index", |
||||||
"router":"/financialCenter/settlementDoc/manage/index", |
"lable": "finance:settlementDoc:manage", |
||||||
"lable":"finance:settlementDoc:manage", |
"image": "../../static/newindex/customerList.png" |
||||||
"image":"../../static/newindex/customerList.png" |
}, |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaijiage", |
||||||
"icon":"iconxiugaijiage", |
"name": "发票池", |
||||||
"name":"企业充值预处理", |
"router": "/financialCenter/invoice/pool/index", |
||||||
"router":"/financialCenter/enterpriseRecharge/index", |
"lable": "finance:settlementDoc:manage", |
||||||
"lable":"finance:enterpriseRecharge:index", |
"image": "../../static/newindex/distributeReverseList.png" |
||||||
"image":"../../static/newindex/customerList.png" |
}, |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaijiage", |
||||||
}, |
"name": "企业充值预处理", |
||||||
{ |
"router": "/financialCenter/enterpriseRecharge/index", |
||||||
"name":"用户管理", |
"lable": "finance:enterpriseRecharge:index", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"image": "../../static/newindex/customerList.png" |
||||||
"label":"userManagement", |
} |
||||||
"colorOpen":false, |
] |
||||||
"submenu":[ |
}, |
||||||
{ |
{ |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "用户管理", |
||||||
"name":"客户运营系统", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"router":"/userManagement/customer/index", |
"label": "userManagement", |
||||||
"lable":"management:user:customer", |
"colorOpen": false, |
||||||
"image":"../../static/newindex/customerList.png" |
"submenu": [ |
||||||
}, |
{ |
||||||
{ |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "客户运营系统", |
||||||
"name":"星油云站", |
"router": "/userManagement/customer/index", |
||||||
"router":"/userManagement/yunSite/index", |
"lable": "management:user:customer", |
||||||
"lable":"management:user:yunSite", |
"image": "../../static/newindex/customerList.png" |
||||||
"image":"../../static/newindex/yunSiteList.png" |
}, |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaiyonghuxinxi", |
||||||
}, |
"name": "星油云站", |
||||||
{ |
"router": "/userManagement/yunSite/index", |
||||||
"name":"客户管理", |
"lable": "management:user:yunSite", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"image": "../../static/newindex/yunSiteList.png" |
||||||
"label":"customerManagement", |
} |
||||||
"colorOpen":false, |
] |
||||||
"submenu":[ |
}, |
||||||
{ |
{ |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "客户管理", |
||||||
"name":"公司管理", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"router":"/customerManagement/companyManagement/index", |
"label": "customerManagement", |
||||||
"lable":"management:company:list", |
"colorOpen": false, |
||||||
"image":"../../static/newindex/customerList.png" |
"submenu": [ |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaiyonghuxinxi", |
||||||
}, |
"name": "公司管理", |
||||||
{ |
"router": "/customerManagement/companyManagement/index", |
||||||
"name":"油站管理", |
"lable": "management:company:list", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"image": "../../static/newindex/customerList.png" |
||||||
"label":"siteManagement", |
} |
||||||
"colorOpen":false, |
] |
||||||
"submenu":[ |
}, |
||||||
{ |
{ |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "油站管理", |
||||||
"name":"油价管理", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"router":"/siteManagement/OilSiteOilsPrice/index", |
"label": "siteManagement", |
||||||
"lable":"management:oilPrice:list", |
"colorOpen": false, |
||||||
"image":"../../static/newindex/customerList.png" |
"submenu": [ |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaiyonghuxinxi", |
||||||
}, |
"name": "油价管理", |
||||||
{ |
"router": "/siteManagement/OilSiteOilsPrice/index", |
||||||
"name":"合同管理", |
"lable": "management:oilPrice:list", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"image": "../../static/newindex/customerList.png" |
||||||
"label":"contractManagement", |
} |
||||||
"colorOpen":false, |
] |
||||||
"submenu":[ |
}, |
||||||
{ |
{ |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "合同管理", |
||||||
"name":"合同列表", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"router":"/contractManagement/list/index", |
"label": "contractManagement", |
||||||
"lable":"management:contract:list", |
"colorOpen": false, |
||||||
"image":"../../static/newindex/customerList.png" |
"submenu": [ |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaiyonghuxinxi", |
||||||
}, |
"name": "合同列表", |
||||||
{ |
"router": "/contractManagement/list/index", |
||||||
"name":"数据统计", |
"lable": "management:contract:list", |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"image": "../../static/newindex/customerList.png" |
||||||
"label":"dataStatistics", |
} |
||||||
"colorOpen":false, |
] |
||||||
"submenu":[ |
}, |
||||||
{ |
{ |
||||||
"icon":"iconxiugaiyonghuxinxi", |
"name": "数据统计", |
||||||
"name":"网点统计", |
"icon": "iconxiugaiyonghuxinxi", |
||||||
"router":"/dataStatistics/networkPoint/index", |
"label": "dataStatistics", |
||||||
"lable":"dataStatistics:networkPoint:list", |
"colorOpen": false, |
||||||
"image":"../../static/newindex/customerList.png" |
"submenu": [ |
||||||
} |
{ |
||||||
] |
"icon": "iconxiugaiyonghuxinxi", |
||||||
} |
"name": "网点统计", |
||||||
] |
"router": "/dataStatistics/networkPoint/index", |
||||||
|
"lable": "dataStatistics:networkPoint:list", |
||||||
|
"image": "../../static/newindex/customerList.png" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
] |
||||||
|
Loading…
Reference in new issue