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
2d93c663
Commit
2d93c663
authored
Jul 14, 2022
by
ylpmty
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
ad478141
56659b71
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
151 additions
and
11 deletions
+151
-11
warehouseArea.js
src/api/ecw/warehouseArea.js
+8
-0
index.vue
src/components/CustomerSelector/index.vue
+4
-4
index.vue
src/components/CustomersSelector/index.vue
+10
-5
index.vue
src/components/ProductsSelector/index.vue
+3
-1
permission.js
src/store/modules/permission.js
+1
-0
edit.vue
src/views/ecw/offer/edit.vue
+1
-1
warehouse-area-dialog.vue
...cw/order/warehousing/components/warehouse-area-dialog.vue
+118
-0
index.vue
src/views/system/menu/index.vue
+6
-0
No files found.
src/api/ecw/warehouseArea.js
View file @
2d93c663
...
...
@@ -34,6 +34,14 @@ export function getWarehouseArea(id) {
})
}
// 获得仓库查询库域
export
function
getByWarehouseId
()
{
return
request
({
url
:
'
/ecw/warehouse-area/getByWarehouseId
'
,
method
:
'
get
'
})
}
// 获得库区库域分页
export
function
getWarehouseAreaPage
(
query
)
{
return
request
({
...
...
src/components/CustomerSelector/index.vue
View file @
2d93c663
...
...
@@ -26,15 +26,15 @@ export default {
},
data
(){
return
{
index
:
{}
,
index
:
null
,
list
:[],
loading
:
false
}
},
watch
:{
index
(
val
){
this
.
$emit
(
'
input
'
,
val
!==
null
?
this
.
list
[
val
].
id
:
null
)
this
.
$emit
(
'
change
'
,
val
!==
null
?
this
.
list
[
val
]
:
null
)
this
.
$emit
(
'
input
'
,
val
!==
null
?
this
.
list
[
val
].
id
:
null
)
this
.
$emit
(
'
change
'
,
val
!==
null
?
this
.
list
[
val
]:
null
)
},
value
(
val
){
this
.
init
()
...
...
@@ -45,7 +45,7 @@ export default {
},
methods
:{
init
(){
if
(
!
this
.
value
)
return
null
if
(
!
this
.
value
)
return
let
index
=
this
.
list
.
findIndex
(
item
=>
item
.
id
==
this
.
value
)
if
(
index
<
0
){
getCustomer
(
this
.
value
).
then
(
res
=>
{
...
...
src/components/CustomersSelector/index.vue
View file @
2d93c663
...
...
@@ -34,7 +34,12 @@
import
{
getCustomerSelect
,
getCustomerList
}
from
'
@/api/ecw/customer
'
export
default
{
props
:{
value
:
[
Array
]
value
:
{
type
:
Array
,
default
:
()
=>
{
return
[]
}
}
},
data
(){
return
{
...
...
@@ -60,16 +65,16 @@ export default {
customerIds
(
val
){
this
.
$emit
(
'
input
'
,
val
)
},
value
(
val
,
old
){
if
(
val
.
sort
().
join
(
'
,
'
)
!=
old
.
sort
().
join
(
'
,
'
)){
value
(
val
){
if
(
Array
.
from
(
new
Set
(
val
)).
sort
().
join
(
'
,
'
)
!=
Array
.
from
(
new
Set
(
this
.
customerIds
))
.
sort
().
join
(
'
,
'
)){
this
.
getChoosedList
()
}
}
},
created
(){
if
(
this
.
value
&&
this
.
value
.
length
){
/*
if(this.value && this.value.length){
this.getChoosedList()
}
}
*/
this
.
reLoad
()
},
methods
:{
...
...
src/components/ProductsSelector/index.vue
View file @
2d93c663
...
...
@@ -44,7 +44,9 @@ export default {
props
:
{
defaultIds
:
{
type
:
Array
,
default
:
[]
default
:
()
=>
{
return
[]
}
}
},
data
()
{
...
...
src/store/modules/permission.js
View file @
2d93c663
...
...
@@ -55,6 +55,7 @@ function filterAsyncRouter(asyncRouterMap, lastRouter = false, type = false) {
title
:
route
.
name
,
icon
:
route
.
icon
}
route
.
hidden
=
typeof
route
.
isShowInMenuBar
!=
'
undefined
'
&&
(
route
.
isShowInMenuBar
==
'
false
'
||
!
route
.
isShowInMenuBar
)
// 处理 component 属性
if
(
route
.
children
)
{
// 父节点
// debugger
...
...
src/views/ecw/offer/edit.vue
View file @
2d93c663
...
...
@@ -670,7 +670,7 @@ export default {
// 添加的提交
createOffer
(
data
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
新增成功
"
);
this
.
$router
.
replace
(
'
offer/
index
'
)
this
.
$router
.
replace
(
'
index
'
)
});
});
},
...
...
src/views/ecw/order/warehousing/components/warehouse-area-dialog.vue
0 → 100644
View file @
2d93c663
<
template
>
<div>
<el-dialog
title=
"选择储位"
:visible.sync=
"opened"
width=
"600px"
:before-close=
"handleClose()"
>
<el-tabs
v-model=
"activeName"
type=
"card"
>
<el-tab-pane
:label=
"item.name"
:name=
"'' + index"
v-for=
"(item, index) in area"
:key=
"index"
>
<div>
<div
style=
"text-align: center"
>
区域
</div>
<div
style=
"background-color: #efefef;padding: 10px 10px 0;border: #dcdcdc solid 1px;border-radius: 2px"
>
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
v-for=
"(warehouse, i) in item.children"
:key=
"i"
>
<div
class=
"warehouse-block warehouse-block-selected"
:class=
"
{active: selected.find(domain => domain.pid === warehouse.id)}"
@click="handleSelectWarehouse(warehouse)"
>
{{
warehouse
.
name
}}
</div>
</el-col>
</el-row>
</div>
</div>
<div>
<div
style=
"text-align: center"
>
仓位
</div>
</div>
<el-divider></el-divider>
已选择:
<el-divider></el-divider>
</el-tab-pane>
</el-tabs>
<span
slot=
"footer"
>
<el-button
@
click=
"opened = false"
>
关 闭
</el-button>
<el-button
type=
"primary"
@
click=
"opened = false"
>
提 交
</el-button>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
import
{
getByWarehouseId
}
from
'
@/api/ecw/warehouseArea
'
export
default
{
name
:
'
WarehouseAreaDialog
'
,
props
:
{
visible
:
{
type
:
Boolean
,
default
:
false
},
},
data
()
{
return
{
opened
:
false
,
key
:
0
,
area
:
[],
activeName
:
'
0
'
,
selected
:
[]
};
},
watch
:
{
visible
(
val
)
{
if
(
val
)
{
this
.
opened
=
true
}
else
{
}
},
opened
(
val
)
{
if
(
val
)
{
}
else
{
this
.
$emit
(
'
update:visible
'
,
false
)
}
}
},
methods
:
{
handleClose
()
{},
handleSelectWarehouse
(
warehouse
)
{
console
.
log
(
warehouse
)
}
},
mounted
()
{
if
(
this
.
visible
)
{
this
.
opened
=
true
}
getByWarehouseId
().
then
(
r
=>
{
this
.
area
=
r
.
data
})
},
}
</
script
>
<
style
scoped
>
.warehouse-block
{
background-color
:
white
;
border-radius
:
5px
;
height
:
42px
;
line-height
:
42px
;
text-align
:
center
;
margin-bottom
:
10px
;
cursor
:
pointer
;
}
.warehouse-block
:hover
,
.warehouse-block
.active
{
color
:
#ffffff
;
background-color
:
#388fe5
;
}
.warehouse-block-selected
{
border
:
#388fe5
solid
5px
;
}
</
style
>
src/views/system/menu/index.vue
View file @
2d93c663
...
...
@@ -78,6 +78,11 @@
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"24"
v-if=
"form.type == 2"
>
<el-form-item
label=
"显示菜单"
prop=
"isShowInMenuBar"
>
<dict-selector
v-model=
"form.isShowInMenuBar"
:type=
"DICT_TYPE.INFRA_BOOLEAN_STRING"
formatter=
"bool"
form-type=
"radio"
/>
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
<el-form-item
v-if=
"form.type != '3'"
label=
"菜单图标"
>
<el-popover
placement=
"bottom-start"
width=
"460"
trigger=
"click"
@
show=
"$refs['iconSelect'].reset()"
>
...
...
@@ -242,6 +247,7 @@ export default {
parentId
:
0
,
name
:
undefined
,
icon
:
undefined
,
isShowInMenuBar
:
undefined
,
type
:
SystemMenuTypeEnum
.
DIR
,
sort
:
undefined
,
status
:
CommonStatusEnum
.
ENABLE
...
...
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