Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
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
mes
mes-ui
Commits
a02e1dec
Commit
a02e1dec
authored
Feb 29, 2024
by
李驰骋
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
fcf95c1b
c4c71f47
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1303 additions
and
524 deletions
+1303
-524
combination.js
src/api/mes/pro/combination.js
+64
-0
index.vue
src/views/mes/pro/combination/index.vue
+336
-0
info.vue
src/views/mes/pro/combination/info.vue
+326
-0
index.vue
src/views/mes/pro/request/index.vue
+2
-2
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+575
-522
No files found.
src/api/mes/pro/combination.js
0 → 100644
View file @
a02e1dec
import
request
from
'@/utils/request'
// 查询生产组合单列表
export
function
listCombination
(
query
)
{
return
request
({
url
:
'/pro/combination/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询生产组合单列表
export
function
combList
(
query
)
{
return
request
({
url
:
'/pro/combination/combList'
,
method
:
'get'
,
params
:
query
})
}
// 查询生产组合单详细
export
function
getCombination
(
combinationId
)
{
return
request
({
url
:
'/pro/combination/'
+
combinationId
,
method
:
'get'
})
}
// 新增生产组合单
export
function
addCombination
(
data
)
{
return
request
({
url
:
'/pro/combination'
,
method
:
'post'
,
data
:
data
})
}
// 新增生产组合单
export
function
batchAddCombination
(
data
)
{
return
request
({
url
:
'/pro/combination/batchAdd'
,
method
:
'post'
,
data
:
data
})
}
// 修改生产组合单
export
function
updateCombination
(
data
)
{
return
request
({
url
:
'/pro/combination'
,
method
:
'put'
,
data
:
data
})
}
// 删除生产组合单
export
function
delCombination
(
combinationId
)
{
return
request
({
url
:
'/pro/combination/'
+
combinationId
,
method
:
'delete'
})
}
src/views/mes/pro/combination/index.vue
0 → 100644
View file @
a02e1dec
This diff is collapsed.
Click to expand it.
src/views/mes/pro/combination/info.vue
0 → 100644
View file @
a02e1dec
This diff is collapsed.
Click to expand it.
src/views/mes/pro/request/index.vue
View file @
a02e1dec
...
...
@@ -60,7 +60,7 @@
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
<
!--
<
el-button
type=
"primary"
plain
icon=
"el-icon-plus"
...
...
@@ -99,7 +99,7 @@
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['pro:materialRequest:export']"
>
导出
</el-button>
>
导出
</el-button>
-->
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
...
...
src/views/mes/pro/workorder/indexApply.vue
View file @
a02e1dec
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