86 lines
2.1 KiB
JavaScript
86 lines
2.1 KiB
JavaScript
|
|
"use strict";
|
||
|
|
const Merchant = [
|
||
|
|
//商户
|
||
|
|
{
|
||
|
|
pagePath: "/pages/MERCHANT/index/index",
|
||
|
|
text: "首页",
|
||
|
|
iconPath: "/static/tabbar/home.png",
|
||
|
|
selectedIconPath: "/static/tabbar/homeAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/MERCHANT/pay/index",
|
||
|
|
text: "支付",
|
||
|
|
iconPath: "/static/tabbar/pay.png",
|
||
|
|
selectedIconPath: "/static/tabbar/payAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/MERCHANT/loans/index",
|
||
|
|
text: "支出",
|
||
|
|
iconPath: "/static/tabbar/expenses.png",
|
||
|
|
selectedIconPath: "/static/tabbar/expensesAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/Me/index",
|
||
|
|
text: "我的",
|
||
|
|
iconPath: "/static/tabbar/me.png",
|
||
|
|
selectedIconPath: "/static/tabbar/meAct.png"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
const Investor = [
|
||
|
|
//投资方
|
||
|
|
{
|
||
|
|
pagePath: "/pages/INVESTOR/index/index",
|
||
|
|
text: "首页",
|
||
|
|
iconPath: "/static/tabbar/home.png",
|
||
|
|
selectedIconPath: "/static/tabbar/homeAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/INVESTOR/loans/index",
|
||
|
|
text: "分期",
|
||
|
|
iconPath: "/static/tabbar/expenses.png",
|
||
|
|
selectedIconPath: "/static/tabbar/expensesAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/INVESTOR/stages_det/index",
|
||
|
|
text: "明细",
|
||
|
|
iconPath: "/static/tabbar/pay.png",
|
||
|
|
selectedIconPath: "/static/tabbar/payAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/Me/index",
|
||
|
|
text: "我的",
|
||
|
|
iconPath: "/static/tabbar/me.png",
|
||
|
|
selectedIconPath: "/static/tabbar/meAct.png"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
const Agent = [
|
||
|
|
//代理商
|
||
|
|
{
|
||
|
|
pagePath: "/pages/AGENT/index/index",
|
||
|
|
text: "首页",
|
||
|
|
iconPath: "/static/tabbar/home.png",
|
||
|
|
selectedIconPath: "/static/tabbar/homeAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/AGENT/pay/index",
|
||
|
|
text: "支付",
|
||
|
|
iconPath: "/static/tabbar/pay.png",
|
||
|
|
selectedIconPath: "/static/tabbar/payAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/AGENT/loans/index",
|
||
|
|
text: "支出",
|
||
|
|
iconPath: "/static/tabbar/expenses.png",
|
||
|
|
selectedIconPath: "/static/tabbar/expensesAct.png"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pagePath: "/pages/Me/index",
|
||
|
|
text: "我的",
|
||
|
|
iconPath: "/static/tabbar/me.png",
|
||
|
|
selectedIconPath: "/static/tabbar/meAct.png"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
exports.Agent = Agent;
|
||
|
|
exports.Investor = Investor;
|
||
|
|
exports.Merchant = Merchant;
|