Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-customer-new-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-customer-new-master
Commits
d4cf105d
Commit
d4cf105d
authored
Jan 20, 2025
by
honghy
Committed by
wux
Jan 21, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug201 【(app/h5)输入空格时,没有自动去除空格
parent
963b3cf7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
order.vue
src/pages/order/order.vue
+4
-4
No files found.
src/pages/order/order.vue
View file @
d4cf105d
...
@@ -1100,7 +1100,7 @@
...
@@ -1100,7 +1100,7 @@
getControl
(){
getControl
(){
this
.
params
.
page
=
this
.
page
this
.
params
.
page
=
this
.
page
this
.
params
.
rows
=
6
this
.
params
.
rows
=
6
this
.
params
.
searchKey
=
this
.
searchKey
this
.
params
.
searchKey
=
this
.
searchKey
.
replace
(
/
\s
+/g
,
''
)
this
.
params
.
cargoControlStatus
=
this
.
config
.
cargoControlStatus
.
value
[
this
.
config
.
cargoControlStatus
.
index
]
this
.
params
.
cargoControlStatus
=
this
.
config
.
cargoControlStatus
.
value
[
this
.
config
.
cargoControlStatus
.
index
]
this
.
$request
.
get
(
'
/app-api/my/order/cargo/control/page
'
,
this
.
params
).
then
(
res
=>
{
this
.
$request
.
get
(
'
/app-api/my/order/cargo/control/page
'
,
this
.
params
).
then
(
res
=>
{
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
...
@@ -1119,7 +1119,7 @@
...
@@ -1119,7 +1119,7 @@
})
})
},
},
getIssued
(){
getIssued
(){
this
.
$request
.
get
(
'
/app-api/my/order/issued/page
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
this
.
$request
.
get
(
'
/app-api/my/order/issued/page
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
.
replace
(
/
\s
+/g
,
''
)
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
this
.
page
==
1
){
if
(
this
.
page
==
1
){
if
(
this
.
selectIndex
==
1
){
if
(
this
.
selectIndex
==
1
){
...
@@ -1136,7 +1136,7 @@
...
@@ -1136,7 +1136,7 @@
})
})
},
},
getReceiver
(){
getReceiver
(){
this
.
$request
.
get
(
'
/app-api/my/order/received/page
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
this
.
$request
.
get
(
'
/app-api/my/order/received/page
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
.
replace
(
/
\s
+/g
,
''
)
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
this
.
page
==
1
){
if
(
this
.
page
==
1
){
if
(
this
.
selectIndex
==
2
){
if
(
this
.
selectIndex
==
2
){
...
@@ -1182,7 +1182,7 @@
...
@@ -1182,7 +1182,7 @@
}
}
},
},
getData
(){
getData
(){
this
.
$request
.
get
(
'
/app-api/my/order/all/order
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
this
.
$request
.
get
(
'
/app-api/my/order/all/order
'
,{
page
:
this
.
page
,
rows
:
6
,
searchKey
:
this
.
searchKey
.
replace
(
/
\s
+/g
,
''
)
,
statusList
:
this
.
config
.
status
.
value
[
this
.
config
.
status
.
index
]}).
then
(
res
=>
{
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
res
.
code
==
0
&&
res
.
data
&&
res
.
data
.
list
&&
res
.
data
.
list
.
length
>
0
){
if
(
this
.
page
==
1
){
if
(
this
.
page
==
1
){
if
(
this
.
selectIndex
==
0
){
if
(
this
.
selectIndex
==
0
){
...
...
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