diff --git a/src/api/xxcj.js b/src/api/xxcj.js index e43d1f8..3764a03 100644 --- a/src/api/xxcj.js +++ b/src/api/xxcj.js @@ -203,3 +203,11 @@ export const xxcjXfxsSelectPage = (params) => { params }) } +// 线索研判列表 +export const xxcjTjcll = (params) => { + return request({ + url: api + `/xxcj/tjcll`, + method: "get", + params + }) +} diff --git a/src/assets/css/pulic.scss b/src/assets/css/pulic.scss index 8b4f89b..1afb6b1 100644 --- a/src/assets/css/pulic.scss +++ b/src/assets/css/pulic.scss @@ -282,6 +282,11 @@ display: block; } +// 外边距 +.mt10 { + margin-top: 10px; +} + /**********字体大小和边距***********/ @for $i from 1 through 100 { .f#{$i} { diff --git a/src/components/aboutTable/MyTable.vue b/src/components/aboutTable/MyTable.vue index 3595a5d..ad03397 100644 --- a/src/components/aboutTable/MyTable.vue +++ b/src/components/aboutTable/MyTable.vue @@ -8,6 +8,9 @@ :stripe="getConfiger.stripe" :height="tableHeight" v-loading="tableConfiger.loading" :lazy="getConfiger.lazy" :load="load" :tree-props="treePros" style="width: 100%" :header-cell-class-name="() => 'HeadBgColor'" :highlight-current-row="getConfiger.showSelectType === 'radio'" + + + @row-click="handleRowClick" :row-style="(row, index) => getRowStyle(row, index)" :row-class-name="(row, index) => getRowClassName(row, index)"> @@ -95,7 +98,7 @@ const props = defineProps({ } }); // 可选的时候选择的数据 -const emit = defineEmits(["chooseData"]); +const emit = defineEmits(["chooseData","handleRowClick"]); const multipleTableRef = ref(); const currentRow = ref(); let getConfiger = reactive({ @@ -193,6 +196,10 @@ function setDefaultChoose() { } }); } +// 点击某行 +const handleRowClick = (row) => { + emit("handleRowClick", row); +} diff --git a/src/router/index.js b/src/router/index.js index e0747bd..6db9023 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -338,12 +338,13 @@ export const publicRoutes = [ name: "openSourceList", component: () => import("@/views/backOfficeSystem/HumanIntelligence/listView/index"), meta: { title: "共享列表", icon: "article-create", qbjbList: '01' }, - }, { - path: "/socialInformationCrculated", - name: "changeTheClue", - component: () => import("@/views/backOfficeSystem/HumanIntelligence/FollowLeads/index"), - meta: { title: "转线索列表", icon: "article-create" }, }, + // { + // path: "/socialInformationCrculated", + // name: "changeTheClue", + // component: () => import("@/views/backOfficeSystem/HumanIntelligence/FollowLeads/index"), + // meta: { title: "转线索列表", icon: "article-create" }, + // }, { path: "/socialInformationCrculatec", name: "recombinantSynthesis", @@ -411,19 +412,19 @@ export const publicRoutes = [ name: "ResearchJudgment", meta: { title: "线索落核盯办", icon: "article-ranking" }, children: [ - { + { path: "/socialInformationCrculated", name: "changeTheClue", component: () => import("@/views/backOfficeSystem/HumanIntelligence/FollowLeads/index"), meta: { title: "线索列表", icon: "article" }, }, - { + { path: "/lamXs", name: "lamXs", component: () => import("@/views/backOfficeSystem/HumanIntelligence/lamXs/index"), meta: { title: "林安码线索", icon: "article" }, }, - + // 暂时不要 // { @@ -435,7 +436,7 @@ export const publicRoutes = [ // icon: "article-create" // } // }, - + { path: "/InstructionInformation", name: "InstructionInformation", @@ -992,7 +993,7 @@ export const publicRoutes = [ icon: "article" } }, - { + { path: "/IntelligenceManagement", name: "IntelligenceManagement", component: () => import("@/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/index"), @@ -1000,7 +1001,7 @@ export const publicRoutes = [ title: "线索管理", icon: "article" } - }, + }, { path: "/CollectCrculate", name: "CollectCrculate", diff --git a/src/views/backOfficeSystem/HumanIntelligence/infoCollection/components/addForm.vue b/src/views/backOfficeSystem/HumanIntelligence/infoCollection/components/addForm.vue index a30ce93..ca969bd 100644 --- a/src/views/backOfficeSystem/HumanIntelligence/infoCollection/components/addForm.vue +++ b/src/views/backOfficeSystem/HumanIntelligence/infoCollection/components/addForm.vue @@ -11,6 +11,17 @@
+
@@ -109,7 +120,7 @@