123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- var Mock = require('mockjs')
- var data = Mock.mock({
- unFinishedTaskList: [
- {
- id: 0,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '发送群文件测试',
- platform: [0, 1],
- description: '任务描述文字xxxx',
- price: '30',
- serviceType: 1,
- participantNum: 30,
- status: 0
- },
- {
- id: 1,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '多人聊天发送文件测试',
- platform: [0],
- description: '任务描述文字xxxx',
- price: '10',
- serviceType: 0,
- participantNum: 0,
- status: 1
- },
- {
- id: 2,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '浏览器波洞星球',
- platform: [1],
- description: '任务描述文字xxxx',
- price: '10',
- serviceType: 2,
- participantNum: 21,
- status: 0
- },
- {
- id: 3,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '举报支持选择聊天记录(安全)',
- platform: [0, 1, 2],
- description: '任务描述文字xxxx',
- price: '0',
- serviceType: 1,
- participantNum: 1,
- status: 1
- },
- ],
- finishedTaskList: [
- {
- id: 0,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '发送群文件测试',
- platform: [0, 1],
- description: '任务描述文字xxxx',
- price: '30',
- serviceType: 1,
- participantNum: 30,
- status: 0
- },
- {
- id: 1,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '多人聊天发送文件测试',
- platform: [0],
- description: '任务描述文字xxxx',
- price: '10',
- serviceType: 0,
- participantNum: 0,
- status: 1
- },
- {
- id: 2,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '浏览器波洞星球',
- platform: [1],
- description: '任务描述文字xxxx',
- price: '10',
- serviceType: 2,
- participantNum: 21,
- status: 0
- },
- {
- id: 3,
- coverImgUrl: 'http://www.mooctest.net/assets/img/mooctest.png',
- projectId: 1123,
- title: '举报支持选择聊天记录(安全)',
- platform: [0, 1, 2],
- description: '任务描述文字xxxx',
- price: '0',
- serviceType: 1,
- participantNum: 1,
- status: 1
- },
- ],
- appliedProjectList: [
- {
- id: 1,
- code: '27382hdsjkfdskfK',
- name: '多人聊天发送文件测试',
- platform: [0],
- description: '任务描述文字xxxx',
- price: '10'
- },
- {
- id: 2,
- code: 'jzlk9dfsndfsmd ',
- name: '多人聊天发送文件测试',
- platform: [0, 1],
- description: '任务描述文字xxxx',
- price: '90'
- },
- {
- id: 3,
- code: '437849sdbsjbsf',
- name: '多人聊天发送文件测试',
- platform: [1, 2],
- description: '任务描述文字xxxx',
- price: '50'
- }
- ],
- user: {
- id: 123,
- name: '李三',
- score: 100,
- prestige: 100,
- }
- })
- export {
- data
- }
|