Commit d8b02a88 authored by 乐宝呗666's avatar 乐宝呗666

删除掉console.log

parent 3e1e1eb3
import { assign, map } from 'lodash' import { assign, map } from 'lodash'
import faker from 'faker/locale/zh_CN' import faker from 'faker/locale/zh_CN'
import { service, request, serviceForMock, requestForMock, mock } from './service' // import { service, request, serviceForMock, requestForMock, mock } from './service'
import { request } from './service'
// import * as tools from './tools' // import * as tools from './tools'
const files = require.context('./modules', false, /\.js$/) const files = require.context('./modules', false, /\.js$/)
const generators = files.keys().map(key => files(key).default) const generators = files.keys().map(key => files(key).default)
export default assign({}, ...map(generators, generator => generator({ export default assign({}, ...map(generators, generator => generator({
service,
request, request,
serviceForMock,
requestForMock,
mock,
faker faker
}))) })))
...@@ -29,7 +29,6 @@ function createService () { ...@@ -29,7 +29,6 @@ function createService () {
}, },
error => { error => {
// 发送失败 // 发送失败
console.log(error)
return Promise.reject(error) return Promise.reject(error)
} }
) )
......
...@@ -12,7 +12,7 @@ export function parse (jsonString = '{}', defaultValue = {}) { ...@@ -12,7 +12,7 @@ export function parse (jsonString = '{}', defaultValue = {}) {
try { try {
result = JSON.parse(jsonString) result = JSON.parse(jsonString)
} catch (error) { } catch (error) {
console.log(error) // console.log(error)
} }
return result return result
} }
...@@ -65,7 +65,7 @@ export function errorLog (error) { ...@@ -65,7 +65,7 @@ export function errorLog (error) {
// 打印到控制台 // 打印到控制台
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
util.log.danger('>>>>>> Error >>>>>>') util.log.danger('>>>>>> Error >>>>>>')
console.log(error) // console.log(error)
} }
// 显示提示 // 显示提示
Message({ Message({
......
...@@ -109,10 +109,8 @@ export default { ...@@ -109,10 +109,8 @@ export default {
vm.chart.on('click', function (params) { vm.chart.on('click', function (params) {
if (vm.message.isLeaf) return if (vm.message.isLeaf) return
if (vm.message.parentId === undefined) return if (vm.message.parentId === undefined) return
console.log(params.dataIndex)
const _id = vm.message.idxs[params.dataIndex] const _id = vm.message.idxs[params.dataIndex]
vm.recordList.push({ name: params.name, id: _id, parentId: vm.message.parentId }) vm.recordList.push({ name: params.name, id: _id, parentId: vm.message.parentId })
console.log(vm.recordList)
vm.$emit('downData', _id) vm.$emit('downData', _id)
}) })
} }
......
...@@ -120,10 +120,8 @@ export default { ...@@ -120,10 +120,8 @@ export default {
vm.chart.on('click', function (params) { vm.chart.on('click', function (params) {
if (vm.message.isLeaf) return if (vm.message.isLeaf) return
if (vm.message.parentId === undefined) return if (vm.message.parentId === undefined) return
console.log(params.dataIndex)
const _id = vm.message.idxs[params.dataIndex] const _id = vm.message.idxs[params.dataIndex]
vm.recordList.push({ name: params.name, id: _id, parentId: vm.message.parentId }) vm.recordList.push({ name: params.name, id: _id, parentId: vm.message.parentId })
console.log(vm.recordList)
vm.$emit('downData', _id) vm.$emit('downData', _id)
}) })
} }
......
...@@ -313,7 +313,7 @@ export default { ...@@ -313,7 +313,7 @@ export default {
}, },
edgeSymbol: ['none', 'none'], edgeSymbol: ['none', 'none'],
roam: true, roam: true,
draggable: true, // 每个节点的拖拉 draggable: false, // 每个节点的拖拉
emphasis: { emphasis: {
scale: true, scale: true,
focus: 'series', focus: 'series',
...@@ -374,11 +374,12 @@ export default { ...@@ -374,11 +374,12 @@ export default {
const vm = this const vm = this
vm.chart.off('click') vm.chart.off('click')
vm.chart.on('click', function (params) { vm.chart.on('click', function (params) {
// if (vm.message.isLeaf) return if (params.dataType === 'node') {
if (vm.message.parentId === undefined) return // if (vm.message.isLeaf) return
vm.recordList.push({ name: params.name, id: params.data.id, parentId: vm.message.parentId, color: params.data.color, parentType: vm.message.type }) if (vm.message.parentId === undefined) return
// console.log(vm.recordList) vm.recordList.push({ name: params.name, id: params.data.id, parentId: vm.message.parentId, color: params.data.color, parentType: vm.message.type })
vm.$emit('downData', params.data) vm.$emit('downData', params.data)
}
}) })
} }
}, },
......
...@@ -26,7 +26,6 @@ export default { ...@@ -26,7 +26,6 @@ export default {
vm.chart = echarts.init(document.getElementById(vm.idstr)) vm.chart = echarts.init(document.getElementById(vm.idstr))
// 清空图表 // 清空图表
vm.chart.clear() vm.chart.clear()
console.log(vm.message)
vm.option = { vm.option = {
// 图表主标题 // 图表主标题
// 提示框组件 // 提示框组件
......
import { get, isObject } from 'lodash' import { get, isObject } from 'lodash'
import store from '../../../store' import store from '../../../store'
import util from '@/libs/util' // import util from '@/libs/util'
export default { export default {
install (Vue, options) { install (Vue, options) {
...@@ -15,14 +15,14 @@ export default { ...@@ -15,14 +15,14 @@ export default {
vm vm
} }
}) })
if (process.env.NODE_ENV !== 'development') return // if (process.env.NODE_ENV !== 'development') return
util.log.capsule('D2Admin', 'ErrorHandler', logType) // util.log.capsule('D2Admin', 'ErrorHandler', logType)
util.log.danger('>>>>>> 错误信息 >>>>>>') // util.log.danger('>>>>>> 错误信息 >>>>>>')
console.log(info) // console.log(info)
util.log.danger('>>>>>> Vue 实例 >>>>>>') // util.log.danger('>>>>>> Vue 实例 >>>>>>')
console.log(vm) // console.log(vm)
util.log.danger('>>>>>> Error >>>>>>') // util.log.danger('>>>>>> Error >>>>>>')
console.log(error) // console.log(error)
}) })
} }
} }
......
...@@ -276,18 +276,18 @@ export default { ...@@ -276,18 +276,18 @@ export default {
}, },
// 商机阶段分许下钻数据 // 商机阶段分许下钻数据
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
this.getOpportunitiesByDept(item) this.getOpportunitiesByDept(item)
}, },
// 行业分布下钻数据 // 行业分布下钻数据
downDistributeData (item) { downDistributeData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
this.industry = item this.industry = item
this.getDistribution() this.getDistribution()
}, },
// 产品类型分析下钻数据 // 产品类型分析下钻数据
downTypeData (item) { downTypeData (item) {
console.log('pie传来的值:', item) // console.log('pie传来的值:', item)
this.productType = item this.productType = item
this.getProductType() this.getProductType()
} }
......
...@@ -55,8 +55,6 @@ export default { ...@@ -55,8 +55,6 @@ export default {
// console.log('值:' + i[k]) // console.log('值:' + i[k])
// } // }
// } // }
console.log(this.dataList)
} }
} }
} }
......
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
} }
}, },
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
if (!item) { if (!item) {
this.getBudget('', false) this.getBudget('', false)
} else { } else {
......
...@@ -59,7 +59,7 @@ export default { ...@@ -59,7 +59,7 @@ export default {
} }
}, },
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
if (!item) { if (!item) {
this.getRevenue('', false) this.getRevenue('', false)
} else { } else {
......
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
} }
}, },
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
if (!item) { if (!item) {
this.getFee('', false) this.getFee('', false)
} else { } else {
......
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
} }
}, },
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
setTimeout(() => { setTimeout(() => {
if (item.indexOf('company') !== -1) { if (item.indexOf('company') !== -1) {
this.itemList = { this.itemList = {
......
...@@ -212,7 +212,7 @@ export default { ...@@ -212,7 +212,7 @@ export default {
}, },
downData (item) { downData (item) {
console.log('传来的值:', item) // console.log('传来的值:', item)
setTimeout(() => { setTimeout(() => {
if (!item) { if (!item) {
this.dataList = { this.dataList = {
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
import vis from '@/assets/js/VisHelper.js' import vis from '@/assets/js/VisHelper.js'
import knowledgeJSON from '@/assets/js/knowledgeJSON.js' import knowledgeJSON from '@/assets/js/knowledgeJSON.js'
import knowledgeDialog from './knowledgeDialog' import knowledgeDialog from './knowledgeDialog'
import * as API_KNOWLED from '@/api/sys.knowled.js' // import * as API_KNOWLED from '@/api/sys.knowled.js'
export default { export default {
components: { knowledgeDialog }, components: { knowledgeDialog },
...@@ -71,1778 +71,1778 @@ export default { ...@@ -71,1778 +71,1778 @@ export default {
} }
}, },
mounted () { mounted () {
const _data = { // const _data = {
nodes: [ // nodes: [
{ // {
id: '0', // id: '0',
name: 'Myriel', // name: 'Myriel',
symbolSize: 19.12381, // symbolSize: 19.12381,
x: -266.82776, // x: -266.82776,
y: 299.6904, // y: 299.6904,
value: 28.685715, // value: 28.685715,
category: 0 // category: 0
}, // },
{ // {
id: '1', // id: '1',
name: 'Napoleon', // name: 'Napoleon',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -418.08344, // x: -418.08344,
y: 446.8853, // y: 446.8853,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '2', // id: '2',
name: 'MlleBaptistine', // name: 'MlleBaptistine',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: -212.76357, // x: -212.76357,
y: 245.29176, // y: 245.29176,
value: 9.485714, // value: 9.485714,
category: 1 // category: 1
}, // },
{ // {
id: '3', // id: '3',
name: 'MmeMagloire', // name: 'MmeMagloire',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: -242.82404, // x: -242.82404,
y: 235.26283, // y: 235.26283,
value: 9.485714, // value: 9.485714,
category: 1 // category: 1
}, // },
{ // {
id: '4', // id: '4',
name: 'CountessDeLo', // name: 'CountessDeLo',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -379.30386, // x: -379.30386,
y: 429.06424, // y: 429.06424,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '5', // id: '5',
name: 'Geborand', // name: 'Geborand',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -417.26337, // x: -417.26337,
y: 406.03506, // y: 406.03506,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '6', // id: '6',
name: 'Champtercier', // name: 'Champtercier',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -332.6012, // x: -332.6012,
y: 485.16974, // y: 485.16974,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '7', // id: '7',
name: 'Cravatte', // name: 'Cravatte',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -382.69568, // x: -382.69568,
y: 475.09113, // y: 475.09113,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '8', // id: '8',
name: 'Count', // name: 'Count',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -320.384, // x: -320.384,
y: 387.17325, // y: 387.17325,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '9', // id: '9',
name: 'OldMan', // name: 'OldMan',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -344.39832, // x: -344.39832,
y: 451.16772, // y: 451.16772,
value: 4, // value: 4,
category: 0 // category: 0
}, // },
{ // {
id: '10', // id: '10',
name: 'Labarre', // name: 'Labarre',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -89.34107, // x: -89.34107,
y: 234.56128, // y: 234.56128,
value: 4, // value: 4,
category: 1 // category: 1
}, // },
{ // {
id: '11', // id: '11',
name: 'Valjean', // name: 'Valjean',
symbolSize: 66.66666666666667, // symbolSize: 66.66666666666667,
x: -87.93029, // x: -87.93029,
y: -6.8120565, // y: -6.8120565,
value: 100, // value: 100,
category: 1 // category: 1
}, // },
{ // {
id: '12', // id: '12',
name: 'Marguerite', // name: 'Marguerite',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: -339.77908, // x: -339.77908,
y: -184.69139, // y: -184.69139,
value: 6.742859, // value: 6.742859,
category: 1 // category: 1
}, // },
{ // {
id: '13', // id: '13',
name: 'MmeDeR', // name: 'MmeDeR',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -194.31313, // x: -194.31313,
y: 178.55301, // y: 178.55301,
value: 4, // value: 4,
category: 1 // category: 1
}, // },
{ // {
id: '14', // id: '14',
name: 'Isabeau', // name: 'Isabeau',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -158.05168, // x: -158.05168,
y: 201.99768, // y: 201.99768,
value: 4, // value: 4,
category: 1 // category: 1
}, // },
{ // {
id: '15', // id: '15',
name: 'Gervais', // name: 'Gervais',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -127.701546, // x: -127.701546,
y: 242.55057, // y: 242.55057,
value: 4, // value: 4,
category: 1 // category: 1
}, // },
{ // {
id: '16', // id: '16',
name: 'Tholomyes', // name: 'Tholomyes',
symbolSize: 17.295237333333333, // symbolSize: 17.295237333333333,
x: -385.2226, // x: -385.2226,
y: -393.5572, // y: -393.5572,
value: 25.942856, // value: 25.942856,
category: 2 // category: 2
}, // },
{ // {
id: '17', // id: '17',
name: 'Listolier', // name: 'Listolier',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -516.55884, // x: -516.55884,
y: -393.98975, // y: -393.98975,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '18', // id: '18',
name: 'Fameuil', // name: 'Fameuil',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -464.79382, // x: -464.79382,
y: -493.57944, // y: -493.57944,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '19', // id: '19',
name: 'Blacheville', // name: 'Blacheville',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -515.1624, // x: -515.1624,
y: -456.9891, // y: -456.9891,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '20', // id: '20',
name: 'Favourite', // name: 'Favourite',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -408.12122, // x: -408.12122,
y: -464.5048, // y: -464.5048,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '21', // id: '21',
name: 'Dahlia', // name: 'Dahlia',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -456.44113, // x: -456.44113,
y: -425.13303, // y: -425.13303,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '22', // id: '22',
name: 'Zephine', // name: 'Zephine',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: -459.1107, // x: -459.1107,
y: -362.5133, // y: -362.5133,
value: 20.457146, // value: 20.457146,
category: 2 // category: 2
}, // },
{ // {
id: '23', // id: '23',
name: 'Fantine', // name: 'Fantine',
symbolSize: 28.266666666666666, // symbolSize: 28.266666666666666,
x: -313.42786, // x: -313.42786,
y: -289.44803, // y: -289.44803,
value: 42.4, // value: 42.4,
category: 2 // category: 2
}, // },
{ // {
id: '24', // id: '24',
name: 'MmeThenardier', // name: 'MmeThenardier',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 4.6313396, // x: 4.6313396,
y: -273.8517, // y: -273.8517,
value: 31.428574, // value: 31.428574,
category: 7 // category: 7
}, // },
{ // {
id: '25', // id: '25',
name: 'Thenardier', // name: 'Thenardier',
symbolSize: 30.095235333333335, // symbolSize: 30.095235333333335,
x: 82.80825, // x: 82.80825,
y: -203.1144, // y: -203.1144,
value: 45.142853, // value: 45.142853,
category: 7 // category: 7
}, // },
{ // {
id: '26', // id: '26',
name: 'Cosette', // name: 'Cosette',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 78.64646, // x: 78.64646,
y: -31.512747, // y: -31.512747,
value: 31.428574, // value: 31.428574,
category: 6 // category: 6
}, // },
{ // {
id: '27', // id: '27',
name: 'Javert', // name: 'Javert',
symbolSize: 31.923806666666668, // symbolSize: 31.923806666666668,
x: -81.46074, // x: -81.46074,
y: -204.20204, // y: -204.20204,
value: 47.88571, // value: 47.88571,
category: 7 // category: 7
}, // },
{ // {
id: '28', // id: '28',
name: 'Fauchelevent', // name: 'Fauchelevent',
symbolSize: 8.152382000000001, // symbolSize: 8.152382000000001,
x: -225.73984, // x: -225.73984,
y: 82.41631, // y: 82.41631,
value: 12.228573, // value: 12.228573,
category: 4 // category: 4
}, // },
{ // {
id: '29', // id: '29',
name: 'Bamatabois', // name: 'Bamatabois',
symbolSize: 15.466666666666667, // symbolSize: 15.466666666666667,
x: -385.6842, // x: -385.6842,
y: -20.206686, // y: -20.206686,
value: 23.2, // value: 23.2,
category: 3 // category: 3
}, // },
{ // {
id: '30', // id: '30',
name: 'Perpetue', // name: 'Perpetue',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: -403.92447, // x: -403.92447,
y: -197.69823, // y: -197.69823,
value: 6.742859, // value: 6.742859,
category: 2 // category: 2
}, // },
{ // {
id: '31', // id: '31',
name: 'Simplice', // name: 'Simplice',
symbolSize: 8.152382000000001, // symbolSize: 8.152382000000001,
x: -281.4253, // x: -281.4253,
y: -158.45137, // y: -158.45137,
value: 12.228573, // value: 12.228573,
category: 2 // category: 2
}, // },
{ // {
id: '32', // id: '32',
name: 'Scaufflaire', // name: 'Scaufflaire',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -122.41348, // x: -122.41348,
y: 210.37503, // y: 210.37503,
value: 4, // value: 4,
category: 1 // category: 1
}, // },
{ // {
id: '33', // id: '33',
name: 'Woman1', // name: 'Woman1',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: -234.6001, // x: -234.6001,
y: -113.15067, // y: -113.15067,
value: 6.742859, // value: 6.742859,
category: 1 // category: 1
}, // },
{ // {
id: '34', // id: '34',
name: 'Judge', // name: 'Judge',
symbolSize: 11.809524666666666, // symbolSize: 11.809524666666666,
x: -387.84915, // x: -387.84915,
y: 58.7059, // y: 58.7059,
value: 17.714287, // value: 17.714287,
category: 3 // category: 3
}, // },
{ // {
id: '35', // id: '35',
name: 'Champmathieu', // name: 'Champmathieu',
symbolSize: 11.809524666666666, // symbolSize: 11.809524666666666,
x: -338.2307, // x: -338.2307,
y: 87.48405, // y: 87.48405,
value: 17.714287, // value: 17.714287,
category: 3 // category: 3
}, // },
{ // {
id: '36', // id: '36',
name: 'Brevet', // name: 'Brevet',
symbolSize: 11.809524666666666, // symbolSize: 11.809524666666666,
x: -453.26874, // x: -453.26874,
y: 58.94648, // y: 58.94648,
value: 17.714287, // value: 17.714287,
category: 3 // category: 3
}, // },
{ // {
id: '37', // id: '37',
name: 'Chenildieu', // name: 'Chenildieu',
symbolSize: 11.809524666666666, // symbolSize: 11.809524666666666,
x: -386.44904, // x: -386.44904,
y: 140.05937, // y: 140.05937,
value: 17.714287, // value: 17.714287,
category: 3 // category: 3
}, // },
{ // {
id: '38', // id: '38',
name: 'Cochepaille', // name: 'Cochepaille',
symbolSize: 11.809524666666666, // symbolSize: 11.809524666666666,
x: -446.7876, // x: -446.7876,
y: 123.38005, // y: 123.38005,
value: 17.714287, // value: 17.714287,
category: 3 // category: 3
}, // },
{ // {
id: '39', // id: '39',
name: 'Pontmercy', // name: 'Pontmercy',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: 336.49738, // x: 336.49738,
y: -269.55914, // y: -269.55914,
value: 9.485714, // value: 9.485714,
category: 6 // category: 6
}, // },
{ // {
id: '40', // id: '40',
name: 'Boulatruelle', // name: 'Boulatruelle',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: 29.187843, // x: 29.187843,
y: -460.13132, // y: -460.13132,
value: 4, // value: 4,
category: 7 // category: 7
}, // },
{ // {
id: '41', // id: '41',
name: 'Eponine', // name: 'Eponine',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 238.36697, // x: 238.36697,
y: -210.00926, // y: -210.00926,
value: 31.428574, // value: 31.428574,
category: 7 // category: 7
}, // },
{ // {
id: '42', // id: '42',
name: 'Anzelma', // name: 'Anzelma',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: 189.69513, // x: 189.69513,
y: -346.50662, // y: -346.50662,
value: 9.485714, // value: 9.485714,
category: 7 // category: 7
}, // },
{ // {
id: '43', // id: '43',
name: 'Woman2', // name: 'Woman2',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: -187.00418, // x: -187.00418,
y: -145.02663, // y: -145.02663,
value: 9.485714, // value: 9.485714,
category: 6 // category: 6
}, // },
{ // {
id: '44', // id: '44',
name: 'MotherInnocent', // name: 'MotherInnocent',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: -252.99521, // x: -252.99521,
y: 129.87549, // y: 129.87549,
value: 6.742859, // value: 6.742859,
category: 4 // category: 4
}, // },
{ // {
id: '45', // id: '45',
name: 'Gribier', // name: 'Gribier',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: -296.07935, // x: -296.07935,
y: 163.11964, // y: 163.11964,
value: 4, // value: 4,
category: 4 // category: 4
}, // },
{ // {
id: '46', // id: '46',
name: 'Jondrette', // name: 'Jondrette',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: 550.3201, // x: 550.3201,
y: 522.4031, // y: 522.4031,
value: 4, // value: 4,
category: 5 // category: 5
}, // },
{ // {
id: '47', // id: '47',
name: 'MmeBurgon', // name: 'MmeBurgon',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 488.13535, // x: 488.13535,
y: 356.8573, // y: 356.8573,
value: 6.742859, // value: 6.742859,
category: 5 // category: 5
}, // },
{ // {
id: '48', // id: '48',
name: 'Gavroche', // name: 'Gavroche',
symbolSize: 41.06667066666667, // symbolSize: 41.06667066666667,
x: 387.89572, // x: 387.89572,
y: 110.462326, // y: 110.462326,
value: 61.600006, // value: 61.600006,
category: 8 // category: 8
}, // },
{ // {
id: '49', // id: '49',
name: 'Gillenormand', // name: 'Gillenormand',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: 126.4831, // x: 126.4831,
y: 68.10622, // y: 68.10622,
value: 20.457146, // value: 20.457146,
category: 6 // category: 6
}, // },
{ // {
id: '50', // id: '50',
name: 'Magnon', // name: 'Magnon',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 127.07365, // x: 127.07365,
y: -113.05923, // y: -113.05923,
value: 6.742859, // value: 6.742859,
category: 6 // category: 6
}, // },
{ // {
id: '51', // id: '51',
name: 'MlleGillenormand', // name: 'MlleGillenormand',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: 162.63559, // x: 162.63559,
y: 117.6565, // y: 117.6565,
value: 20.457146, // value: 20.457146,
category: 6 // category: 6
}, // },
{ // {
id: '52', // id: '52',
name: 'MmePontmercy', // name: 'MmePontmercy',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 353.66415, // x: 353.66415,
y: -205.89165, // y: -205.89165,
value: 6.742859, // value: 6.742859,
category: 6 // category: 6
}, // },
{ // {
id: '53', // id: '53',
name: 'MlleVaubois', // name: 'MlleVaubois',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: 165.43939, // x: 165.43939,
y: 339.7736, // y: 339.7736,
value: 4, // value: 4,
category: 6 // category: 6
}, // },
{ // {
id: '54', // id: '54',
name: 'LtGillenormand', // name: 'LtGillenormand',
symbolSize: 8.152382000000001, // symbolSize: 8.152382000000001,
x: 137.69348, // x: 137.69348,
y: 196.1069, // y: 196.1069,
value: 12.228573, // value: 12.228573,
category: 6 // category: 6
}, // },
{ // {
id: '55', // id: '55',
name: 'Marius', // name: 'Marius',
symbolSize: 35.58095333333333, // symbolSize: 35.58095333333333,
x: 206.44687, // x: 206.44687,
y: -13.805411, // y: -13.805411,
value: 53.37143, // value: 53.37143,
category: 6 // category: 6
}, // },
{ // {
id: '56', // id: '56',
name: 'BaronessT', // name: 'BaronessT',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 194.82993, // x: 194.82993,
y: 224.78036, // y: 224.78036,
value: 6.742859, // value: 6.742859,
category: 6 // category: 6
}, // },
{ // {
id: '57', // id: '57',
name: 'Mabeuf', // name: 'Mabeuf',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 597.6618, // x: 597.6618,
y: 135.18481, // y: 135.18481,
value: 31.428574, // value: 31.428574,
category: 8 // category: 8
}, // },
{ // {
id: '58', // id: '58',
name: 'Enjolras', // name: 'Enjolras',
symbolSize: 28.266666666666666, // symbolSize: 28.266666666666666,
x: 355.78366, // x: 355.78366,
y: -74.882454, // y: -74.882454,
value: 42.4, // value: 42.4,
category: 8 // category: 8
}, // },
{ // {
id: '59', // id: '59',
name: 'Combeferre', // name: 'Combeferre',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 515.2961, // x: 515.2961,
y: -46.167564, // y: -46.167564,
value: 31.428574, // value: 31.428574,
category: 8 // category: 8
}, // },
{ // {
id: '60', // id: '60',
name: 'Prouvaire', // name: 'Prouvaire',
symbolSize: 17.295237333333333, // symbolSize: 17.295237333333333,
x: 614.29285, // x: 614.29285,
y: -69.3104, // y: -69.3104,
value: 25.942856, // value: 25.942856,
category: 8 // category: 8
}, // },
{ // {
id: '61', // id: '61',
name: 'Feuilly', // name: 'Feuilly',
symbolSize: 20.95238266666667, // symbolSize: 20.95238266666667,
x: 550.1917, // x: 550.1917,
y: -128.17537, // y: -128.17537,
value: 31.428574, // value: 31.428574,
category: 8 // category: 8
}, // },
{ // {
id: '62', // id: '62',
name: 'Courfeyrac', // name: 'Courfeyrac',
symbolSize: 24.609526666666667, // symbolSize: 24.609526666666667,
x: 436.17184, // x: 436.17184,
y: -12.7286825, // y: -12.7286825,
value: 36.91429, // value: 36.91429,
category: 8 // category: 8
}, // },
{ // {
id: '63', // id: '63',
name: 'Bahorel', // name: 'Bahorel',
symbolSize: 22.780953333333333, // symbolSize: 22.780953333333333,
x: 602.55225, // x: 602.55225,
y: 16.421427, // y: 16.421427,
value: 34.17143, // value: 34.17143,
category: 8 // category: 8
}, // },
{ // {
id: '64', // id: '64',
name: 'Bossuet', // name: 'Bossuet',
symbolSize: 24.609526666666667, // symbolSize: 24.609526666666667,
x: 455.81955, // x: 455.81955,
y: -115.45826, // y: -115.45826,
value: 36.91429, // value: 36.91429,
category: 8 // category: 8
}, // },
{ // {
id: '65', // id: '65',
name: 'Joly', // name: 'Joly',
symbolSize: 22.780953333333333, // symbolSize: 22.780953333333333,
x: 516.40784, // x: 516.40784,
y: 47.242233, // y: 47.242233,
value: 34.17143, // value: 34.17143,
category: 8 // category: 8
}, // },
{ // {
id: '66', // id: '66',
name: 'Grantaire', // name: 'Grantaire',
symbolSize: 19.12381, // symbolSize: 19.12381,
x: 646.4313, // x: 646.4313,
y: -151.06331, // y: -151.06331,
value: 28.685715, // value: 28.685715,
category: 8 // category: 8
}, // },
{ // {
id: '67', // id: '67',
name: 'MotherPlutarch', // name: 'MotherPlutarch',
symbolSize: 2.6666666666666665, // symbolSize: 2.6666666666666665,
x: 668.9568, // x: 668.9568,
y: 204.65488, // y: 204.65488,
value: 4, // value: 4,
category: 8 // category: 8
}, // },
{ // {
id: '68', // id: '68',
name: 'Gueulemer', // name: 'Gueulemer',
symbolSize: 19.12381, // symbolSize: 19.12381,
x: 78.4799, // x: 78.4799,
y: -347.15146, // y: -347.15146,
value: 28.685715, // value: 28.685715,
category: 7 // category: 7
}, // },
{ // {
id: '69', // id: '69',
name: 'Babet', // name: 'Babet',
symbolSize: 19.12381, // symbolSize: 19.12381,
x: 150.35959, // x: 150.35959,
y: -298.50797, // y: -298.50797,
value: 28.685715, // value: 28.685715,
category: 7 // category: 7
}, // },
{ // {
id: '70', // id: '70',
name: 'Claquesous', // name: 'Claquesous',
symbolSize: 19.12381, // symbolSize: 19.12381,
x: 137.3717, // x: 137.3717,
y: -410.2809, // y: -410.2809,
value: 28.685715, // value: 28.685715,
category: 7 // category: 7
}, // },
{ // {
id: '71', // id: '71',
name: 'Montparnasse', // name: 'Montparnasse',
symbolSize: 17.295237333333333, // symbolSize: 17.295237333333333,
x: 234.87747, // x: 234.87747,
y: -400.85983, // y: -400.85983,
value: 25.942856, // value: 25.942856,
category: 7 // category: 7
}, // },
{ // {
id: '72', // id: '72',
name: 'Toussaint', // name: 'Toussaint',
symbolSize: 6.323809333333333, // symbolSize: 6.323809333333333,
x: 40.942253, // x: 40.942253,
y: 113.78272, // y: 113.78272,
value: 9.485714, // value: 9.485714,
category: 1 // category: 1
}, // },
{ // {
id: '73', // id: '73',
name: 'Child1', // name: 'Child1',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 437.939, // x: 437.939,
y: 291.58234, // y: 291.58234,
value: 6.742859, // value: 6.742859,
category: 8 // category: 8
}, // },
{ // {
id: '74', // id: '74',
name: 'Child2', // name: 'Child2',
symbolSize: 4.495239333333333, // symbolSize: 4.495239333333333,
x: 466.04922, // x: 466.04922,
y: 283.3606, // y: 283.3606,
value: 6.742859, // value: 6.742859,
category: 8 // category: 8
}, // },
{ // {
id: '75', // id: '75',
name: 'Brujon', // name: 'Brujon',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: 238.79364, // x: 238.79364,
y: -314.06345, // y: -314.06345,
value: 20.457146, // value: 20.457146,
category: 7 // category: 7
}, // },
{ // {
id: '76', // id: '76',
name: 'MmeHucheloup', // name: 'MmeHucheloup',
symbolSize: 13.638097333333334, // symbolSize: 13.638097333333334,
x: 712.18353, // x: 712.18353,
y: 4.8131495, // y: 4.8131495,
value: 20.457146, // value: 20.457146,
category: 8 // category: 8
} // }
], // ],
links: [ // links: [
{ // {
source: '1', // source: '1',
target: '0' // target: '0'
}, // },
{ // {
source: '2', // source: '2',
target: '0' // target: '0'
}, // },
{ // {
source: '3', // source: '3',
target: '0' // target: '0'
}, // },
{ // {
source: '3', // source: '3',
target: '2' // target: '2'
}, // },
{ // {
source: '4', // source: '4',
target: '0' // target: '0'
}, // },
{ // {
source: '5', // source: '5',
target: '0' // target: '0'
}, // },
{ // {
source: '6', // source: '6',
target: '0' // target: '0'
}, // },
{ // {
source: '7', // source: '7',
target: '0' // target: '0'
}, // },
{ // {
source: '8', // source: '8',
target: '0' // target: '0'
}, // },
{ // {
source: '9', // source: '9',
target: '0' // target: '0'
}, // },
{ // {
source: '11', // source: '11',
target: '0' // target: '0'
}, // },
{ // {
source: '11', // source: '11',
target: '2' // target: '2'
}, // },
{ // {
source: '11', // source: '11',
target: '3' // target: '3'
}, // },
{ // {
source: '11', // source: '11',
target: '10' // target: '10'
}, // },
{ // {
source: '12', // source: '12',
target: '11' // target: '11'
}, // },
{ // {
source: '13', // source: '13',
target: '11' // target: '11'
}, // },
{ // {
source: '14', // source: '14',
target: '11' // target: '11'
}, // },
{ // {
source: '15', // source: '15',
target: '11' // target: '11'
}, // },
{ // {
source: '17', // source: '17',
target: '16' // target: '16'
}, // },
{ // {
source: '18', // source: '18',
target: '16' // target: '16'
}, // },
{ // {
source: '18', // source: '18',
target: '17' // target: '17'
}, // },
{ // {
source: '19', // source: '19',
target: '16' // target: '16'
}, // },
{ // {
source: '19', // source: '19',
target: '17' // target: '17'
}, // },
{ // {
source: '19', // source: '19',
target: '18' // target: '18'
}, // },
{ // {
source: '20', // source: '20',
target: '16' // target: '16'
}, // },
{ // {
source: '20', // source: '20',
target: '17' // target: '17'
}, // },
{ // {
source: '20', // source: '20',
target: '18' // target: '18'
}, // },
{ // {
source: '20', // source: '20',
target: '19' // target: '19'
}, // },
{ // {
source: '21', // source: '21',
target: '16' // target: '16'
}, // },
{ // {
source: '21', // source: '21',
target: '17' // target: '17'
}, // },
{ // {
source: '21', // source: '21',
target: '18' // target: '18'
}, // },
{ // {
source: '21', // source: '21',
target: '19' // target: '19'
}, // },
{ // {
source: '21', // source: '21',
target: '20' // target: '20'
}, // },
{ // {
source: '22', // source: '22',
target: '16' // target: '16'
}, // },
{ // {
source: '22', // source: '22',
target: '17' // target: '17'
}, // },
{ // {
source: '22', // source: '22',
target: '18' // target: '18'
}, // },
{ // {
source: '22', // source: '22',
target: '19' // target: '19'
}, // },
{ // {
source: '22', // source: '22',
target: '20' // target: '20'
}, // },
{ // {
source: '22', // source: '22',
target: '21' // target: '21'
}, // },
{ // {
source: '23', // source: '23',
target: '11' // target: '11'
}, // },
{ // {
source: '23', // source: '23',
target: '12' // target: '12'
}, // },
{ // {
source: '23', // source: '23',
target: '16' // target: '16'
}, // },
{ // {
source: '23', // source: '23',
target: '17' // target: '17'
}, // },
{ // {
source: '23', // source: '23',
target: '18' // target: '18'
}, // },
{ // {
source: '23', // source: '23',
target: '19' // target: '19'
}, // },
{ // {
source: '23', // source: '23',
target: '20' // target: '20'
}, // },
{ // {
source: '23', // source: '23',
target: '21' // target: '21'
}, // },
{ // {
source: '23', // source: '23',
target: '22' // target: '22'
}, // },
{ // {
source: '24', // source: '24',
target: '11' // target: '11'
}, // },
{ // {
source: '24', // source: '24',
target: '23' // target: '23'
}, // },
{ // {
source: '25', // source: '25',
target: '11' // target: '11'
}, // },
{ // {
source: '25', // source: '25',
target: '23' // target: '23'
}, // },
{ // {
source: '25', // source: '25',
target: '24' // target: '24'
}, // },
{ // {
source: '26', // source: '26',
target: '11' // target: '11'
}, // },
{ // {
source: '26', // source: '26',
target: '16' // target: '16'
}, // },
{ // {
source: '26', // source: '26',
target: '24' // target: '24'
}, // },
{ // {
source: '26', // source: '26',
target: '25' // target: '25'
}, // },
{ // {
source: '27', // source: '27',
target: '11' // target: '11'
}, // },
{ // {
source: '27', // source: '27',
target: '23' // target: '23'
}, // },
{ // {
source: '27', // source: '27',
target: '24' // target: '24'
}, // },
{ // {
source: '27', // source: '27',
target: '25' // target: '25'
}, // },
{ // {
source: '27', // source: '27',
target: '26' // target: '26'
}, // },
{ // {
source: '28', // source: '28',
target: '11' // target: '11'
}, // },
{ // {
source: '28', // source: '28',
target: '27' // target: '27'
}, // },
{ // {
source: '29', // source: '29',
target: '11' // target: '11'
}, // },
{ // {
source: '29', // source: '29',
target: '23' // target: '23'
}, // },
{ // {
source: '29', // source: '29',
target: '27' // target: '27'
}, // },
{ // {
source: '30', // source: '30',
target: '23' // target: '23'
}, // },
{ // {
source: '31', // source: '31',
target: '11' // target: '11'
}, // },
{ // {
source: '31', // source: '31',
target: '23' // target: '23'
}, // },
{ // {
source: '31', // source: '31',
target: '27' // target: '27'
}, // },
{ // {
source: '31', // source: '31',
target: '30' // target: '30'
}, // },
{ // {
source: '32', // source: '32',
target: '11' // target: '11'
}, // },
{ // {
source: '33', // source: '33',
target: '11' // target: '11'
}, // },
{ // {
source: '33', // source: '33',
target: '27' // target: '27'
}, // },
{ // {
source: '34', // source: '34',
target: '11' // target: '11'
}, // },
{ // {
source: '34', // source: '34',
target: '29' // target: '29'
}, // },
{ // {
source: '35', // source: '35',
target: '11' // target: '11'
}, // },
{ // {
source: '35', // source: '35',
target: '29' // target: '29'
}, // },
{ // {
source: '35', // source: '35',
target: '34' // target: '34'
}, // },
{ // {
source: '36', // source: '36',
target: '11' // target: '11'
}, // },
{ // {
source: '36', // source: '36',
target: '29' // target: '29'
}, // },
{ // {
source: '36', // source: '36',
target: '34' // target: '34'
}, // },
{ // {
source: '36', // source: '36',
target: '35' // target: '35'
}, // },
{ // {
source: '37', // source: '37',
target: '11' // target: '11'
}, // },
{ // {
source: '37', // source: '37',
target: '29' // target: '29'
}, // },
{ // {
source: '37', // source: '37',
target: '34' // target: '34'
}, // },
{ // {
source: '37', // source: '37',
target: '35' // target: '35'
}, // },
{ // {
source: '37', // source: '37',
target: '36' // target: '36'
}, // },
{ // {
source: '38', // source: '38',
target: '11' // target: '11'
}, // },
{ // {
source: '38', // source: '38',
target: '29' // target: '29'
}, // },
{ // {
source: '38', // source: '38',
target: '34' // target: '34'
}, // },
{ // {
source: '38', // source: '38',
target: '35' // target: '35'
}, // },
{ // {
source: '38', // source: '38',
target: '36' // target: '36'
}, // },
{ // {
source: '38', // source: '38',
target: '37' // target: '37'
}, // },
{ // {
source: '39', // source: '39',
target: '25' // target: '25'
}, // },
{ // {
source: '40', // source: '40',
target: '25' // target: '25'
}, // },
{ // {
source: '41', // source: '41',
target: '24' // target: '24'
}, // },
{ // {
source: '41', // source: '41',
target: '25' // target: '25'
}, // },
{ // {
source: '42', // source: '42',
target: '24' // target: '24'
}, // },
{ // {
source: '42', // source: '42',
target: '25' // target: '25'
}, // },
{ // {
source: '42', // source: '42',
target: '41' // target: '41'
}, // },
{ // {
source: '43', // source: '43',
target: '11' // target: '11'
}, // },
{ // {
source: '43', // source: '43',
target: '26' // target: '26'
}, // },
{ // {
source: '43', // source: '43',
target: '27' // target: '27'
}, // },
{ // {
source: '44', // source: '44',
target: '11' // target: '11'
}, // },
{ // {
source: '44', // source: '44',
target: '28' // target: '28'
}, // },
{ // {
source: '45', // source: '45',
target: '28' // target: '28'
}, // },
{ // {
source: '47', // source: '47',
target: '46' // target: '46'
}, // },
{ // {
source: '48', // source: '48',
target: '11' // target: '11'
}, // },
{ // {
source: '48', // source: '48',
target: '25' // target: '25'
}, // },
{ // {
source: '48', // source: '48',
target: '27' // target: '27'
}, // },
{ // {
source: '48', // source: '48',
target: '47' // target: '47'
}, // },
{ // {
source: '49', // source: '49',
target: '11' // target: '11'
}, // },
{ // {
source: '49', // source: '49',
target: '26' // target: '26'
}, // },
{ // {
source: '50', // source: '50',
target: '24' // target: '24'
}, // },
{ // {
source: '50', // source: '50',
target: '49' // target: '49'
}, // },
{ // {
source: '51', // source: '51',
target: '11' // target: '11'
}, // },
{ // {
source: '51', // source: '51',
target: '26' // target: '26'
}, // },
{ // {
source: '51', // source: '51',
target: '49' // target: '49'
}, // },
{ // {
source: '52', // source: '52',
target: '39' // target: '39'
}, // },
{ // {
source: '52', // source: '52',
target: '51' // target: '51'
}, // },
{ // {
source: '53', // source: '53',
target: '51' // target: '51'
}, // },
{ // {
source: '54', // source: '54',
target: '26' // target: '26'
}, // },
{ // {
source: '54', // source: '54',
target: '49' // target: '49'
}, // },
{ // {
source: '54', // source: '54',
target: '51' // target: '51'
}, // },
{ // {
source: '55', // source: '55',
target: '11' // target: '11'
}, // },
{ // {
source: '55', // source: '55',
target: '16' // target: '16'
}, // },
{ // {
source: '55', // source: '55',
target: '25' // target: '25'
}, // },
{ // {
source: '55', // source: '55',
target: '26' // target: '26'
}, // },
{ // {
source: '55', // source: '55',
target: '39' // target: '39'
}, // },
{ // {
source: '55', // source: '55',
target: '41' // target: '41'
}, // },
{ // {
source: '55', // source: '55',
target: '48' // target: '48'
}, // },
{ // {
source: '55', // source: '55',
target: '49' // target: '49'
}, // },
{ // {
source: '55', // source: '55',
target: '51' // target: '51'
}, // },
{ // {
source: '55', // source: '55',
target: '54' // target: '54'
}, // },
{ // {
source: '56', // source: '56',
target: '49' // target: '49'
}, // },
{ // {
source: '56', // source: '56',
target: '55' // target: '55'
}, // },
{ // {
source: '57', // source: '57',
target: '41' // target: '41'
}, // },
{ // {
source: '57', // source: '57',
target: '48' // target: '48'
}, // },
{ // {
source: '57', // source: '57',
target: '55' // target: '55'
}, // },
{ // {
source: '58', // source: '58',
target: '11' // target: '11'
}, // },
{ // {
source: '58', // source: '58',
target: '27' // target: '27'
}, // },
{ // {
source: '58', // source: '58',
target: '48' // target: '48'
}, // },
{ // {
source: '58', // source: '58',
target: '55' // target: '55'
}, // },
{ // {
source: '58', // source: '58',
target: '57' // target: '57'
}, // },
{ // {
source: '59', // source: '59',
target: '48' // target: '48'
}, // },
{ // {
source: '59', // source: '59',
target: '55' // target: '55'
}, // },
{ // {
source: '59', // source: '59',
target: '57' // target: '57'
}, // },
{ // {
source: '59', // source: '59',
target: '58' // target: '58'
}, // },
{ // {
source: '60', // source: '60',
target: '48' // target: '48'
}, // },
{ // {
source: '60', // source: '60',
target: '58' // target: '58'
}, // },
{ // {
source: '60', // source: '60',
target: '59' // target: '59'
}, // },
{ // {
source: '61', // source: '61',
target: '48' // target: '48'
}, // },
{ // {
source: '61', // source: '61',
target: '55' // target: '55'
}, // },
{ // {
source: '61', // source: '61',
target: '57' // target: '57'
}, // },
{ // {
source: '61', // source: '61',
target: '58' // target: '58'
}, // },
{ // {
source: '61', // source: '61',
target: '59' // target: '59'
}, // },
{ // {
source: '61', // source: '61',
target: '60' // target: '60'
}, // },
{ // {
source: '62', // source: '62',
target: '41' // target: '41'
}, // },
{ // {
source: '62', // source: '62',
target: '48' // target: '48'
}, // },
{ // {
source: '62', // source: '62',
target: '55' // target: '55'
}, // },
{ // {
source: '62', // source: '62',
target: '57' // target: '57'
}, // },
{ // {
source: '62', // source: '62',
target: '58' // target: '58'
}, // },
{ // {
source: '62', // source: '62',
target: '59' // target: '59'
}, // },
{ // {
source: '62', // source: '62',
target: '60' // target: '60'
}, // },
{ // {
source: '62', // source: '62',
target: '61' // target: '61'
}, // },
{ // {
source: '63', // source: '63',
target: '48' // target: '48'
}, // },
{ // {
source: '63', // source: '63',
target: '55' // target: '55'
}, // },
{ // {
source: '63', // source: '63',
target: '57' // target: '57'
}, // },
{ // {
source: '63', // source: '63',
target: '58' // target: '58'
}, // },
{ // {
source: '63', // source: '63',
target: '59' // target: '59'
}, // },
{ // {
source: '63', // source: '63',
target: '60' // target: '60'
}, // },
{ // {
source: '63', // source: '63',
target: '61' // target: '61'
}, // },
{ // {
source: '63', // source: '63',
target: '62' // target: '62'
}, // },
{ // {
source: '64', // source: '64',
target: '11' // target: '11'
}, // },
{ // {
source: '64', // source: '64',
target: '48' // target: '48'
}, // },
{ // {
source: '64', // source: '64',
target: '55' // target: '55'
}, // },
{ // {
source: '64', // source: '64',
target: '57' // target: '57'
}, // },
{ // {
source: '64', // source: '64',
target: '58' // target: '58'
}, // },
{ // {
source: '64', // source: '64',
target: '59' // target: '59'
}, // },
{ // {
source: '64', // source: '64',
target: '60' // target: '60'
}, // },
{ // {
source: '64', // source: '64',
target: '61' // target: '61'
}, // },
{ // {
source: '64', // source: '64',
target: '62' // target: '62'
}, // },
{ // {
source: '64', // source: '64',
target: '63' // target: '63'
}, // },
{ // {
source: '65', // source: '65',
target: '48' // target: '48'
}, // },
{ // {
source: '65', // source: '65',
target: '55' // target: '55'
}, // },
{ // {
source: '65', // source: '65',
target: '57' // target: '57'
}, // },
{ // {
source: '65', // source: '65',
target: '58' // target: '58'
}, // },
{ // {
source: '65', // source: '65',
target: '59' // target: '59'
}, // },
{ // {
source: '65', // source: '65',
target: '60' // target: '60'
}, // },
{ // {
source: '65', // source: '65',
target: '61' // target: '61'
}, // },
{ // {
source: '65', // source: '65',
target: '62' // target: '62'
}, // },
{ // {
source: '65', // source: '65',
target: '63' // target: '63'
}, // },
{ // {
source: '65', // source: '65',
target: '64' // target: '64'
}, // },
{ // {
source: '66', // source: '66',
target: '48' // target: '48'
}, // },
{ // {
source: '66', // source: '66',
target: '58' // target: '58'
}, // },
{ // {
source: '66', // source: '66',
target: '59' // target: '59'
}, // },
{ // {
source: '66', // source: '66',
target: '60' // target: '60'
}, // },
{ // {
source: '66', // source: '66',
target: '61' // target: '61'
}, // },
{ // {
source: '66', // source: '66',
target: '62' // target: '62'
}, // },
{ // {
source: '66', // source: '66',
target: '63' // target: '63'
}, // },
{ // {
source: '66', // source: '66',
target: '64' // target: '64'
}, // },
{ // {
source: '66', // source: '66',
target: '65' // target: '65'
}, // },
{ // {
source: '67', // source: '67',
target: '57' // target: '57'
}, // },
{ // {
source: '68', // source: '68',
target: '11' // target: '11'
}, // },
{ // {
source: '68', // source: '68',
target: '24' // target: '24'
}, // },
{ // {
source: '68', // source: '68',
target: '25' // target: '25'
}, // },
{ // {
source: '68', // source: '68',
target: '27' // target: '27'
}, // },
{ // {
source: '68', // source: '68',
target: '41' // target: '41'
}, // },
{ // {
source: '68', // source: '68',
target: '48' // target: '48'
}, // },
{ // {
source: '69', // source: '69',
target: '11' // target: '11'
}, // },
{ // {
source: '69', // source: '69',
target: '24' // target: '24'
}, // },
{ // {
source: '69', // source: '69',
target: '25' // target: '25'
}, // },
{ // {
source: '69', // source: '69',
target: '27' // target: '27'
}, // },
{ // {
source: '69', // source: '69',
target: '41' // target: '41'
}, // },
{ // {
source: '69', // source: '69',
target: '48' // target: '48'
}, // },
{ // {
source: '69', // source: '69',
target: '68' // target: '68'
}, // },
{ // {
source: '70', // source: '70',
target: '11' // target: '11'
}, // },
{ // {
source: '70', // source: '70',
target: '24' // target: '24'
}, // },
{ // {
source: '70', // source: '70',
target: '25' // target: '25'
}, // },
{ // {
source: '70', // source: '70',
target: '27' // target: '27'
}, // },
{ // {
source: '70', // source: '70',
target: '41' // target: '41'
}, // },
{ // {
source: '70', // source: '70',
target: '58' // target: '58'
}, // },
{ // {
source: '70', // source: '70',
target: '68' // target: '68'
}, // },
{ // {
source: '70', // source: '70',
target: '69' // target: '69'
}, // },
{ // {
source: '71', // source: '71',
target: '11' // target: '11'
}, // },
{ // {
source: '71', // source: '71',
target: '25' // target: '25'
}, // },
{ // {
source: '71', // source: '71',
target: '27' // target: '27'
}, // },
{ // {
source: '71', // source: '71',
target: '41' // target: '41'
}, // },
{ // {
source: '71', // source: '71',
target: '48' // target: '48'
}, // },
{ // {
source: '71', // source: '71',
target: '68' // target: '68'
}, // },
{ // {
source: '71', // source: '71',
target: '69' // target: '69'
}, // },
{ // {
source: '71', // source: '71',
target: '70' // target: '70'
}, // },
{ // {
source: '72', // source: '72',
target: '11' // target: '11'
}, // },
{ // {
source: '72', // source: '72',
target: '26' // target: '26'
}, // },
{ // {
source: '72', // source: '72',
target: '27' // target: '27'
}, // },
{ // {
source: '73', // source: '73',
target: '48' // target: '48'
}, // },
{ // {
source: '74', // source: '74',
target: '48' // target: '48'
}, // },
{ // {
source: '74', // source: '74',
target: '73' // target: '73'
}, // },
{ // {
source: '75', // source: '75',
target: '25' // target: '25'
}, // },
{ // {
source: '75', // source: '75',
target: '41' // target: '41'
}, // },
{ // {
source: '75', // source: '75',
target: '48' // target: '48'
}, // },
{ // {
source: '75', // source: '75',
target: '68' // target: '68'
}, // },
{ // {
source: '75', // source: '75',
target: '69' // target: '69'
}, // },
{ // {
source: '75', // source: '75',
target: '70' // target: '70'
}, // },
{ // {
source: '75', // source: '75',
target: '71' // target: '71'
}, // },
{ // {
source: '76', // source: '76',
target: '48' // target: '48'
}, // },
{ // {
source: '76', // source: '76',
target: '58' // target: '58'
}, // },
{ // {
source: '76', // source: '76',
target: '62' // target: '62'
}, // },
{ // {
source: '76', // source: '76',
target: '63' // target: '63'
}, // },
{ // {
source: '76', // source: '76',
target: '64' // target: '64'
}, // },
{ // {
source: '76', // source: '76',
target: '65' // target: '65'
}, // },
{ // {
source: '76', // source: '76',
target: '66' // target: '66'
} // }
], // ],
categories: [ // categories: [
{ // {
name: '类目0' // name: '类目0'
}, // },
{ // {
name: '类目1' // name: '类目1'
}, // },
{ // {
name: '类目2' // name: '类目2'
}, // },
{ // {
name: '类目3' // name: '类目3'
}, // },
{ // {
name: '类目4' // name: '类目4'
}, // },
{ // {
name: '类目5' // name: '类目5'
}, // },
{ // {
name: '类目6' // name: '类目6'
}, // },
{ // {
name: '类目7' // name: '类目7'
}, // },
{ // {
name: '类目8' // name: '类目8'
} // }
] // ]
} // }
this.topoAll(_data) // this.topoAll(_data)
}, },
methods: { methods: {
// 根据name查id // 根据name查id
querySearch (queryString, cb) { // querySearch (queryString, cb) {
API_KNOWLED.GetKnowledgeGraph(queryString, this.value).then(res => { // API_KNOWLED.GetKnowledgeGraph(queryString, this.value).then(res => {
this.knowledData = res.data // this.knowledData = res.data
for (var i = 0; i < this.knowledData.length; i++) { // for (var i = 0; i < this.knowledData.length; i++) {
if (this.value === 1) { // if (this.value === 1) {
this.knowledData[i].value = this.knowledData[i].projectName // this.knowledData[i].value = this.knowledData[i].projectName
} else if (this.value === 2) { // } else if (this.value === 2) {
this.knowledData[i].value = this.knowledData[i].memberName // this.knowledData[i].value = this.knowledData[i].memberName
} else if (this.value === 3) { // } else if (this.value === 3) {
this.knowledData[i].value = this.knowledData[i].nicheName // this.knowledData[i].value = this.knowledData[i].nicheName
} else { // } else {
this.knowledData[i].value = this.knowledData[i].customerName // this.knowledData[i].value = this.knowledData[i].customerName
} // }
} // }
cb(this.knowledData) // cb(this.knowledData)
}) // })
}, // },
// 点击下拉列表搜索 // 点击下拉列表搜索
handleSelect (item) { // handleSelect (item) {
API_KNOWLED.GetKnowledId(item.id, this.value).then(res => { // API_KNOWLED.GetKnowledId(item.id, this.value).then(res => {
this.knowledname = res.data // this.knowledname = res.data
this.topoAll(res.data) // this.topoAll(res.data)
}) // })
}, // },
topoAll (value) { topoAll (value) {
const vm = this const vm = this
const data = knowledgeJSON[0] const data = knowledgeJSON[0]
......
...@@ -41,7 +41,6 @@ export default { ...@@ -41,7 +41,6 @@ export default {
}, },
mounted () { mounted () {
this.type = JSON.parse(this.$route.query.type) this.type = JSON.parse(this.$route.query.type)
console.log(typeof this.type)
if (this.type === 0) { if (this.type === 0) {
this.getIntroductionById() this.getIntroductionById()
} else if (this.type === 1) { } else if (this.type === 1) {
......
...@@ -132,7 +132,7 @@ export default { ...@@ -132,7 +132,7 @@ export default {
if (item.color.toString().indexOf('#') > -1) { if (item.color.toString().indexOf('#') > -1) {
this.value = this.colorMap[item.color] this.value = this.colorMap[item.color]
} }
console.log('传来的值:', this.value, item.id) // console.log('传来的值:', this.value, item.id)
this.handleSelect({ id: item.id }) this.handleSelect({ id: item.id })
} }
}, },
......
...@@ -94,9 +94,6 @@ export default { ...@@ -94,9 +94,6 @@ export default {
}) })
this.$log.capsule('D2Admin', 'handleShowMore', 'primary') this.$log.capsule('D2Admin', 'handleShowMore', 'primary')
console.group(log.message) console.group(log.message)
console.log('time: ', log.time)
console.log('type: ', log.type)
console.log(log.meta)
console.groupEnd() console.groupEnd()
}, },
// 日志上传 // 日志上传
......
...@@ -166,7 +166,6 @@ export default { ...@@ -166,7 +166,6 @@ export default {
// this.loading = false // this.loading = false
// }) // })
} else { } else {
console.log('error submit!!')
return false return false
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment