86 lines
1.6 KiB
JavaScript
86 lines
1.6 KiB
JavaScript
/**
|
|
* 页面静态数据
|
|
*/
|
|
const moduleBarInfos = [{
|
|
id: 1,
|
|
cuIcon: 'homefill',
|
|
pageCode: 'indexPage',
|
|
name: '首页'
|
|
}, {
|
|
id: 2,
|
|
cuIcon: 'shop',
|
|
pageCode: 'shopingMallPage',
|
|
name: '商城'
|
|
}, {
|
|
id: 3,
|
|
cuIcon: 'message',
|
|
pageCode: 'msgPage',
|
|
name: '消息',
|
|
countTag: 100
|
|
}, {
|
|
id: 4,
|
|
cuIcon: 'my',
|
|
pageCode: 'myPage',
|
|
name: '我的'
|
|
}]
|
|
|
|
const myInfo = {
|
|
id: 1,
|
|
picUrl: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big5000.jpg',
|
|
name: '叮咚任务师傅端',
|
|
entryType: null,
|
|
order: {
|
|
noReservation: 5,
|
|
noSchedule: 6,
|
|
onsiteTimeout: 3,
|
|
onsiteToday: [{
|
|
id: 1,
|
|
work: '灯具维修-灯泡射灯',
|
|
address: '广东省 广州市 白云区 xx街道',
|
|
datetime: '2022-4-22 10:00:00'
|
|
}, {
|
|
id: 2,
|
|
work: '冰箱维修',
|
|
address: '广东省 广州市 天河区 xx街道',
|
|
datetime: '2022-4-22 14:00:00'
|
|
}]
|
|
},
|
|
weekNotice: {
|
|
id: 1,
|
|
title: '您的一笔订单金额已到帐',
|
|
ifHasNoReadNotice: true
|
|
}
|
|
}
|
|
|
|
const myTeamInfo = {
|
|
takeRate: 0.5,
|
|
members: [{
|
|
id: '1sdfasdf',
|
|
name: '师傅1',
|
|
avatarUrl: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big5001.jpg',
|
|
noteName: '备注名称1',
|
|
phoneNum: '13455444567',
|
|
showEditInput: false
|
|
}, {
|
|
id: 'dfsdfsdfds',
|
|
name: '师傅2',
|
|
avatarUrl: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big5002.jpg',
|
|
noteName: '',
|
|
phoneNum: '13655455434',
|
|
showEditInput: true
|
|
}, {
|
|
id: 'sdcec',
|
|
name: '师傅3',
|
|
avatarUrl: 'https://ossweb-img.qq.com/images/lol/web201310/skin/big5002.jpg',
|
|
noteName: '',
|
|
phoneNum: '13655455422',
|
|
showEditInput: true
|
|
}]
|
|
}
|
|
|
|
export default {
|
|
moduleBarInfos,
|
|
myInfo,
|
|
myTeamInfo
|
|
}
|