|
@@ -105,6 +105,7 @@ const searchForm = ref({
|
|
|
const pageChange = ({ current, size }) => {
|
|
|
searchForm.value.current = current
|
|
|
searchForm.value.size = size
|
|
|
+ getTableData()
|
|
|
}
|
|
|
|
|
|
//表格数据
|
|
@@ -117,9 +118,7 @@ const tableColumn = ref([
|
|
|
{ key: 'formPrintDate', name: '报表打印日期' },
|
|
|
{ key: 'action', name: '操作', width: 80 },
|
|
|
])
|
|
|
-const tableData = ref([
|
|
|
- { key1: '1111' },
|
|
|
-])
|
|
|
+const tableData = ref([])
|
|
|
const getTableData = async () => {
|
|
|
tableLoading.value = true
|
|
|
const { error, code, data } = await mainApi.getPage({
|