Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨硕
template_vue
Commits
76fd445f
Commit
76fd445f
authored
Mar 04, 2024
by
孙浩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oneTable
parent
70cb323a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
603 additions
and
70 deletions
+603
-70
oneTbale.js
src/api/oneTbale.js
+68
-0
oneTbale.vue
src/views/check/oneTbale.vue
+535
-70
No files found.
src/api/oneTbale.js
0 → 100644
View file @
76fd445f
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询列表
export
function
listIncomeInspectInfo
(
query
)
{
return
request
({
url
:
'/incomeinspectinfo/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询详细信息
export
function
getIncomeInspectInfo
(
businessId
)
{
return
request
({
url
:
'/incomeinspectinfo/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增
export
function
addIncomeInspectInfo
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomeinspectinfo/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改
export
function
updateIncomeInspectInfo
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomeinspectinfo/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除
export
function
delIncomeInspectInfo
(
businessId
)
{
return
request
({
url
:
'/incomeinspectinfo/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出
export
function
exportIncomeInspectInfo
(
query
)
{
return
request
({
url
:
'/incomeinspectinfo/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
src/views/check/oneTbale.vue
View file @
76fd445f
This diff is collapsed.
Click to expand it.
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