Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weiqiao-vue
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
金民
weiqiao-vue
Commits
45f72f59
Commit
45f72f59
authored
Mar 14, 2026
by
董晓奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报废车入库登记表
调整代码格式,移除报错
parent
7d34be9f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
16 deletions
+18
-16
xjrsoft-vue3/src/api/ckgl/bfcrkdjb/index.ts
+18
-16
No files found.
xjrsoft-vue3/src/api/ckgl/bfcrkdjb/index.ts
View file @
45f72f59
import
{
import
{
RokeVehicleInboundPageModel
,
RokeVehicleInboundPageParams
,
RokeVehicleInboundPageResult
}
from
'./model/BfcrkdjbModel'
;
RokeVehicleInboundPageModel
,
RokeVehicleInboundPageParams
,
RokeVehicleInboundPageResult
,
}
from
'./model/BfcrkdjbModel'
;
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
defHttp
}
from
'/@/utils/http/axios'
;
import
{
ErrorMessageMode
}
from
'/#/axios'
;
import
{
ErrorMessageMode
}
from
'/#/axios'
;
...
@@ -8,16 +11,16 @@ enum Api {
...
@@ -8,16 +11,16 @@ enum Api {
List
=
'/ckgl/bfcrkdjb/list'
,
List
=
'/ckgl/bfcrkdjb/list'
,
Info
=
'/ckgl/bfcrkdjb/info'
,
Info
=
'/ckgl/bfcrkdjb/info'
,
RokeVehicleInbound
=
'/ckgl/bfcrkdjb'
,
RokeVehicleInbound
=
'/ckgl/bfcrkdjb'
,
Export
=
'/ckgl/bfcrkdjb/export'
,
Export
=
'/ckgl/bfcrkdjb/export'
,
}
}
/**
/**
* @description: 查询RokeVehicleInbound分页列表
* @description: 查询RokeVehicleInbound分页列表
*/
*/
export
async
function
getRokeVehicleInboundPage
(
params
:
RokeVehicleInboundPageParams
,
mode
:
ErrorMessageMode
=
'modal'
)
{
export
async
function
getRokeVehicleInboundPage
(
params
:
RokeVehicleInboundPageParams
,
mode
:
ErrorMessageMode
=
'modal'
,
)
{
return
defHttp
.
get
<
RokeVehicleInboundPageResult
>
(
return
defHttp
.
get
<
RokeVehicleInboundPageResult
>
(
{
{
url
:
Api
.
Page
,
url
:
Api
.
Page
,
...
@@ -47,7 +50,10 @@ export async function getRokeVehicleInbound(id: String, mode: ErrorMessageMode =
...
@@ -47,7 +50,10 @@ export async function getRokeVehicleInbound(id: String, mode: ErrorMessageMode =
/**
/**
* @description: 新增RokeVehicleInbound
* @description: 新增RokeVehicleInbound
*/
*/
export
async
function
addRokeVehicleInbound
(
rokeVehicleInbound
:
Recordable
,
mode
:
ErrorMessageMode
=
'modal'
)
{
export
async
function
addRokeVehicleInbound
(
rokeVehicleInbound
:
Recordable
,
mode
:
ErrorMessageMode
=
'modal'
,
)
{
return
defHttp
.
post
<
boolean
>
(
return
defHttp
.
post
<
boolean
>
(
{
{
url
:
Api
.
RokeVehicleInbound
,
url
:
Api
.
RokeVehicleInbound
,
...
@@ -62,7 +68,10 @@ export async function addRokeVehicleInbound(rokeVehicleInbound: Recordable, mode
...
@@ -62,7 +68,10 @@ export async function addRokeVehicleInbound(rokeVehicleInbound: Recordable, mode
/**
/**
* @description: 更新RokeVehicleInbound
* @description: 更新RokeVehicleInbound
*/
*/
export
async
function
updateRokeVehicleInbound
(
rokeVehicleInbound
:
Recordable
,
mode
:
ErrorMessageMode
=
'modal'
)
{
export
async
function
updateRokeVehicleInbound
(
rokeVehicleInbound
:
Recordable
,
mode
:
ErrorMessageMode
=
'modal'
,
)
{
return
defHttp
.
put
<
boolean
>
(
return
defHttp
.
put
<
boolean
>
(
{
{
url
:
Api
.
RokeVehicleInbound
,
url
:
Api
.
RokeVehicleInbound
,
...
@@ -89,15 +98,10 @@ export async function deleteRokeVehicleInbound(ids: string[], mode: ErrorMessage
...
@@ -89,15 +98,10 @@ export async function deleteRokeVehicleInbound(ids: string[], mode: ErrorMessage
);
);
}
}
/**
/**
* @description: 导出RokeVehicleInbound
* @description: 导出RokeVehicleInbound
*/
*/
export
async
function
exportRokeVehicleInbound
(
export
async
function
exportRokeVehicleInbound
(
params
?:
object
,
mode
:
ErrorMessageMode
=
'modal'
)
{
params
?:
object
,
mode
:
ErrorMessageMode
=
'modal'
)
{
return
defHttp
.
download
(
return
defHttp
.
download
(
{
{
url
:
Api
.
Export
,
url
:
Api
.
Export
,
...
@@ -110,5 +114,3 @@ export async function exportRokeVehicleInbound(
...
@@ -110,5 +114,3 @@ export async function exportRokeVehicleInbound(
},
},
);
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment