Compare commits
	
		
			3 Commits 
		
	
	
		
			c5658fb2c7
			...
			571e8e5ee2
		
	
	| Author | SHA1 | Date | 
|---|---|---|
|  | 571e8e5ee2 | 1 year ago | 
|  | 69f63076c8 | 1 year ago | 
|  | 39b6283793 | 1 year 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":"司机管理", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"driver", | ||||
| 		"colorOpen":true, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"name":"司机列表", | ||||
| 				"router":"/driverManagement/index/index", | ||||
| 				"lable":"driver:info:list", | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"image":"../../static/newindex/driverList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"name":"新增司机", | ||||
| 				"router":"/driverManagement/addDiver/addDiver", | ||||
| 				"lable":"driver:info:add", | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"image":"../../static/newindex/driverAdd.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"油品分发", | ||||
| 		"icon":"iconbiangeng", | ||||
| 		"label":"distributeReverse", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"name":"分发列表", | ||||
| 				"router":"/oilDistribution/index/index", | ||||
| 				"lable":"distributeReverse:info:list", | ||||
| 				"icon":"iconbiangeng", | ||||
| 				"image":"../../static/newindex/distributeReverseList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconbiangeng", | ||||
| 				"name":"新增分发", | ||||
| 				"router":"/oilDistribution/distribute/distribute", | ||||
| 				"lable":"distributeReverse:info:add", | ||||
| 				"image":"../../static/newindex/distributeReverseAdd.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"订单管理", | ||||
| 		"icon":"iconzhangdanchaxun", | ||||
| 		"label":"oilOrder", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconzhangdanchaxun", | ||||
| 				"name":"订单列表", | ||||
| 				"router":"/orderList/index/index", | ||||
| 				"lable":"oilOrder:info:list", | ||||
| 				"image":"../../static/newindex/oilOrderList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconzhangdanchaxun", | ||||
| 				"name":"订单退款审核", | ||||
| 				"router":"/orderList/refundReview/index", | ||||
| 				"lable":"oilOrder:info:list", | ||||
| 				"image":"../../static/newindex/oilOrderList.png" | ||||
| 			} | ||||
| 			 | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"动销排名", | ||||
| 		"icon":"iconjiagebiangeng", | ||||
| 		"label":"ranking", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconjiagebiangeng", | ||||
| 				"name":"油站动销", | ||||
| 				"router":"/salesRanking/page/index/index", | ||||
| 				"lable":"ranking:info:list", | ||||
| 				"image":"../../static/newindex/rankingList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconjiagebiangeng", | ||||
| 				"name":"企业动销", | ||||
| 				"router":"/salesRanking/page/index/enterpriseIndex", | ||||
| 				"lable":"ranking:info:list", | ||||
| 				"image":"../../static/newindex/enterpriseList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"调价管理", | ||||
| 		"icon":"iconxiugaijiage", | ||||
| 		"label":"priceAdjust", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"调价申请", | ||||
| 				"router":"/priceAdjustment/page/index/index", | ||||
| 				"lable":"priceAdjust:info:list", | ||||
| 				"image":"../../static/newindex/priceAdjustList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"调价任务", | ||||
| 				"router":"/priceAdjustmentTask/page/index", | ||||
| 				"lable":"priceTask:info:list", | ||||
| 				"image":"../../static/newindex/priceTaskList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"油站账户管理", | ||||
| 		"icon":"iconqichexiangguan-jiayouzhan", | ||||
| 		"label":"oilAccount", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"油站公司充值", | ||||
| 				"router":"/oilAccount/page/companyRecharge/index", | ||||
| 				"lable":"sys:siteCompany:recharge", | ||||
| 				"image":"../../static/newindex/siteCompanyList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"油站账户充值", | ||||
| 				"router":"/oilAccount/page/accountRecharge/index", | ||||
| 				"lable":"sys:siteAcct:recharge", | ||||
| 				"image":"../../static/newindex/siteAcctList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"财务中心", | ||||
| 		"icon":"iconqichexiangguan-jiayouzhan", | ||||
| 		"label":"financialCenter", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"公司账户管理", | ||||
| 				"router":"/financialCenter/enterprise/account/index", | ||||
| 				"lable":"finance:enterprise:account", | ||||
| 				"image":"../../static/newindex/accountEnterpriseList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage",  | ||||
| 				"name":"油站账户管理", | ||||
| 				"router":"/financialCenter/serviceStation/index", | ||||
| 				"lable":"finance:serviceStation:account", | ||||
| 				"image":"../../static/newindex/accountServiceStationList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"企业充值", | ||||
| 				"router":"/financialCenter/enterprise/recharge/index", | ||||
| 				"lable":"finance:enterprise:recharge", | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"结算单管理", | ||||
| 				"router":"/financialCenter/settlementDoc/manage/index", | ||||
| 				"lable":"finance:settlementDoc:manage", | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaijiage", | ||||
| 				"name":"企业充值预处理", | ||||
| 				"router":"/financialCenter/enterpriseRecharge/index", | ||||
| 				"lable":"finance:enterpriseRecharge:index", | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"用户管理", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"userManagement", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"name":"客户运营系统", | ||||
| 				"router":"/userManagement/customer/index", | ||||
| 				"lable":"management:user:customer", | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			}, | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi",  | ||||
| 				"name":"星油云站", | ||||
| 				"router":"/userManagement/yunSite/index", | ||||
| 				"lable":"management:user:yunSite", | ||||
| 				"image":"../../static/newindex/yunSiteList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"客户管理", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"customerManagement", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"name":"公司管理", | ||||
| 				"router":"/customerManagement/companyManagement/index", | ||||
| 				"lable":"management:company:list",  | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"油站管理", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"siteManagement", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"name":"油价管理", | ||||
| 				"router":"/siteManagement/OilSiteOilsPrice/index", | ||||
| 				"lable":"management:oilPrice:list",  | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"合同管理", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"contractManagement", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"name":"合同列表", | ||||
| 				"router":"/contractManagement/list/index", | ||||
| 				"lable":"management:contract:list",  | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	}, | ||||
| 	{ | ||||
| 		"name":"数据统计", | ||||
| 		"icon":"iconxiugaiyonghuxinxi", | ||||
| 		"label":"dataStatistics", | ||||
| 		"colorOpen":false, | ||||
| 		"submenu":[ | ||||
| 			{ | ||||
| 				"icon":"iconxiugaiyonghuxinxi", | ||||
| 				"name":"网点统计", | ||||
| 				"router":"/dataStatistics/networkPoint/index", | ||||
| 				"lable":"dataStatistics:networkPoint:list",  | ||||
| 				"image":"../../static/newindex/customerList.png" | ||||
| 			} | ||||
| 		] | ||||
| 	} | ||||
| ] | ||||
|   { | ||||
|     "name": "司机管理", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "driver", | ||||
|     "colorOpen": true, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "name": "司机列表", | ||||
|         "router": "/driverManagement/index/index", | ||||
|         "lable": "driver:info:list", | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "image": "../../static/newindex/driverList.png" | ||||
|       }, | ||||
|       { | ||||
|         "name": "新增司机", | ||||
|         "router": "/driverManagement/addDiver/addDiver", | ||||
|         "lable": "driver:info:add", | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "image": "../../static/newindex/driverAdd.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "油品分发", | ||||
|     "icon": "iconbiangeng", | ||||
|     "label": "distributeReverse", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "name": "分发列表", | ||||
|         "router": "/oilDistribution/index/index", | ||||
|         "lable": "distributeReverse:info:list", | ||||
|         "icon": "iconbiangeng", | ||||
|         "image": "../../static/newindex/distributeReverseList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconbiangeng", | ||||
|         "name": "新增分发", | ||||
|         "router": "/oilDistribution/distribute/distribute", | ||||
|         "lable": "distributeReverse:info:add", | ||||
|         "image": "../../static/newindex/distributeReverseAdd.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "订单管理", | ||||
|     "icon": "iconzhangdanchaxun", | ||||
|     "label": "oilOrder", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconzhangdanchaxun", | ||||
|         "name": "订单列表", | ||||
|         "router": "/orderList/index/index", | ||||
|         "lable": "oilOrder:info:list", | ||||
|         "image": "../../static/newindex/oilOrderList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconzhangdanchaxun", | ||||
|         "name": "订单退款审核", | ||||
|         "router": "/orderList/refundReview/index", | ||||
|         "lable": "oilOrder:info:list", | ||||
|         "image": "../../static/newindex/oilOrderList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "动销排名", | ||||
|     "icon": "iconjiagebiangeng", | ||||
|     "label": "ranking", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconjiagebiangeng", | ||||
|         "name": "油站动销", | ||||
|         "router": "/salesRanking/page/index/index", | ||||
|         "lable": "ranking:info:list", | ||||
|         "image": "../../static/newindex/rankingList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconjiagebiangeng", | ||||
|         "name": "企业动销", | ||||
|         "router": "/salesRanking/page/index/enterpriseIndex", | ||||
|         "lable": "ranking:info:list", | ||||
|         "image": "../../static/newindex/enterpriseList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "调价管理", | ||||
|     "icon": "iconxiugaijiage", | ||||
|     "label": "priceAdjust", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "调价申请", | ||||
|         "router": "/priceAdjustment/page/index/index", | ||||
|         "lable": "priceAdjust:info:list", | ||||
|         "image": "../../static/newindex/priceAdjustList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "调价任务", | ||||
|         "router": "/priceAdjustmentTask/page/index", | ||||
|         "lable": "priceTask:info:list", | ||||
|         "image": "../../static/newindex/priceTaskList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "油站账户管理", | ||||
|     "icon": "iconqichexiangguan-jiayouzhan", | ||||
|     "label": "oilAccount", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "油站公司充值", | ||||
|         "router": "/oilAccount/page/companyRecharge/index", | ||||
|         "lable": "sys:siteCompany:recharge", | ||||
|         "image": "../../static/newindex/siteCompanyList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "油站账户充值", | ||||
|         "router": "/oilAccount/page/accountRecharge/index", | ||||
|         "lable": "sys:siteAcct:recharge", | ||||
|         "image": "../../static/newindex/siteAcctList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "财务中心", | ||||
|     "icon": "iconqichexiangguan-jiayouzhan", | ||||
|     "label": "financialCenter", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "公司账户管理", | ||||
|         "router": "/financialCenter/enterprise/account/index", | ||||
|         "lable": "finance:enterprise:account", | ||||
|         "image": "../../static/newindex/accountEnterpriseList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "油站账户管理", | ||||
|         "router": "/financialCenter/serviceStation/index", | ||||
|         "lable": "finance:serviceStation:account", | ||||
|         "image": "../../static/newindex/accountServiceStationList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "企业充值", | ||||
|         "router": "/financialCenter/enterprise/recharge/index", | ||||
|         "lable": "finance:enterprise:recharge", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "结算单管理", | ||||
|         "router": "/financialCenter/settlementDoc/manage/index", | ||||
|         "lable": "finance:settlementDoc:manage", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "发票池", | ||||
|         "router": "/financialCenter/invoice/pool/index", | ||||
|         "lable": "finance:settlementDoc:manage", | ||||
|         "image": "../../static/newindex/distributeReverseList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaijiage", | ||||
|         "name": "企业充值预处理", | ||||
|         "router": "/financialCenter/enterpriseRecharge/index", | ||||
|         "lable": "finance:enterpriseRecharge:index", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "用户管理", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "userManagement", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "客户运营系统", | ||||
|         "router": "/userManagement/customer/index", | ||||
|         "lable": "management:user:customer", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       }, | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "星油云站", | ||||
|         "router": "/userManagement/yunSite/index", | ||||
|         "lable": "management:user:yunSite", | ||||
|         "image": "../../static/newindex/yunSiteList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "客户管理", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "customerManagement", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "公司管理", | ||||
|         "router": "/customerManagement/companyManagement/index", | ||||
|         "lable": "management:company:list", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "油站管理", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "siteManagement", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "油价管理", | ||||
|         "router": "/siteManagement/OilSiteOilsPrice/index", | ||||
|         "lable": "management:oilPrice:list", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "合同管理", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "contractManagement", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "合同列表", | ||||
|         "router": "/contractManagement/list/index", | ||||
|         "lable": "management:contract:list", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       } | ||||
|     ] | ||||
|   }, | ||||
|   { | ||||
|     "name": "数据统计", | ||||
|     "icon": "iconxiugaiyonghuxinxi", | ||||
|     "label": "dataStatistics", | ||||
|     "colorOpen": false, | ||||
|     "submenu": [ | ||||
|       { | ||||
|         "icon": "iconxiugaiyonghuxinxi", | ||||
|         "name": "网点统计", | ||||
|         "router": "/dataStatistics/networkPoint/index", | ||||
|         "lable": "dataStatistics:networkPoint:list", | ||||
|         "image": "../../static/newindex/customerList.png" | ||||
|       } | ||||
|     ] | ||||
|   } | ||||
| ] | ||||
|  | ||||
					Loading…
					
					
				
		Reference in new issue