This commit is contained in:
2025-07-22 13:55:06 +08:00
parent 33ceb7a85a
commit 6d106674bd
2 changed files with 7 additions and 7 deletions

View File

@ -43,11 +43,11 @@ const pageData = reactive({
tableHeight:143,
controlsWidth: 52,
tableColumn: [
{ label: "组织名称", prop: "qtMc",width:'70px' },
{ label: "涉及人数", prop: "sjrs",width:'70px',showSolt:true},
{ label: "标签", prop: "bqList",width:'50px',showSolt:true},
{ label: "线索数", prop: "xssl",width:'70px'},
{ label: "指令数", prop: "zlsl" ,width:'70px'},
{ label: "组织名称", prop: "qtMc",width:'70px',showOverflowTooltip:true },
{ label: "涉及人数", prop: "sjrs",width:'70px',showSolt:true,showOverflowTooltip:true},
{ label: "标签", prop: "bqList",width:'50px',showSolt:true,showOverflowTooltip:true},
{ label: "线索数", prop: "xssl",width:'70px',showOverflowTooltip:true},
{ label: "指令数", prop: "zlsl" ,width:'70px',showOverflowTooltip:true},
]
});

View File

@ -9,7 +9,7 @@
</template>
<script setup>
import { qcckGet } from "@/api/qcckApi.js";
import { qcckPost } from "@/api/qcckApi.js";
import { onMounted, reactive , ref} from "vue";
const list = reactive([
{ label:'线索数量', num :0 },
@ -33,7 +33,7 @@ function getDate (){
let params = { ...searchData.value }
delete params.dateRange;
loading.value = true;
qcckGet(params,'/mosty-gsxt/qbcj/getXscjTjForZs').then(res=>{
qcckPost(params,'/mosty-gsxt/qbcj/getXscjTjForZs').then(res=>{
pageData.tableData = res || [];
loading.value = false;
}).catch(()=>{