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
154ca99b
Commit
154ca99b
authored
Oct 31, 2023
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
8028f675
492a00df
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
44 deletions
+77
-44
index.vue
src/components/Selector/index.vue
+6
-4
index.vue
src/views/ecw/order/index.vue
+6
-1
Package.vue
src/views/ecw/order/stocking/components/Package.vue
+10
-2
edit.vue
src/views/ecw/productPrice/edit.vue
+55
-37
No files found.
src/components/Selector/index.vue
View file @
154ca99b
...
...
@@ -7,7 +7,7 @@
export
default
{
data
(){
return
{
valueSync
:
null
valueSync
:
undefined
}
},
props
:{
...
...
@@ -47,10 +47,12 @@ export default {
},
watch
:{
valueSync
(
val
){
this
.
$emit
(
'
input
'
,
val
)
console
.
log
(
'
valueSync变化
'
,
val
,
this
.
value
)
this
.
$emit
(
'
input
'
,
val
)
},
value
(
value
){
this
.
valueSync
=
value
console
.
log
(
'
value传值变化
'
,
value
,
this
.
valueSync
)
if
(
value
!==
undefined
)
this
.
valueSync
=
value
},
optionsFormated
(){
this
.
setDefault
()
...
...
@@ -77,4 +79,4 @@ export default {
}
}
}
</
script
>
\ No newline at end of file
</
script
>
src/views/ecw/order/index.vue
View file @
154ca99b
...
...
@@ -896,7 +896,12 @@ export default {
}
else
if
(
this
.
dept
){
func
=
orderDeptStatistics
}
func
(
this
.
combinedQueryParams
).
then
(
res
=>
{
const
query
=
{...
this
.
combinedQueryParams
}
if
(
query
.
packageTypeArr
&&
query
.
packageTypeArr
.
length
){
query
.
packageType
=
query
.
packageTypeArr
.
join
(
'
,
'
)
delete
query
.
packageTypeArr
}
func
(
query
).
then
(
res
=>
{
this
.
statistics
=
res
.
data
})
},
...
...
src/views/ecw/order/stocking/components/Package.vue
View file @
154ca99b
...
...
@@ -52,18 +52,25 @@
</el-descriptions-item>
</el-descriptions>
<el-row>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
4
"
>
<el-form-item
:label=
"$t('材质')"
style=
"margin-top: 20px"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PRODUCT_MATERIAL"
:value=
"orderItemB.material"
clearable
></dict-tag>
</el-form-item>
</el-col>
<el-col
:span=
"1
6
"
>
<el-col
:span=
"1
2
"
>
<el-form-item
:label=
"$t('入仓特性')"
style=
"margin-top: 20px"
>
<el-checkbox-group
v-model=
"form.warehouseInProdAttrIds"
disabled
>
<el-checkbox
v-for=
"item in attrList"
:key=
"item.id"
:label=
"item.id"
>
{{ item.attrName }}
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:label=
"$t('用途')"
style=
"margin-top: 20px"
>
<el-checkbox-group
v-model=
"form.usageIds"
disabled
>
<el-checkbox
v-for=
"item in getDictDatas(DICT_TYPE.WAREHOUSING_RECORD_DETAIL_USAGE)"
:key=
"item.value"
:label=
"item.value"
>
{{ $l(item, 'label') }}
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
</el-row>
<!--<el-form-item :label="$t('入仓时间')" v-if="!edit">
{{form.inTime}}
...
...
@@ -461,6 +468,7 @@ export default {
this
.
form
.
prodType
=
this
.
warehousing
.
prodType
this
.
form
.
type
=
this
.
warehousing
.
type
this
.
form
.
feeType
=
this
.
warehousing
.
feeType
this
.
form
.
usageIds
=
this
.
warehousing
.
usageIds
?.
split
(
'
,
'
)
this
.
warehousing
.
orderWarehouseInBackItemDoList
.
forEach
(
e
=>
{
let
bg
=
{}
...
...
src/views/ecw/productPrice/edit.vue
View file @
154ca99b
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