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
2a475a4d
Commit
2a475a4d
authored
Mar 20, 2023
by
Marcus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新储位
parent
172c8b4f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
6 deletions
+65
-6
index.vue
src/components/WarehouseAreaSelect/index.vue
+52
-0
Navbar.vue
src/layout/components/Navbar.vue
+4
-4
editDialog.vue
src/views/ecw/order/warehousing/components/editDialog.vue
+8
-1
index.vue
src/views/ecw/order/warehousing/index.vue
+1
-1
No files found.
src/components/WarehouseAreaSelect/index.vue
0 → 100644
View file @
2a475a4d
<
template
>
<div>
<div
class=
"area-code"
></div>
<el-button
type=
"primary"
size=
"mini"
@
click=
"dialogVisible = true"
>
选择
</el-button>
<el-dialog
title=
"提示"
:visible.sync=
"dialogVisible"
width=
"30%"
append-to-body
:before-close=
"handleClose"
>
<span>
这是一段信息
</span>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogVisible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"dialogVisible = false"
>
确 定
</el-button>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
export
default
{
name
:
"
WarehouseAreaSelect
"
,
props
:
{
input
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
data
()
{
return
{
dialogVisible
:
false
}
},
methods
:
{
handleClose
(
done
)
{
this
.
$confirm
(
'
确认关闭?
'
)
.
then
(
_
=>
{
done
();
})
.
catch
(
_
=>
{});
}
}
}
</
script
>
<
style
scoped
>
</
style
>
src/layout/components/Navbar.vue
View file @
2a475a4d
...
...
@@ -94,10 +94,10 @@ export default {
}
},
created
()
{
this
.
updateMessage
()
setInterval
(()
=>
{
this
.
updateMessage
()
},
10000
)
//
this.updateMessage()
//
setInterval(() => {
//
this.updateMessage()
//
}, 10000)
},
components
:
{
Breadcrumb
,
...
...
src/views/ecw/order/warehousing/components/editDialog.vue
View file @
2a475a4d
...
...
@@ -171,6 +171,11 @@
</el-form-item>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('储位')"
prop=
"orderLocationBackVOList"
>
<
template
v-slot=
"{ row, column, $index }"
>
<warehouse-area-select
v-model=
"column"
></warehouse-area-select>
</
template
>
</el-table-column>
</el-table>
</el-form>
...
...
@@ -378,6 +383,7 @@ import { getFeeTypeByOrderProduct, getProductBrankPage } from '@/api/ecw/product
import
WorkFlow
from
"
@/components/WorkFlow
"
import
ProductSelector
from
"
@/components/ProductSelector
"
import
{
cancelProcessInstance
}
from
"
@/api/bpm/processInstance
"
import
WarehouseAreaSelect
from
"
@/components/WarehouseAreaSelect
"
export
default
{
name
:
'
editDialog
'
,
...
...
@@ -385,7 +391,8 @@ export default {
components
:
{
dictSelector
,
WorkFlow
,
ProductSelector
ProductSelector
,
WarehouseAreaSelect
},
props
:
{
...
...
src/views/ecw/order/warehousing/index.vue
View file @
2a475a4d
...
...
@@ -153,7 +153,7 @@
<warehouse-area-dialog
ref=
"area"
:visible.sync=
"areaVisible"
v-model=
"form.orderLocationCreateReqVOList"
:order-id=
"orderId"
:warehouse-id=
"warehouseId"
:is-editing=
"isEdit"
></warehouse-area-dialog>
<edit-dialog
:title=
"title"
:order-id=
"order.orderId"
:visible.sync=
"warehousingVisible"
:warehousing=
"warehousing"
:edit=
"isEdit"
:is-jiyun=
"order.type.indexOf('1') !== -1"
></edit-dialog>
<edit-dialog
:title=
"title"
:order-id=
"order.orderId"
:visible.sync=
"warehousingVisible"
:warehousing=
"warehousing"
:edit=
"isEdit"
:is-jiyun=
"order.type
&& order.type
.indexOf('1') !== -1"
></edit-dialog>
<!-- 完成入仓 -->
<el-dialog
...
...
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