Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
cc84e62b
Commit
cc84e62b
authored
Sep 20, 2022
by
我在何方
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
a9a03541
5a040c75
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
414 additions
and
3 deletions
+414
-3
futureBox.js
src/api/ecw/futureBox.js
+54
-0
indexFutureBox.vue
src/views/ecw/box/indexFutureBox.vue
+357
-0
transferWarehousing.vue
src/views/ecw/order/transferWarehousing.vue
+1
-1
index.vue
src/views/ecw/order/warehousing/index.vue
+2
-2
No files found.
src/api/ecw/futureBox.js
0 → 100644
View file @
cc84e62b
import
request
from
'
@/utils/request
'
// 创建预定舱计划
export
function
createFutureBox
(
data
)
{
return
request
({
url
:
'
/ecw/future-box/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新预定舱计划
export
function
updateFutureBox
(
data
)
{
return
request
({
url
:
'
/ecw/future-box/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除预定舱计划
export
function
deleteFutureBox
(
id
)
{
return
request
({
url
:
'
/ecw/future-box/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得预定舱计划
export
function
getFutureBox
(
id
)
{
return
request
({
url
:
'
/ecw/future-box/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得预定舱计划分页
export
function
getFutureBoxPage
(
query
)
{
return
request
({
url
:
'
/ecw/future-box/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出预定舱计划 Excel
export
function
exportFutureBoxExcel
(
query
)
{
return
request
({
url
:
'
/ecw/future-box/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/views/ecw/box/indexFutureBox.vue
0 → 100644
View file @
cc84e62b
This diff is collapsed.
Click to expand it.
src/views/ecw/order/transferWarehousing.vue
View file @
cc84e62b
...
...
@@ -332,7 +332,7 @@ export default {
return
[
'
合计:
'
,
text
,
text2
]
},
cancellationOfOrder
(){
this
.
$prompt
(
'
请输入
审核
调仓原因
'
,
'
提示
'
,
{
this
.
$prompt
(
'
请输入
取消
调仓原因
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
}).
then
(({
value
})
=>
{
...
...
src/views/ecw/order/warehousing/index.vue
View file @
cc84e62b
...
...
@@ -106,8 +106,8 @@
<span
slot=
"append"
>
m³
</span>
</el-input>
</el-form-item>
<el-form-item
label=
"总
方数
量"
style=
"width: 300px"
>
<el-input
v-model=
"form.sumWeight"
placeholder=
"请输入总
数
量"
>
<el-form-item
label=
"总
重
量"
style=
"width: 300px"
>
<el-input
v-model=
"form.sumWeight"
placeholder=
"请输入总
重
量"
>
<span
slot=
"append"
>
kg
</span>
</el-input>
</el-form-item>
...
...
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