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
df6d4531
Commit
df6d4531
authored
May 01, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退仓添加图片
parent
9c715d60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
warehouseDetails.vue
src/views/ecw/order/components/warehouseDetails.vue
+10
-0
withdrawal.vue
src/views/ecw/order/withdrawal.vue
+7
-0
No files found.
src/views/ecw/order/components/warehouseDetails.vue
View file @
df6d4531
...
...
@@ -130,6 +130,16 @@
<div>
{{ FeeDetails.details
&&
FeeDetails.details.reason ? FeeDetails.details.reason :''}}
</div>
<p>
{{$t('退仓图片')}}
</p>
<div>
<el-image
v-for=
"(item, index) in (FeeDetails.details.imgUrl || '').split(',')"
:key =
'index'
style=
"width: 100px; height: 100px;margin:10px;"
:src=
"item"
:preview-src-list=
"(FeeDetails.details.imgUrl || '').split(',')"
>
</el-image>
</div>
</div>
<div
v-if=
"type === 4"
>
<p>
{{ $t('申请理由') }}
</p>
...
...
src/views/ecw/order/withdrawal.vue
View file @
df6d4531
...
...
@@ -13,6 +13,9 @@
<el-form-item
:label=
"$t('退仓原因')"
>
<el-input
v-model=
"params.reason"
style=
"width:500px"
type=
"textarea"
></el-input>
</el-form-item>
<el-form-item
:label=
"$t('图片')"
>
<image-and-video-upload
:file-type=
"['png' , 'jpg', 'jpeg']"
:fileSize=
"50"
:isShowTip=
"true"
v-model=
"params.imgUrl"
></image-and-video-upload>
</el-form-item>
</el-form>
<el-divider></el-divider>
<h2>
{{
$t
(
'
审批流程
'
)
}}
</h2>
...
...
@@ -37,6 +40,7 @@ import {
warehouseApprovalCancel
}
from
"
@/api/ecw/batchSingleApplication
"
;
import
workFlow
from
"
@/components/WorkFlow
"
;
import
ImageAndVideoUpload
from
"
@/components/ImageAndVideoUpload/index.vue
"
;
export
default
{
name
:
"
withdrawal
"
,
...
...
@@ -45,6 +49,7 @@ export default {
dialogVisible
:
Boolean
},
components
:{
ImageAndVideoUpload
,
workFlow
},
data
(){
...
...
@@ -55,6 +60,7 @@ export default {
orderNo
:
undefined
,
reason
:
''
,
copyUserId
:[],
imgUrl
:[]
},
isExamine
:
true
,
details
:{},
...
...
@@ -82,6 +88,7 @@ export default {
submit
(){
this
.
params
.
orderId
=
this
.
orderDetails
.
orderId
;
this
.
params
.
orderNo
=
this
.
orderDetails
.
orderNo
;
this
.
params
.
imgUrl
=
this
.
params
.
imgUrl
.
join
(
'
,
'
)
orderWarehouseInDelete
(
this
.
params
).
then
(
r
=>
{
if
(
r
.
code
===
0
){
this
.
$message
.
success
(
this
.
$t
(
'
退仓成功
'
));
...
...
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