Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jijin
/
dance-pc
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
a8ca2925
authored
2024-06-02 20:49:02 +0800
by
杨炀
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge commit '
f36e496e
' into dev
2 parents
5184986e
f36e496e
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
7 deletions
src/viewsPc/booking/component/makeUpCalendar.vue
src/viewsPc/booking/component/photoGraphyCalendar.vue
src/viewsPc/booking/makeUpDetail.vue
src/viewsPc/booking/makeUpOrder.vue
src/viewsPc/booking/photographyDetail.vue
src/viewsPc/booking/photographyOrder.vue
src/viewsPc/seat/utils/request.js
src/viewsPc/booking/component/makeUpCalendar.vue
View file @
a8ca292
...
...
@@ -139,6 +139,7 @@ function getData(){
}
else
{
currentDate
.
value
=
currentDate1
.
value
=
query
.
value
.
currentDate
=
dayjs
(
toDay
).
format
(
'YYYY-MM-DD'
)
}
calendarRange
.
value
=
[
dayjs
(
currentDate
.
value
).
toDate
(),(
dayjs
(
currentDate
.
value
).
toDate
())]
}
function
getScheduleList
()
{
...
...
src/viewsPc/booking/component/photoGraphyCalendar.vue
View file @
a8ca292
...
...
@@ -98,6 +98,7 @@ import * as booking from "@/apiPc/booking"
import
{
useStorage
}
from
"@vueuse/core/index"
;
import
useUserStore
from
"/@/store/modules/user"
;
import
{
getActivityPhotoVoListByShootId
,
getBaseInfoByActiveId
}
from
"@/apiPc/booking"
;
import
{
ElMessageBox
}
from
'element-plus'
const
user
=
useUserStore
().
user
const
language
=
useStorage
(
'language'
,
0
)
...
...
@@ -137,6 +138,7 @@ function getData(){
}
else
{
currentDate1
.
value
=
query
.
value
.
currentDate
=
dayjs
(
toDay
).
format
(
'YYYY-MM-DD'
)
}
calendarRange
.
value
=
[
dayjs
(
currentDate1
.
value
).
toDate
(),(
dayjs
(
currentDate1
.
value
).
toDate
())]
}
...
...
src/viewsPc/booking/makeUpDetail.vue
View file @
a8ca292
...
...
@@ -31,7 +31,7 @@
</el-row>
<div
style=
"display: flex"
>
<div
class=
"title"
>
工作室简介:
</div>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
.
value
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
v-html=
"form.introduction"
></div>
</div>
</el-card>
...
...
@@ -273,7 +273,7 @@ function getData() {
}
.oddmb
:nth-child
(
2
)
{
margin-bottom
:
20px
;}
.title
{
width
:
1
2
0px
;
width
:
1
3
0px
;
font-weight
:
500
;
font-size
:
18px
;
}
...
...
src/viewsPc/booking/makeUpOrder.vue
View file @
a8ca292
...
...
@@ -243,7 +243,7 @@ function submit() {
ElMessage
.
warning
(
language
.
value
==
0
?
'无可预订的时间'
:
'No booking time available'
)
}
}).
catch
(
err
=>
{
ElMessage
.
warning
(
language
.
value
==
0
?
'无可预订的时间'
:
'No booking time available'
)
//
ElMessage.warning(language.value == 0 ? '无可预订的时间' : 'No booking time available')
})
})
...
...
src/viewsPc/booking/photographyDetail.vue
View file @
a8ca292
...
...
@@ -30,7 +30,7 @@
{{
form
.
remarks
}}
</el-row>
<div
style=
"display: flex"
>
<div
class=
"title"
>
工作室简介:
</div>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
.
value
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
v-html=
"form.introduction"
></div>
</div>
</el-card>
...
...
@@ -285,7 +285,7 @@ function getData() {
}
.oddmb
:nth-child
(
2
)
{
margin-bottom
:
20px
;}
.title
{
width
:
1
2
0px
;
width
:
1
3
0px
;
font-weight
:
500
;
font-size
:
18px
;
}
...
...
src/viewsPc/booking/photographyOrder.vue
View file @
a8ca292
...
...
@@ -236,7 +236,7 @@ function submit() {
ElMessage
.
warning
(
language
.
value
==
0
?
'无可预订的时间'
:
'No booking time available'
)
}
}).
catch
(
err
=>
{
ElMessage
.
warning
(
language
.
value
==
0
?
'无可预订的时间'
:
'No booking time available'
)
//
ElMessage.warning(language.value == 0 ? '无可预订的时间' : 'No booking time available')
})
})
...
...
src/viewsPc/seat/utils/request.js
View file @
a8ca292
...
...
@@ -8,7 +8,7 @@ import { ElMessage } from "element-plus";
import
{
useStorage
}
from
"@vueuse/core/index"
;
const
language
=
useStorage
(
"language"
,
0
);
const
baseURL
=
"https://
radv4.gitliuyi.top
/ticket"
;
//"http://book.xiaojinyu.games"; // 这里填入你的基础 API URL
const
baseURL
=
"https://
jijin.wtwuxicenter.com
/ticket"
;
//"http://book.xiaojinyu.games"; // 这里填入你的基础 API URL
const
timeout
=
15000
;
// 请求超时时间
const
http
=
axios
.
create
({
...
...
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