Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-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
pda
pda-ui
Commits
5339d3ab
Commit
5339d3ab
authored
May 14, 2024
by
chenzj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增调拨了页面
parent
7656995e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
432 additions
and
2 deletions
+432
-2
proAllocationMaterial.js
src/api/mes/pro/proAllocationMaterial.js
+44
-0
single.vue
src/components/itemSelect/single.vue
+0
-1
index.vue
src/views/mes/pro/allocation/index.vue
+387
-0
index.vue
src/views/mes/pro/request/index.vue
+1
-1
No files found.
src/api/mes/pro/proAllocationMaterial.js
0 → 100644
View file @
5339d3ab
import
request
from
'@/utils/request'
// 查询调拨料申请列表
export
function
listProAllocationMaterial
(
query
)
{
return
request
({
url
:
'/pro/ProAllocationMaterial/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询调拨料申请详细
export
function
getProAllocationMaterial
(
allocationMaterialId
)
{
return
request
({
url
:
'/pro/ProAllocationMaterial/'
+
allocationMaterialId
,
method
:
'get'
})
}
// 新增调拨料申请
export
function
addProAllocationMaterial
(
data
)
{
return
request
({
url
:
'/pro/ProAllocationMaterial'
,
method
:
'post'
,
data
:
data
})
}
// 修改调拨料申请
export
function
updateProAllocationMaterial
(
data
)
{
return
request
({
url
:
'/pro/ProAllocationMaterial'
,
method
:
'put'
,
data
:
data
})
}
// 删除调拨料申请
export
function
delProAllocationMaterial
(
allocationMaterialId
)
{
return
request
({
url
:
'/pro/ProAllocationMaterial/'
+
allocationMaterialId
,
method
:
'delete'
})
}
src/components/itemSelect/single.vue
View file @
5339d3ab
...
...
@@ -27,7 +27,6 @@
:expand-on-click-node=
"false"
:filter-node-method=
"filterNode"
ref=
"tree"
default-expand-all
@
node-click=
"handleNodeClick"
/>
</div>
...
...
src/views/mes/pro/allocation/index.vue
0 → 100644
View file @
5339d3ab
This diff is collapsed.
Click to expand it.
src/views/mes/pro/request/index.vue
View file @
5339d3ab
...
...
@@ -150,7 +150,7 @@
<span>{{ parseTime(scope.row.CreateTime, '{y}-{m}-{d}') }}</span>
</template> -->
</el-table-column>
<el-table-column
label=
"
预开始时间
"
align=
"center"
prop=
"startTime"
width=
"180"
/>
<el-table-column
label=
"
需求日期
"
align=
"center"
prop=
"startTime"
width=
"180"
/>
<el-table-column
label=
"预结束时间"
align=
"center"
prop=
"endTime"
width=
"180"
/>
<el-table-column
label=
"操作"
width=
"80"
align=
"center"
class-name=
"small-padding fixed-width"
fixed=
"right"
>
<
template
slot-scope=
"scope"
>
...
...
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