Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨炀
/
ztx_wx_gzt
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4e1f81c6
authored
2026-06-10 15:42:09 +0800
by
lttnew
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
引入文件
1 parent
6da7f1d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
personalVip/order.vue
personalVip/order.vue
View file @
4e1f81c
...
...
@@ -172,6 +172,7 @@ import { ref, reactive, onMounted, computed } from 'vue';
import
{
onReachBottom
,
onLoad
}
from
'@dcloudio/uni-app'
import
*
as
api
from
'@/common/api.js'
import
config
from
'@/config.js'
import
dayjs
from
'dayjs'
const
app
=
getApp
()
const
deptType
=
ref
(
0
)
...
...
@@ -302,12 +303,8 @@ const getOrderLabel = (item) => {
const
filterTime
=
(
row
)
=>
{
if
(
!
row
)
return
''
const
date
=
new
Date
(
String
(
row
).
replace
(
/-/g
,
'/'
))
if
(
Number
.
isNaN
(
date
.
getTime
()))
return
''
const
year
=
date
.
getFullYear
()
const
month
=
String
(
date
.
getMonth
()
+
1
).
padStart
(
2
,
'0'
)
const
day
=
String
(
date
.
getDate
()).
padStart
(
2
,
'0'
)
return
`${year
}
年${month
}
月${day
}
日`
return
dayjs
(
String
(
row
).
replace
(
/-/g
,
'/'
)).
format
(
'YYYY年MM月DD日'
)
}
const
filterType
=
(
row
)
=>
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment