Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_wechat
Overview
Overview
Details
Activity
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
pseer
gxpt_wechat
Commits
d4f8883b
Commit
d4f8883b
authored
Jan 02, 2024
by
zhangzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
细节优化
parent
c6b72935
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
order.vue
pages/order/order.vue
+8
-8
orderRecord.vue
pages/orderRecord/orderRecord.vue
+6
-6
orderResult.vue
pages/orderResult/orderResult.vue
+4
-4
No files found.
pages/order/order.vue
View file @
d4f8883b
...
...
@@ -244,7 +244,7 @@
<view
class=
"action text-pink"
@
tap=
"onSelectedDate"
>
确定
</view>
</view>
<view
class=
"select-box"
>
<picker-view
class=
"picker-view"
indicator-style=
"height: 42px;"
v-model=
"checkedDateList"
<picker-view
class=
"picker-view"
indicator-style=
"height: 42px;"
:immediate-change=
"true"
v-model=
"checkedDateList"
@
change=
"onBindChange"
>
<picker-view-column>
<view
class=
"item"
v-for=
"(item,index) in hourList"
:key=
"index"
>
...
...
@@ -268,7 +268,7 @@
<view
class=
"action text-pink"
@
tap=
"onSelectedDuration"
>
确定
</view>
</view>
<view
class=
"select-box"
>
<picker-view
class=
"picker-view"
indicator-style=
"height: 42px;"
v-model=
"durationIndex"
<picker-view
class=
"picker-view"
indicator-style=
"height: 42px;"
:immediate-change=
"true"
v-model=
"durationIndex"
@
change=
"onBindDuratin"
>
<picker-view-column>
<view
class=
"item"
v-for=
"(item,index) in hourList"
:key=
"index"
>
...
...
@@ -695,7 +695,7 @@
start
+=
24
this
.
setStartTime
.
days
=
1
}
if
(
end
<
start
)
{
if
(
end
<
=
start
)
{
end
+=
24
}
// 重新将数据还原到元数据
...
...
@@ -842,7 +842,7 @@
h
=
val
+
duration
}
this
.
endTime
=
`
${
h
>=
10
?
h
:
'0'
+
h
}
:
${
startM
}
`
;
this
.
endTime
=
`
${
h
>=
10
?
h
:
'0'
+
h
}
:
${
startM
>=
10
?
startM
:
'0'
+
startM
}
`
;
this
.
dateObj
=
this
.
onSetDateTime
(
this
.
startTime
,
this
.
endTime
);
let
showHourUse
=
false
;
this
.
intervalList
=
this
.
intervalList
.
map
((
item
,
index
)
=>
{
...
...
@@ -979,7 +979,7 @@
this
.
onOrderCreate
()
},
complete
:
(
res
)
=>
{
console
.
log
(
res
,
909090
)
}
})
},
...
...
@@ -1108,11 +1108,11 @@
title
:
'当前时段不可选'
})
}
else
{
this
.
startTime
=
`
${
i
}
:
${
mTime
}
`
;
this
.
startTime
=
`
${
i
>=
10
?
i
:
'0'
+
i
}
:
${
mTime
>=
10
?
mTime
:
'0'
+
mTime
}
`
;
this
.
onSetEndTime
()
}
}
else
{
this
.
startTime
=
`
${
i
}
:00`
;
this
.
startTime
=
`
${
i
>=
10
?
i
:
'0'
+
i
}
:00`
;
this
.
onSetEndTime
()
}
}
...
...
@@ -1126,7 +1126,7 @@
let
startArr
=
startTime
.
split
(
":"
)
let
endArr
=
endTime
.
split
(
":"
)
obj
.
startDate
=
`
${
this
.
dateList
[
this
.
dateIndex
].
readDate
}
${
startTime
}
:00`
if
(
Number
(
endArr
[
0
])
<
Number
(
startArr
[
0
]))
{
if
(
Number
(
endArr
[
0
])
<
=
Number
(
startArr
[
0
]))
{
obj
.
endDate
=
`
${
moment
(
this
.
dateList
[
this
.
dateIndex
].
readDate
).
add
(
1
,
"days"
).
format
(
"YYYY-MM-DD"
)}
${
endTime
}
:00`
}
else
{
...
...
pages/orderRecord/orderRecord.vue
View file @
d4f8883b
...
...
@@ -53,11 +53,11 @@
<view
class=
"flex-col part-2"
>
<view
class=
"flex-row"
>
<text
class=
"text-title"
>
预约开始时间
</text>
<text
class=
"text-title"
>
{{
item
.
preStartDate
+
':00'
}}
</text>
<text
class=
"text-title"
>
{{
item
.
preStartDate
}}
</text>
</view>
<view
class=
"flex-row "
>
<text
class=
"text-title"
>
预约结束时间
</text>
<text
class=
"text-title"
>
{{
item
.
preEndDate
+
':00'
}}
</text>
<text
class=
"text-title"
>
{{
item
.
preEndDate
}}
</text>
</view>
</view>
</view>
...
...
@@ -85,11 +85,11 @@
</view>
<view
v-if=
"item.startDate"
class=
"flex-between part-1"
>
<text
class=
"text-gray"
>
开始时间:
</text>
<text
class=
"text-title"
>
{{
item
.
startDate
}}
:00
</text>
<text
class=
"text-title"
>
{{
item
.
startDate
}}
</text>
</view>
<view
v-if=
"item.endDate"
class=
"flex-between part-1"
>
<text
class=
"text-gray"
>
结束时间:
</text>
<text
class=
"text-title"
>
{{
item
.
endDate
}}
:00
</text>
<text
class=
"text-title"
>
{{
item
.
endDate
}}
</text>
</view>
<!--
<view
class=
"flex-between part-1"
>
<text
class=
"text-gray"
>
订单总计:
</text>
...
...
@@ -289,9 +289,9 @@ import NoLogin from "@/components/noLogin/noLogin"
}
.room-image-box
{
width
:
100%
;
height
:
2
4
0
upx
;
height
:
2
0
0
upx
;
.img-box{
width
:
2
0
0
upx
;
width
:
2
4
0
upx
;
height
:
100%
;
image{
height
:
100%
;
...
...
pages/orderResult/orderResult.vue
View file @
d4f8883b
...
...
@@ -43,12 +43,12 @@
<text
class=
"text-title "
>
{{
orderInfo
.
updateTime
||
orderInfo
.
createTime
||
'-'
}}
</text>
</view>
<view
class=
"info"
>
<text
class=
"text-title text-bold"
>
预约
开始时间:
</text>
<text
class=
"text-title "
>
{{
orderInfo
.
preStartDate
||
'00:00'
}}
:00
</text>
<text
class=
"text-title text-bold"
>
开始时间:
</text>
<text
class=
"text-title "
>
{{
orderInfo
.
preStartDate
||
'00:00'
}}
</text>
</view>
<view
class=
"info"
>
<text
class=
"text-title text-bold"
>
预约
结束时间:
</text>
<text
class=
"text-title "
>
{{
orderInfo
.
preEndDate
||
'00:00'
}}
:00
</text>
<text
class=
"text-title text-bold"
>
结束时间:
</text>
<text
class=
"text-title "
>
{{
orderInfo
.
preEndDate
||
'00:00'
}}
</text>
</view>
</view>
</view>
...
...
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