更新页面

This commit is contained in:
2025-07-10 20:37:45 +08:00
parent 529089b73c
commit 2f443e33bd
5 changed files with 61 additions and 41 deletions

View File

@ -8,10 +8,9 @@
</template>
<script setup>
import LineEcharts from "../echarts/moreLineEcharts.vue";
import { qcckPost } from "@/api/qcckApi.js";
import BarHatEcharts from "@/views/home/echarts/barHatEcharts.vue";
import * as echarts from "echarts";
import { ref, onMounted, watch, defineProps, reactive } from "vue";
import { onMounted, reactive } from "vue";
const list = reactive({
xDate: ['110警情','人力情报','系统采集','民警处置单'],
list:[
@ -20,8 +19,16 @@ const list = reactive({
],
})
onMounted(() => {
getCount()
});
const getCount = () =>{
qcckPost({},'/mosty-gsxt/qbcj/getXscjTjForLylx').then(res=>{
console.log(res,'=====');
})
}
</script>