31 lines
582 B
JavaScript
31 lines
582 B
JavaScript
import { imageBasUrl } from "./config";
|
|
|
|
export const myToPathList = [
|
|
{
|
|
id: '2',
|
|
name: '充值明细',
|
|
toPath: '/pages/transaction/transaction',
|
|
thumb: `${imageBasUrl}/iamge/chonzhi.png`
|
|
},
|
|
{
|
|
id: '3',
|
|
name: '赠币明细',
|
|
toPath: '/pages/give/give',
|
|
thumb: `${imageBasUrl}/iamge/zenbi.png`
|
|
},
|
|
{
|
|
id: '4',
|
|
name: '联系客服',
|
|
toPath: '/pages/wxkf/wxkf',
|
|
thumb: `${imageBasUrl}/iamge/kefu.png`
|
|
},
|
|
];
|
|
|
|
export const myToHistroy = [
|
|
{
|
|
id: '1',
|
|
name: '历史观看',
|
|
toPath: '/pages/history/history',
|
|
thumb: `${imageBasUrl}/iamge/lishi.png`
|
|
},
|
|
] |