fix : 명칭수정 및 Api 분류

This commit is contained in:
Kasi
2025-05-28 09:53:17 +09:00
parent 7e04e14a16
commit 4e3e0d942f
9 changed files with 73 additions and 66 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import {getContractList} from "/src/service/contract";
import {getContractList} from "/src/service/contractApi";
import regex, {formatCurrency} from "/@src/utils/common/regex.ts";
const emits = defineEmits(['on-search', 'on-tr-click'])
@@ -27,14 +27,14 @@ onBeforeMount(async () => {
})
async function getContractListView() {
const paymentParams = {
const approvalParams = {
params:{
title: '',
page: '1',
row: '10'
}
}
const result = await getContractList(paymentParams)
const result = await getContractList(approvalParams)
data.contractData = result
console.log('result', result)
}