Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lumastoreapp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xieyishang
lumastoreapp
Commits
fe41afac
Commit
fe41afac
authored
Mar 25, 2025
by
xieyishang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~~
parent
d4dc3425
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
pages/user/record/record.vue
pages/user/record/record.vue
+12
-2
No files found.
pages/user/record/record.vue
View file @
fe41afac
...
...
@@ -20,8 +20,8 @@
</view>
<view
class=
"list_02"
>
<view
class=
"list_01_l"
>
{{
item
.
time
}}
</view>
<
!--
<view
class=
"list_01_r"
v-if=
"item.state==0"
>
处理中
</view>
<view
class=
""
v-if=
"item.state==1"
>
交易成功
</view>
-->
<
view
class=
"list_01_r"
>
{{
item
.
status
|
parsestart
}}
</view>
</view>
</view>
</block>
...
...
@@ -68,6 +68,16 @@
countdata
:{},
};
},
filters
:{
parsestart
(
val
){
let
obj
=
{
"
0
"
:
"
审核中
"
,
"
1
"
:
"
已通过
"
,
"
2
"
:
"
已驳回
"
};
if
(
obj
[
val
]){
return
obj
[
val
];
}
else
{
return
""
;
}
}
},
computed
:{
userinfo
(){
return
this
.
$store
.
state
.
userInfo
;
...
...
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