Compare commits
5 Commits
c5658fb2c7
...
zyj
| Author | SHA1 | Date | |
|---|---|---|---|
| 081e27e8b1 | |||
| 5ba90f1c45 | |||
|
|
571e8e5ee2 | ||
|
|
69f63076c8 | ||
| 39b6283793 |
11
api/financialCenter/invoice.js
Normal file
11
api/financialCenter/invoice.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export default {
|
||||
getInvoicePoolPage(data = {}) {
|
||||
return request({
|
||||
url: '/oil-finance/internalCompany/getInvoicePoolPage',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
},
|
||||
}
|
||||
@@ -133,7 +133,15 @@
|
||||
data() {
|
||||
return {
|
||||
rowDetails: {},
|
||||
detailList: [],
|
||||
detailList: [{
|
||||
bankCardName: '',
|
||||
bankCardNo: '',
|
||||
bankName: '',
|
||||
interBankCode: '',
|
||||
disabledType: false,
|
||||
commonMark: 1,
|
||||
companyId: ''
|
||||
}],
|
||||
id: '',
|
||||
indexNature: 0,
|
||||
bankNatureList: [{
|
||||
@@ -191,7 +199,7 @@
|
||||
}
|
||||
}
|
||||
});
|
||||
}else{
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '请把信息填写完整后提交',
|
||||
icon: 'none'
|
||||
@@ -214,7 +222,10 @@
|
||||
findDetail(id) {
|
||||
companyManagement.getByCompanyId(id).then(res => {
|
||||
if (res.code !== 20000) return
|
||||
this.detailList = res.data
|
||||
if (res.data && res.data.length > 0) {
|
||||
this.detailList = res.data
|
||||
}
|
||||
|
||||
})
|
||||
},
|
||||
seleoli(item, index) {
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
<view class="flex" style="padding: 15rpx 0;">
|
||||
共享总公司额度
|
||||
<view style="margin: 0 10rpx;min-width: 150rpx;" class="blackcolor">
|
||||
{{ item.shareParentAmt =='0'?'共享':'不共享' }}
|
||||
{{ item.shareParentAmt =='0'?'不共享':'共享' }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -91,9 +91,7 @@
|
||||
</view>
|
||||
<view class="flex" style="padding: 15rpx 0;">
|
||||
联动分油
|
||||
<switch class="my-switch" :class="item.parentMark ==0?'disabledMark':''"
|
||||
:disabled="item.parentMark ==0?true:false"
|
||||
:checked="item.shareDistribute=='1'?true:false"
|
||||
<switch class="my-switch" :checked="item.shareDistribute=='1'?true:false"
|
||||
style="transform:scale(0.7)" @change=" changeDistribute(item)"></switch>
|
||||
</view>
|
||||
<view class="flex" style="padding: 15rpx 0;">
|
||||
@@ -167,6 +165,11 @@
|
||||
},
|
||||
changeEnableMark(item) {
|
||||
const data = [item]
|
||||
if(item.enableMark ==1){
|
||||
data[0].enableMark = 0
|
||||
}else{
|
||||
data[0].enableMark = 1
|
||||
}
|
||||
companyManagement.updateBatchEnable(data).then(res => {
|
||||
if (res.code === 20000) {
|
||||
uni.showToast({
|
||||
@@ -182,6 +185,12 @@
|
||||
id: item.id,
|
||||
shareDistribute: item.shareDistribute
|
||||
}
|
||||
if(item.shareDistribute == '1'){
|
||||
data.shareDistribute = '0'
|
||||
}else{
|
||||
data.shareDistribute = '1'
|
||||
}
|
||||
console.log(data,item,'............iitem...')
|
||||
companyManagement.openShareDistribute(data).then(res => {
|
||||
if (res.code === 20000) {
|
||||
uni.showToast({
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<view class="seach_input">
|
||||
<uni-easyinput :letfText='letfText' confirmType='search'
|
||||
@confirm='getData.currentPage=1;getList()'
|
||||
placeholder-style="color:#bbbbbb;font-weight: 100;" v-model="getData.params.siteName"
|
||||
placeholder-style="color:#bbbbbb;font-weight: 100;" v-model="getData.params.companyName"
|
||||
placeholder="企业名称">
|
||||
</uni-easyinput>
|
||||
</view>
|
||||
@@ -97,7 +97,7 @@
|
||||
currentPage: 1,
|
||||
params: {
|
||||
preTreatmentSign: '', //申请状态审核状态
|
||||
siteName: '', //油站名称
|
||||
companyName: '', //油站名称
|
||||
|
||||
}
|
||||
},
|
||||
@@ -124,6 +124,7 @@
|
||||
this.getList()
|
||||
},
|
||||
onLoad() {
|
||||
this.getData.currentPage = 1
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
|
||||
271
financialCenter/invoice/pool/index.vue
Normal file
271
financialCenter/invoice/pool/index.vue
Normal file
@@ -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>
|
||||
1324
pages.json
1324
pages.json
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"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
@@ -142,21 +142,21 @@
|
||||
value: 'SQL',
|
||||
label: '叁仟里'
|
||||
},
|
||||
{
|
||||
value: 'LV',
|
||||
label: '老吕(找油网)'
|
||||
},
|
||||
{
|
||||
value: 'TY',
|
||||
label: '团油'
|
||||
},
|
||||
{
|
||||
value: 'YDJY',
|
||||
label: '一点加油(壳牌)'
|
||||
},
|
||||
{
|
||||
value: 'ZDC',
|
||||
label: '掌多车'
|
||||
},
|
||||
{
|
||||
value: 'LV',
|
||||
label: '老吕(找油网)'
|
||||
},
|
||||
{
|
||||
value: 'YDJY',
|
||||
label: '一点加油(壳牌)'
|
||||
}
|
||||
],
|
||||
sitePriceData: {},
|
||||
|
||||
Reference in New Issue
Block a user