|
@@ -218,6 +218,13 @@ const themeConfigCpt = computed(() => {
|
|
|
})
|
|
|
return arr
|
|
|
}
|
|
|
+ const getSex = (idCard: string) => {
|
|
|
+ if (idCard.length !== 18) {
|
|
|
+ throw new Error("身份证号码长度不正确");
|
|
|
+ }
|
|
|
+ const genderDigit = parseInt(idCard.charAt(16), 10);
|
|
|
+ return genderDigit % 2 === 1 ? "男" : "女";
|
|
|
+ }
|
|
|
const res = {
|
|
|
main: <any>{
|
|
|
indexStyle: {}
|
|
@@ -239,7 +246,7 @@ const themeConfigCpt = computed(() => {
|
|
|
searchParam: getSearchParam(v),
|
|
|
tableHead: getTableHead(v),
|
|
|
}
|
|
|
- res.chart.nodes.unshift({
|
|
|
+ const node = {
|
|
|
id: String(v.id),
|
|
|
iconSrc: v.url,
|
|
|
weight: v.weight || 100,
|
|
@@ -250,9 +257,24 @@ const themeConfigCpt = computed(() => {
|
|
|
indexId: v.indexId,
|
|
|
searchParam: getSearchParam(v),
|
|
|
tableHead: getTableHead(v),
|
|
|
- })
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ JSON.parse(v.indexCondition).forEach(c => {
|
|
|
+ if (c.paramType == 'sex') {
|
|
|
+ const sex = getSex(route.query[c.themeParam])
|
|
|
+ if (sex == '男') {
|
|
|
+ node.iconSrc = c.sexImgs[0].url
|
|
|
+ } else if (sex == '女') {
|
|
|
+ node.iconSrc = c.sexImgs[1].url
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e)
|
|
|
+ }
|
|
|
+ res.chart.nodes.unshift(node)
|
|
|
} else if (v.relateIndexId) {
|
|
|
- res.chart.nodes.push({
|
|
|
+ const node = {
|
|
|
id: String(v.id),
|
|
|
iconSrc: v.url,
|
|
|
weight: v.weight,
|
|
@@ -263,7 +285,22 @@ const themeConfigCpt = computed(() => {
|
|
|
indexId: v.indexId,
|
|
|
searchParam: getSearchParam(v),
|
|
|
tableHead: getTableHead(v),
|
|
|
- })
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ JSON.parse(v.indexCondition).forEach(c => {
|
|
|
+ if (c.paramType == 'sex') {
|
|
|
+ const sex = getSex(route.query[c.themeParam])
|
|
|
+ if (sex == '男') {
|
|
|
+ node.iconSrc = c.sexImgs[0].url
|
|
|
+ } else if (sex == '女') {
|
|
|
+ node.iconSrc = c.sexImgs[1].url
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e)
|
|
|
+ }
|
|
|
+ res.chart.nodes.push(node)
|
|
|
res.chart.edges.push({source: String(v.relateIndexId), target: String(v.id), labelText: v.description || '关系描述'})
|
|
|
} else {
|
|
|
res.tabs.set(v.id, {
|