Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yanshouyi-Minipro
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
xinzhedeai
yanshouyi-Minipro
Commits
8c72da9d
Commit
8c72da9d
authored
Dec 12, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
date range
parent
62781dd9
Pipeline
#446
failed with stages
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1346 additions
and
2 deletions
+1346
-2
mikuCalendar.vue
components/miku-calendar/mikuCalendar.vue
+1257
-0
importFile.vue
pages/home/importFile.vue
+89
-2
No files found.
components/miku-calendar/mikuCalendar.vue
0 → 100644
View file @
8c72da9d
This diff is collapsed.
Click to expand it.
pages/home/importFile.vue
View file @
8c72da9d
...
@@ -6,22 +6,81 @@
...
@@ -6,22 +6,81 @@
<view
class=
"jisuanqi"
@
click=
"exportExcel"
style=
"margin-top:100rpx;"
>
<view
class=
"jisuanqi"
@
click=
"exportExcel"
style=
"margin-top:100rpx;"
>
导出
导出
</view>
</view>
<view
class=
"jisuanqi"
@
click=
"showCalendar=true"
style=
"margin-top:100rpx;"
>
选择日期
</view>
<view
class=
"content-confirm"
style=
"margin-top:100rpx;"
>
日期选择
{{
searchDate
}}
<!--
<calendar-select
v-model=
"showCalendar"
maxDate=
"2021-6-20"
:addOrRemoveData=
"addOrRemoveData"
mode=
"range"
:altPrice=
"dataPrice"
@
change=
"changeDate"
></calendar-select>
-->
<button
@
click=
"open"
>
打开弹窗
</button>
<uni-popup
ref=
"popup"
type=
"bottom"
border-radius=
"10px 10px 0 0"
>
<miku-calendar
:calendarBg=
"'#fff'"
:dateRange=
"[new Date('2024/02/01').getTime(),new Date('2024/02/27').getTime()]"
:dateRangeMax=
"365"
@
dateRangeMaxDeal=
"dateRangeMaxDeal"
mode=
'dateRange'
:showArrow=
"true"
themeColor=
"rgb(100,124,203)"
arrowColor=
"rgb(100,124,203)"
@
confirm =
"calendarConfirm"
></miku-calendar>
</uni-popup>
</view>
<!--
<web-view
:src=
"localUrl"
@
message=
"handlePostMessage"
></web-view>
-->
<!--
<web-view
:src=
"localUrl"
@
message=
"handlePostMessage"
></web-view>
-->
</view>
</view>
</
template
>
</
template
>
<
script
>
<
script
>
import
*
as
XLSX
from
'
@/common/excel.js
'
import
*
as
XLSX
from
'
@/common/excel.js
'
import
CalendarSelect
from
'
@/components/calendar-select/calendar-select.vue
'
import
mikuCalendar
from
"
@/components/miku-calendar/mikuCalendar.vue
"
var
that
;
var
that
;
export
default
{
export
default
{
components
:
{
CalendarSelect
,
mikuCalendar
},
data
()
{
data
()
{
return
{
return
{
searchDate
:
''
,
date
:
new
Date
(
'
2023/09/20
'
).
getTime
(),
title
:
"
app端导出excel
"
,
title
:
"
app端导出excel
"
,
successTip
:
""
,
successTip
:
""
,
// localUrl: '../../hybrid/html/local.html' // 本地页面的 URL
// localUrl: '../../hybrid/html/local.html' // 本地页面的 URL
localUrl
:
'
http://www.minestar.cn/index.html
'
,
// 本地页面的 URL
localUrl
:
'
http://www.minestar.cn/index.html
'
,
// 本地页面的 URL
excelList
:[{
excelList
:[{
'
ctime
'
:
22
,
'
payname
'
:
22
,
'
remark
'
:
22
,
'
typename
'
:
22
,
'
type
'
:
22
,
'
money
'
:
22
'
ctime
'
:
22
,
'
payname
'
:
22
,
'
remark
'
:
22
,
'
typename
'
:
22
,
'
type
'
:
22
,
'
money
'
:
22
}]
//接口提供数据
}],
//接口提供数据
showCalendar
:
false
,
dataPrice
:
[
// 日历上的价格
{
date
:
'
2021-4-23
'
,
price
:
98
},
{
date
:
'
2021-4-28
'
,
price
:
108
},
{
date
:
'
2021-4-29
'
,
price
:
98
}
],
addOrRemoveData
:
[
'
2021-04-23
'
,
'
2021-04-27
'
]
}
}
},
},
onLoad
()
{
onLoad
()
{
...
@@ -29,6 +88,27 @@
...
@@ -29,6 +88,27 @@
// this.localUrl = `/hybrid/html/local.html`;
// this.localUrl = `/hybrid/html/local.html`;
},
},
methods
:
{
methods
:
{
open
(){
// 通过组件定义的ref调用uni-popup方法 ,如果传入参数 ,type 属性将失效 ,仅支持 ['top','left','bottom','right','center']
this
.
$refs
.
popup
.
open
(
'
center
'
)
},
calendarConfirm
(
e
){
console
.
log
(
e
)
const
formattedDates
=
e
.
map
(
date
=>
date
.
split
(
'
'
)[
0
]);
this
.
searchDate
=
formattedDates
this
.
$refs
.
popup
.
close
()
},
dateRangeMaxDeal
(
e
){
console
.
log
(
'
超过最大连选天数:
'
,
e
)
},
dateChange
(
day
){
this
.
date
=
day
},
// 获取选中的日期
changeDate
(
data
)
{
console
.
log
(
data
)
},
uploadExcel
(){
uploadExcel
(){
// wx.miniapp.chooseFile({
// wx.miniapp.chooseFile({
// success(res) {
// success(res) {
...
@@ -136,4 +216,11 @@
...
@@ -136,4 +216,11 @@
},
},
}
}
}
}
</
script
>
</
script
>
\ No newline at end of file
<
style
>
::v-deep
.uni-popup
.uni-popup__wrapper
{
display
:
block
;
position
:
relative
;
width
:
80vw
;
}
</
style
>
\ No newline at end of file
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