Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
h5-base
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
new-sing
h5-base
Commits
e402dbc5
Commit
e402dbc5
authored
Sep 18, 2019
by
IvyXia123
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
promptTime
parent
dca620a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
209 deletions
+2
-209
promptTime.vue
src/components/map/promptTime.vue
+0
-207
index.js
src/router/index.js
+2
-2
No files found.
src/components/map/promptTime.vue
deleted
100644 → 0
View file @
dca620a0
<
template
>
<div
class=
"prompt-time"
>
<div
class=
"title"
>
请设置您希望接收上课提醒的时间
</div>
<div
class=
"tishi-timer"
>
<img
:src=
"tishiTimer"
alt=
""
>
</div>
<div
class=
"time-setting"
ref=
"timeSetting"
@
click=
"dateShowClick"
>
<div
class=
"time-setting-text"
>
当前设定的时间
</div>
<div
class=
"time-setting-ti"
>
<span>
{{
currentTime
}}
</span>
<img
:src=
"youjiantou"
alt=
""
>
</div>
</div>
<div
class=
"preservation"
@
click=
"preservationClick"
>
保存
</div>
<van-popup
v-model=
"dateShow"
position=
"bottom"
>
<van-datetime-picker
:min-hour=
"minHour"
:max-hour=
"maxHour"
@
confirm=
"dateConfirm"
@
cancel=
"dateConfirmNo"
v-model=
"currentTime"
type=
"time"
/>
</van-popup>
</div>
</
template
>
<
script
>
import
{
postNotifySettingApi
,
getNotifyApi
}
from
"../../service/api"
;
import
{
DatetimePicker
,
Popup
,
Toast
}
from
'vant'
;
import
tishiTimer
from
'../../assets/evaluate/tishi_timer.png'
import
youjiantou
from
'../../assets/evaluate/youjiantou.png'
export
default
{
name
:
"promptTime"
,
data
()
{
return
{
currentTime
:
'07:00'
,
minHour
:
7
,
maxHour
:
22
,
dateVal
:
''
,
dateShow
:
false
,
selectedValue
:
''
,
tishiTimer
:
tishiTimer
,
// 图
youjiantou
:
youjiantou
// 图
}
},
components
:
{
[
DatetimePicker
.
name
]:
DatetimePicker
,
[
Popup
.
name
]:
Popup
,
},
watch
:
{
dateShow
(
val
)
{
if
(
!
val
)
{
this
.
contentFn
()
}
}
},
methods
:
{
dateShowClick
()
{
this
.
dateShow
=
true
;
this
.
$nextTick
(()
=>
{
document
.
querySelectorAll
(
'.van-picker__confirm'
)[
0
].
innerText
=
'完成'
document
.
querySelectorAll
(
'.van-picker-column'
)[
1
].
style
.
display
=
'none'
;
let
oLi
=
document
.
querySelectorAll
(
'.van-picker-column'
)[
0
].
querySelectorAll
(
'li'
);
for
(
var
i
=
0
;
i
<
oLi
.
length
;
i
++
)
{
oLi
[
i
].
innerText
=
oLi
[
i
].
innerText
+
':00'
}
})
},
dateConfirm
(
val
)
{
this
.
currentTime
=
val
==
'aN:aN'
?
'00:00'
:
val
this
.
contentFn
()
},
dateConfirmNo
()
{
this
.
contentFn
()
},
contentFn
()
{
this
.
dateShow
=
false
;
this
.
$refs
.
timeSetting
.
style
.
borderBottom
=
'1px solid #E2E2E2'
let
oLi
=
document
.
querySelectorAll
(
'.van-picker-column'
)[
0
].
querySelectorAll
(
'li'
);
for
(
var
i
=
0
;
i
<
oLi
.
length
;
i
++
)
{
oLi
[
i
].
innerText
=
oLi
[
i
].
innerText
.
split
(
':'
)[
0
]
}
},
preservationClick
()
{
let
pushAtData
=
{
time
:
this
.
currentTime
,
periods_id
:
this
.
$route
.
query
.
periods_id
}
postNotifySettingApi
(
pushAtData
).
then
(
res
=>
{
Toast
(
"时间设定完成"
);
this
.
$router
.
go
(
-
1
);
})
}
},
mounted
()
{
getNotifyApi
(
this
.
$route
.
query
.
periods_id
).
then
(
res
=>
{
console
.
log
(
res
,
8787878
)
if
(
res
.
time
)
this
.
currentTime
=
res
.
time
.
split
(
':'
)[
0
]
+
':'
+
res
.
time
.
split
(
':'
)[
1
]
})
}
}
</
script
>
<
style
lang=
"less"
>
@import "../../util/public";
.van-picker {
border-radius: 30 * @toVw 30 * @toVw 0 0;
}
.van-picker__toolbar::after {
content: '';
border: none;
}
.van-picker__confirm {
color: #333333;
font-size: 15 * @toVw;
margin: 0;
padding-right: 30 * @toVw;
}
.van-picker__frame, .van-picker__loading .van-loading {
height: 54px!important;
}
.van-picker__cancel {
color: #333333;
font-size: 15 * @toVw;
margin: 0;
padding-left: 30 * @toVw;
}
.van-picker-column__item {
color: #666666;
font-size: 17 * @toVw;
}
.van-picker-column__item--selected {
color: #40A9FF;
font-size: 21 * @toVw;
}
.prompt-time {
width: 100%;
height: 100%;
background: #ffffff;
padding: 0 27 * @toVw;
box-sizing: border-box;
.title {
padding-top: 30 * @toVw;
padding-bottom: 24 * @toVw;
font-size: 17 * @toVw;
font-weight: 500;
letter-spacing: 1px;
color: #000000;
}
.tishi-timer {
width: 322 * @toVw;
height: 245 * @toVw;
img {
width: 100%;
height: 100%;
}
}
.time-setting {
width: 100%;
overflow: hidden;
padding-top: 38 * @toVw;
padding-bottom: 11 * @toVw;
border-bottom: 1px solid #E2E2E2;
.time-setting-text {
float: left;
font-size: 14 * @toVw;
}
.time-setting-ti {
float: right;
span {
font-size: 15 * @toVw;
padding-right: 10 * @toVw;
vertical-align: middle;
}
img {
width: 10 * @toVw;
height: 14 * @toVw;
vertical-align: middle;
}
}
}
.preservation {
width: 330 * @toVw;
height: 50 * @toVw;
line-height: 50 * @toVw;
background: #40A9FF;
margin-top: 60 * @toVw;
border-radius: 28 * @toVw;
text-align: center;
font-size: 17 * @toVw;
font-weight: 500;
color: #ffffff;
}
}
</
style
>
src/router/index.js
View file @
e402dbc5
...
...
@@ -560,11 +560,11 @@ const router = new Router({
}
},
// 时间提示
{
/*
{
path: '/promptTime',
name: 'promptTime',
component: e => require(['@/components/map/promptTime'], e)
},
},
*/
{
path
:
'*'
,
component
:
()
=>
import
(
'@/components/error'
),
...
...
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