This commit is contained in:
2025-07-21 17:03:41 +08:00
parent 211b947c3c
commit 49ae691b37
4 changed files with 179 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="ww100 hh100">
<MyTable
:tableData="pageData.tableData"
:tableColumn="pageData.tableColumn"
@ -16,8 +16,9 @@
</template>
<script setup>
import { qcckGet } from "@/api/qcckApi.js";
import MyTable from "@/components/aboutTable/MyTable.vue";
import { reactive } from "vue";
import { onMounted, reactive } from "vue";
const pageData = reactive({
tableData: [],
keyCount: 0,
@ -42,6 +43,16 @@ const pageData = reactive({
]
});
onMounted(()=>{
getDate()
})
function getDate (){
qcckGet({},' /mosty-gsxt/tbGsxtZdry/getRdRy').then(res=>{
console.log(res,'--------99');
})
}
</script>
<style lang="scss" scoped>