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
7c858866
Commit
7c858866
authored
Nov 16, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
打包添加新品
parent
855f489c
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
691 additions
and
4 deletions
+691
-4
NewProduct.vue
src/views/ecw/order/stocking/components/NewProduct.vue
+675
-0
Package.vue
src/views/ecw/order/stocking/components/Package.vue
+0
-1
index.vue
src/views/ecw/order/stocking/index.vue
+16
-3
No files found.
src/views/ecw/order/stocking/components/NewProduct.vue
0 → 100644
View file @
7c858866
This diff is collapsed.
Click to expand it.
src/views/ecw/order/stocking/components/Package.vue
View file @
7c858866
...
...
@@ -242,7 +242,6 @@ import ImageAndVideoUpload from "@/components/ImageAndVideoUpload/index.vue";
export
default
{
name
:
"
Package
"
,
components
:
{
ImageAndVideoUpload
,
WarehouseRecordDetail
,
...
...
src/views/ecw/order/stocking/index.vue
View file @
7c858866
...
...
@@ -5,7 +5,11 @@
<order-base-info
:order=
"order"
stocking
></order-base-info>
<h2>
{{
$t
(
'
货物信息
'
)
}}
</h2>
<div
class=
"flex items-center"
>
<div
class=
"flex-1 page-title"
>
{{
$t
(
'
货物信息
'
)
}}
</div>
<el-button
type=
"primary"
@
click=
"showNewProductDialog=true"
>
{{
$t
(
'
添加新品名
'
)
}}
</el-button>
</div>
<!--
未入仓的不显示 https://zentao.test.jdshangmen.com/bug-view-5292.html
-->
...
...
@@ -234,6 +238,11 @@
v-if=
"!!packageOrderItem"
@
close=
"onPackageClose"
></package>
<new-product
:order=
"order"
v-if=
"showNewProductDialog"
@
close=
"onPackageClose"
></new-product>
<media-dialog
v-if=
"curPictrues"
:value=
"curPictrues"
@
close=
"curPictrues=null"
></media-dialog>
</div>
</template>
...
...
@@ -277,7 +286,8 @@ export default {
PrintWarehouseReceipt
,
imageUpload
,
ImageAndVideoUpload
,
Package
Package
,
NewProduct
:
()
=>
import
(
'
@/views/ecw/order/stocking/components/NewProduct.vue
'
)
},
mounted
()
{
...
...
@@ -346,7 +356,9 @@ export default {
packageWarehouseItem
:
null
,
productAttrList
:
[],
// 当前查看的影像
curPictrues
:
null
curPictrues
:
null
,
// 是否显示添加新品弹窗
showNewProductDialog
:
false
}
},
...
...
@@ -437,6 +449,7 @@ export default {
onPackageClose
(){
this
.
packageOrderItem
=
null
;
this
.
packageOrderItem
=
null
;
this
.
showNewProductDialog
=
false
this
.
getList
()
},
showMedia
(
orderItem
){
...
...
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