1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| /* eslint-disable */
| // @ts-ignore
| import { request } from '@/utils/request';
|
| /** 创建生活缴费电费订单 POST /api/LifePay/CreateLifePayElectricOrder */
| export async function createLifePayElectricOrder(
| body: API.LifeElectricDataCreateLifePayOrderInput,
| options?: API.RequestConfig
| ) {
| return request<any>('/api/LifePay/CreateLifePayElectricOrder', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 创建生活缴费话费订单 POST /api/LifePay/CreateLifePayPhoneOrder */
| export async function createLifePayPhoneOrder(
| body: API.LifePhoneDataCreateLifePayOrderInput,
| options?: API.RequestConfig
| ) {
| return request<any>('/api/LifePay/CreateLifePayPhoneOrder', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 获取电费面值 GET /api/LifePay/GetElectricParValue */
| export async function getElectricParValue(options?: API.RequestConfig) {
| return request<API.ElectricParValueResponse>('/api/LifePay/GetElectricParValue', {
| method: 'GET',
| ...(options || {}),
| });
| }
|
| /** 获取话费面值 GET /api/LifePay/GetPhoneParValue */
| export async function getPhoneParValue(options?: API.RequestConfig) {
| return request<API.PhoneParValueResponse>('/api/LifePay/GetPhoneParValue', {
| method: 'GET',
| ...(options || {}),
| });
| }
|
|