Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0c1c8ad6
authored
Jan 10, 2025
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
寄售申请单详情“删除”校验状态错误
parent
ccceb7a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
src/views/consignmentManagement/consignmentApplication.vue
src/views/consignmentManagement/consignmentApplicationDetail.vue
src/views/consignmentManagement/consignmentApplication.vue
View file @
0c1c8ad6
...
...
@@ -3,8 +3,8 @@
<div
class=
"section-page"
>
<!--搜索区-->
<el-form
:inline=
"true"
:model=
"formParam"
ref=
"formParam"
label-width=
"96px"
>
<el-form-item
label=
"寄售
召回
单号"
prop=
"consignment_sn"
>
<el-input
v-model=
"formParam.consignment_sn"
placeholder=
"请输入寄售
召回
单号"
@
keyup
.
enter
.
native=
"submit"
clearable
></el-input>
<el-form-item
label=
"寄售
申请
单号"
prop=
"consignment_sn"
>
<el-input
v-model=
"formParam.consignment_sn"
placeholder=
"请输入寄售
申请
单号"
@
keyup
.
enter
.
native=
"submit"
clearable
></el-input>
</el-form-item>
<el-form-item
label=
"型号"
prop=
"goods_name"
>
<el-autocomplete
v-model=
"formParam.goods_name"
:trigger-on-focus=
"false"
@
keyup
.
enter
.
native=
"onSubmit"
:fetch-suggestions=
"querySearchAsync"
placeholder=
"请输入型号"
clearable
></el-autocomplete>
...
...
src/views/consignmentManagement/consignmentApplicationDetail.vue
View file @
0c1c8ad6
...
...
@@ -116,8 +116,7 @@ export default {
return
;
}
// 提交审核:校验待提审状态
const
invalidVerify
=
this
.
multipleSelection
.
filter
(
item
=>
item
.
consignment_status
!==
'0'
);
if
(
invalidVerify
.
length
)
{
if
(
this
.
detailData
.
consignment_status
!=
0
)
{
this
.
$message
.
warning
(
'只能选择待提审状态的数据'
);
return
;
}
...
...
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