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
1ecf068d
Commit
1ecf068d
authored
Aug 22, 2022
by
黄卓
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
入仓影像
parent
026fc419
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
3 deletions
+30
-3
editDialog.vue
src/views/ecw/order/warehousing/components/editDialog.vue
+1
-1
index.vue
src/views/ecw/order/warehousing/index.vue
+29
-2
No files found.
src/views/ecw/order/warehousing/components/editDialog.vue
View file @
1ecf068d
...
@@ -88,7 +88,7 @@
...
@@ -88,7 +88,7 @@
<el-input
v-else
v-model.number=
"tableData[$index].weight"
placeholder=
""
></el-input>
<el-input
v-else
v-model.number=
"tableData[$index].weight"
placeholder=
""
></el-input>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"数量"
>
<el-table-column
label=
"数量"
width=
"130px"
>
<
template
v-slot=
"{r,c,$index}"
>
<
template
v-slot=
"{r,c,$index}"
>
<span
v-if=
"tableData[$index].id"
>
{{
tableData
[
$index
].
quantityAll
}}
</span>
<span
v-if=
"tableData[$index].id"
>
{{
tableData
[
$index
].
quantityAll
}}
</span>
<el-input
v-else
v-model.number=
"tableData[$index].quantityAll"
placeholder=
""
>
<el-input
v-else
v-model.number=
"tableData[$index].quantityAll"
placeholder=
""
>
...
...
src/views/ecw/order/warehousing/index.vue
View file @
1ecf068d
...
@@ -89,6 +89,15 @@
...
@@ -89,6 +89,15 @@
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-card
style=
"margin-top: 15px;"
>
<div
slot=
"header"
class=
"clearfix"
>
<span
style=
"font-size: 18px"
>
入仓影像
</span>
</div>
<div>
<image-and-video-upload
:fileSize=
"50"
:isShowTip=
"true"
v-model=
"form.urls"
></image-and-video-upload>
</div>
</el-card>
<div
style=
"text-align: center;margin-top: 15px"
v-if=
"order.status !== 5"
>
<div
style=
"text-align: center;margin-top: 15px"
v-if=
"order.status !== 5"
>
<el-button
@
click=
"escapeBol = true;"
type=
"primary"
>
转异
</el-button>
<el-button
@
click=
"escapeBol = true;"
type=
"primary"
>
转异
</el-button>
<el-button
type=
"primary"
@
click=
"finishVisible = true"
>
完成入仓
</el-button>
<el-button
type=
"primary"
@
click=
"finishVisible = true"
>
完成入仓
</el-button>
...
@@ -130,6 +139,20 @@
...
@@ -130,6 +139,20 @@
<el-button
@
click=
"escapeBol = false"
>
取消
</el-button>
<el-button
@
click=
"escapeBol = false"
>
取消
</el-button>
</span>
</span>
</el-dialog>
</el-dialog>
<!-- <el-dialog-->
<!-- title="转异常单"-->
<!-- :visible.sync="dialogVisible"-->
<!-- width="30%"-->
<!-- :before-close="handleClose(done)"-->
<!-- >-->
<!-- <span>这是一段信息</span>-->
<!-- <span slot="footer" class="dialog-footer">-->
<!-- <el-button type="primary" @click="dialogVisible = false">确认并完成入仓</el-button>-->
<!-- <el-button @click="dialogVisible = false">取 消</el-button>-->
<!-- </span>-->
<!-- </el-dialog>-->
<print-tag
v-if=
"isShowPrintTag"
:order-id=
"orderId"
@
close=
"isShowPrintTag = false"
></print-tag>
<print-tag
v-if=
"isShowPrintTag"
:order-id=
"orderId"
@
close=
"isShowPrintTag = false"
></print-tag>
<print-warehouse-receipt
v-if=
"isShowPrint"
:order-id=
"orderId"
@
close=
"isShowPrint = false"
/>
<print-warehouse-receipt
v-if=
"isShowPrint"
:order-id=
"orderId"
@
close=
"isShowPrint = false"
/>
...
@@ -153,6 +176,7 @@ import PrintTag from "@/views/ecw/order/components/PrintTag"
...
@@ -153,6 +176,7 @@ import PrintTag from "@/views/ecw/order/components/PrintTag"
import
PrintWarehouseReceipt
from
"
@/views/ecw/order/components/PrintWarehouseReceipt
"
import
PrintWarehouseReceipt
from
"
@/views/ecw/order/components/PrintWarehouseReceipt
"
import
imageUpload
from
"
@/components/ImageUpload
"
;
import
imageUpload
from
"
@/components/ImageUpload
"
;
import
{
parseTime
}
from
"
@/utils/ruoyi
"
import
{
parseTime
}
from
"
@/utils/ruoyi
"
import
ImageAndVideoUpload
from
'
@/components/ImageAndVideoUpload
'
export
default
{
export
default
{
name
:
"
Warehousing
"
,
name
:
"
Warehousing
"
,
...
@@ -162,7 +186,8 @@ export default {
...
@@ -162,7 +186,8 @@ export default {
editDialog
,
editDialog
,
PrintTag
,
PrintTag
,
PrintWarehouseReceipt
,
PrintWarehouseReceipt
,
imageUpload
imageUpload
,
ImageAndVideoUpload
,
},
},
mounted
()
{
mounted
()
{
...
@@ -189,6 +214,7 @@ export default {
...
@@ -189,6 +214,7 @@ export default {
exceptionUrls
:[],
exceptionUrls
:[],
descZh
:
''
,
descZh
:
''
,
manualExceptionType
:
''
,
manualExceptionType
:
''
,
urls
:
[]
},
},
currencyList
:[],
currencyList
:[],
order
:
{},
order
:
{},
...
@@ -207,7 +233,8 @@ export default {
...
@@ -207,7 +233,8 @@ export default {
let
p
=
{
let
p
=
{
orderSpecialNeedReceivableReqVoList
:
this
.
form
.
orderSpecialNeedReceivableReqVoList
,
orderSpecialNeedReceivableReqVoList
:
this
.
form
.
orderSpecialNeedReceivableReqVoList
,
"
orderLocationCreateReqVOList
"
:
this
.
form
.
orderLocationCreateReqVOList
,
"
orderLocationCreateReqVOList
"
:
this
.
form
.
orderLocationCreateReqVOList
,
"
orderId
"
:
this
.
order
.
orderId
"
orderId
"
:
this
.
order
.
orderId
,
urls
:
this
.
form
.
urls
}
}
if
(
this
.
escapeBol
){
if
(
this
.
escapeBol
){
p
.
exceptionUrls
=
this
.
form
.
exceptionUrls
.
split
(
'
,
'
);
p
.
exceptionUrls
=
this
.
form
.
exceptionUrls
.
split
(
'
,
'
);
...
...
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