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
fe3c9339
authored
2024-06-03 12:16:36 +0800
by
杨炀
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge commit '
a52f048a
' into dev
2 parents
d3828c8d
a52f048a
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
13 deletions
src/viewsPc/booking/makeUpDetail.vue
src/viewsPc/booking/photographyDetail.vue
src/viewsPc/components/homeQuick.vue
src/viewsPc/match/components/quick-row.vue
src/viewsPc/seat/utils/request.js
src/viewsPc/booking/makeUpDetail.vue
View file @
fe3c933
...
...
@@ -31,7 +31,7 @@
</el-row>
<div
style=
"display: flex"
>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
.
value
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
v-html=
"form.introduction"
></div>
</div>
</el-card>
...
...
src/viewsPc/booking/photographyDetail.vue
View file @
fe3c933
...
...
@@ -30,7 +30,7 @@
{{
form
.
remarks
}}
</el-row>
<div
style=
"display: flex"
>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
.
value
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
style=
"min-width: 130px"
class=
"title"
>
{{
language
==
0
?
'工作室简介:'
:
'Studio profile:'
}}
</div>
<div
v-html=
"form.introduction"
></div>
</div>
</el-card>
...
...
src/viewsPc/components/homeQuick.vue
View file @
fe3c933
...
...
@@ -109,12 +109,23 @@ function popRemark(type) {
building
()
return
}
// if ((form.value.isJdView == 0 && type == '1')
// || (form.value.isCarView == 0 && type == '2')
// || (form.value.isFoodView == 0 && type == '3')
// || (form.value.isMealView == 0 && type == '4')
// || (form.value.isPhotoView == 0 && type == '5')
// ) {
// building()
// return
// }
if
((
form
.
value
.
isJdView
==
0
&&
type
==
'1'
)
||
(
form
.
value
.
isCarView
==
0
&&
type
==
'2'
)
||
(
form
.
value
.
isFoodView
==
0
&&
type
==
'3'
)
||
(
type
==
'2'
)
||
(
type
==
'3'
)
||
(
form
.
value
.
isMealView
==
0
&&
type
==
'4'
)
||
(
form
.
value
.
isPhotoView
==
0
&&
type
==
'5'
)
)
{
||
(
type
==
'5'
)
// || (type == '0')
)
{
building
()
return
}
...
...
src/viewsPc/match/components/quick-row.vue
View file @
fe3c933
...
...
@@ -100,7 +100,7 @@ const props = defineProps({
default
:
'0'
}
})
const
form
=
ref
(
{}
)
const
form
=
ref
()
onMounted
(()
=>
{
getBaseInfoByActiveId
(
props
.
matchId
).
then
(
res
=>
{
form
.
value
=
res
.
data
||
null
...
...
@@ -121,12 +121,23 @@ function popRemark(type) {
return
}
// if ((form.value.isJdView == 0 && type == '1')
// || (form.value.isCarView == 0 && type == '2')
// || (form.value.isFoodView == 0 && type == '3')
// || (form.value.isMealView == 0 && type == '4')
// || (type == '5' && form.value.isPhotoView == 0)
// || (type == '0')) {
// building()
// return
// }
if
((
form
.
value
.
isJdView
==
0
&&
type
==
'1'
)
||
(
form
.
value
.
isCarView
==
0
&&
type
==
'2'
)
||
(
form
.
value
.
isFoodView
==
0
&&
type
==
'3'
)
||
(
type
==
'2'
)
||
(
type
==
'3'
)
||
(
form
.
value
.
isMealView
==
0
&&
type
==
'4'
)
||
(
type
==
'5'
&&
form
.
value
.
isPhotoView
==
0
)
||
(
type
==
'0'
))
{
||
(
type
==
'5'
)
// || (type == '0')
)
{
building
()
return
}
...
...
@@ -144,7 +155,6 @@ function goBooking(n) {
switch
(
n
)
{
case
0
:
// 票务
building
()
router
.
push
({
path
:
`/booking/ticket/
${
props
.
matchId
}
`
})
break
;
case
1
:
...
...
src/viewsPc/seat/utils/request.js
View file @
fe3c933
...
...
@@ -8,7 +8,7 @@ import { ElMessage } from "element-plus";
import
{
useStorage
}
from
"@vueuse/core/index"
;
const
language
=
useStorage
(
"language"
,
0
);
const
baseURL
=
"https://
jijin.wt
wuxicenter.com/ticket"
;
//"http://book.xiaojinyu.games"; // 这里填入你的基础 API URL
const
baseURL
=
"https://
ticketh5.wdsf
wuxicenter.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