let Configs = { ///名字,由后台定义 name : "英雄榜", ///最后更新时间 lastUpdateTime : 1639967212, ///顶部背景图 image : "../../static/images/mainview/banner_yingxiongbang.png", } ///tabs标签的定义 let TabList = [ { name:"合伙人成交榜", },{ name:"分佣榜", } ] ///测试用排行榜数据格式 1:合伙人成交榜 let heroListDatasOne = [ { //排名 rankIndex : 1, //用户名 name : "花满楼", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/1.jpg", //金额 money : 100000, rankImage : "../../static/images/mainview/p_1.png", }, { //排名 rankIndex : 2, //用户名 name : "霜降", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/2.jpg", //金额 money : 90000, rankImage : "../../static/images/mainview/p_2.png", }, { //排名 rankIndex : 3, //用户名 name : "七块田", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/3.jpg", //金额 money : 80000, rankImage : "../../static/images/mainview/p_3.png", }, { //排名 rankIndex : 4, //用户名 name : "拼多多", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/4.jpg", //金额 money : 70000, }, { //排名 rankIndex : 5, //用户名 name : "淘宝", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/5.jpg", //金额 money : 60000, }, { //排名 rankIndex : 6, //用户名 name : "京东", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/6.jpg", //金额 money : 50000, } ] ///测试用排行榜数据格式 1:分佣榜 let heroListDatasTwo = [ { //排名 rankIndex : 1, //用户名 name : "Uzi", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/1.jpg", //金额 money : 100000, rankImage : "../../static/images/mainview/p_1.png", }, { //排名 rankIndex : 2, //用户名 name : "jacklove", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/2.jpg", //金额 money : 90000, rankImage : "../../static/images/mainview/p_2.png", }, { //排名 rankIndex : 3, //用户名 name : "theshy", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/3.jpg", //金额 money : 80000, rankImage : "../../static/images/mainview/p_3.png", }, { //排名 rankIndex : 4, //用户名 name : "facker", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/4.jpg", //金额 money : 70000, }, { //排名 rankIndex : 5, //用户名 name : "showmaker", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/5.jpg", //金额 money : 60000, }, { //排名 rankIndex : 6, //用户名 name : "京东", //头像地址 headUrl : "https://cdn.uviewui.com/uview/album/6.jpg", //金额 money : 50000, } ] export default{ Configs, TabList, heroListDatasOne, heroListDatasTwo, }