Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
李伟
cust-app
Commits
d4ed96c8
Commit
d4ed96c8
authored
Feb 18, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改查询
parent
1fb7d598
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
11 deletions
+22
-11
options.js
common/options.js
+2
-2
userFilterPage.vue
pagesUser/userFilterPage.vue
+2
-2
userList.vue
pagesUser/userList.vue
+18
-2
consumeRecord.vue
pagesme/goldCoin/consumeRecord.vue
+0
-5
No files found.
common/options.js
View file @
d4ed96c8
...
...
@@ -93,14 +93,14 @@ export const options = {
{
label
:
'仫佬'
,
value
:
55
}
],
height
:
[
{
label
:
'不限'
,
value
:
'
不限
'
},
{
label
:
'不限'
,
value
:
''
},
{
label
:
'150-160'
,
value
:
'150-160'
},
{
label
:
'160-170'
,
value
:
'160-170'
},
{
label
:
'170-180'
,
value
:
'170-180'
},
{
label
:
'180以上'
,
value
:
'180以上'
}
],
weight
:
[
{
label
:
'不限'
,
value
:
'
不限
'
},
{
label
:
'不限'
,
value
:
''
},
{
label
:
'30-40'
,
value
:
'30-40'
},
{
label
:
'50-60'
,
value
:
'50-60'
},
{
label
:
'70-80'
,
value
:
'70-80'
},
...
...
pagesUser/userFilterPage.vue
View file @
d4ed96c8
...
...
@@ -32,7 +32,7 @@
@
click=
"showHeight = true; hideKeyboard()"
>
<u--input
v-model=
"queryParams.memHeight"
v-model=
"queryParams.memHeight
Text
"
disabled
disabledColor=
"#ffffff"
placeholder=
"请选择身高"
...
...
@@ -47,7 +47,7 @@
@
click=
"showWeight = true; hideKeyboard()"
>
<u--input
v-model=
"queryParams.memWeight"
v-model=
"queryParams.memWeight
Text
"
disabled
disabledColor=
"#ffffff"
placeholder=
"请选择体重"
...
...
pagesUser/userList.vue
View file @
d4ed96c8
...
...
@@ -75,12 +75,28 @@ export default {
},
//获取用户信息列表
queryList
(
pageNo
,
pageSize
)
{
let
minHeight
=
''
let
maxHeight
=
''
let
minWeight
=
''
let
maxWeight
=
''
if
(
this
.
queryParams
.
memHeight
!==
''
){
minHeight
=
this
.
queryParams
.
memHeight
.
split
(
'-'
)[
0
]
maxHeight
=
this
.
queryParams
.
memHeight
.
split
(
'-'
)[
1
]
}
if
(
this
.
queryParams
.
memWeight
!==
''
){
minWeight
=
this
.
queryParams
.
memWeight
.
split
(
'-'
)[
0
]
maxWeight
=
this
.
queryParams
.
memWeight
.
split
(
'-'
)[
1
]
}
const
params
=
{
page
:
pageNo
,
rows
:
pageSize
,
memSex
:
this
.
queryParams
.
memSex
,
memHeight
:
this
.
queryParams
.
memHeight
,
memWeight
:
this
.
queryParams
.
memWeight
,
minHeight
:
minHeight
,
maxHeight
:
maxHeight
,
minWeight
:
minWeight
,
maxWeight
:
maxWeight
,
memHeight
:
''
,
memWeight
:
''
,
memResidenceProvince
:
this
.
queryParams
.
memResidenceProvince
,
memResidenceCity
:
this
.
queryParams
.
memResidenceCity
,
memConstellationList
:
this
.
queryParams
.
memConstellationList
...
...
pagesme/goldCoin/consumeRecord.vue
View file @
d4ed96c8
...
...
@@ -246,11 +246,6 @@ export default {
item
.
actionTypeName
=
'接收微信请求'
}
})
this
.
queryParam
=
{
beginTime
:
''
,
endTime
:
''
,
type
:
''
}
this
.
$refs
.
paging
.
completeByTotal
(
this
.
record
,
res
.
data
.
total
);
})
},
...
...
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