elkers
2025-01-16 0b62eca817d6c40c188dc72c3034835a61a30a35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * @Author: Liuyi candymxq888@outlook.com
 * @Date: 2024-08-20 14:56:51
 * @LastEditors: Liuyi candymxq888@outlook.com
 * @LastEditTime: 2024-08-20 15:33:33
 * @FilePath: \water-qinghe-web\src\api\financial\payRecord\index.js
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
 
import { publicRequest } from '@/utils/request'
 
export default function payRecord() {
    return {
        search: (data) => {
            return publicRequest({
                url: '/paymentRecords/search',
                method: 'post',
                data,
            });
        },
    }
}