Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
N
national_museum_vod
Project
Project
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
qzhxx
national_museum_vod
Commits
4529986f
Commit
4529986f
authored
Apr 07, 2021
by
xulili
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://111.203.232.171:8888/qzhxx/national_museum_vod
into dev_xll
parents
0c42f0dd
3c00a481
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
28 additions
and
20 deletions
+28
-20
addDialog.vue
src/page/STB/appversion/components/addDialog.vue
+0
-1
detailDialog.vue
src/page/STB/appversion/components/detailDialog.vue
+1
-2
index.vue
src/page/STB/appversion/index.vue
+1
-1
dialog.vue
src/page/STB/base/components/dialog.vue
+0
-1
index.vue
src/page/STB/base/index.vue
+1
-1
index.vue
src/page/STB/interactive/index.vue
+13
-5
index.vue
src/page/STB/operation/index.vue
+0
-1
index.vue
src/page/STB/pageCustom/index.vue
+5
-5
details.vue
src/page/content/display/content/details.vue
+6
-1
index.vue
src/page/content/video/content/index.vue
+1
-2
No files found.
src/page/STB/appversion/components/addDialog.vue
View file @
4529986f
...
...
@@ -160,7 +160,6 @@ export default {
</
script
>
<
style
lang=
"less"
>
@import "~@/style/dialog.less";
.version-add {
.el-upload-dragger {
height: 120px;
...
...
src/page/STB/appversion/components/detailDialog.vue
View file @
4529986f
...
...
@@ -31,7 +31,7 @@
</el-form>
</div>
<div
slot=
"footer"
class=
"dialog-footer btn-group"
>
<el-button
size=
"mini"
type=
"primary"
@
click=
"close()"
>
确定
</el-button>
<el-button
size=
"mini"
type=
"primary"
@
click=
"close()"
>
关 闭
</el-button>
</div>
</el-dialog>
</
template
>
...
...
@@ -58,7 +58,6 @@ export default {
</
script
>
<
style
lang=
"less"
>
@import "~@/style/dialog.less";
.version-detail {
.input-item {
font-size: 16px;
...
...
src/page/STB/appversion/index.vue
View file @
4529986f
...
...
@@ -71,7 +71,7 @@
</el-button>
</el-tooltip>
<el-tooltip
content=
"启用"
placement=
"top"
>
<el-button
circle
@
click=
"ableBtn(scope.row)"
>
<el-button
circle
:disabled=
"!!scope.row.isCurrent"
@
click=
"ableBtn(scope.row)"
>
<i
class=
"icon-table icon-enable"
></i>
</el-button>
</el-tooltip>
...
...
src/page/STB/base/components/dialog.vue
View file @
4529986f
...
...
@@ -135,5 +135,4 @@ export default {
</
script
>
<
style
lang=
"less"
>
@import "~@/style/dialog.less";
</
style
>
\ No newline at end of file
src/page/STB/base/index.vue
View file @
4529986f
...
...
@@ -147,5 +147,5 @@ export default {
};
</
script
>
<
style
lang=
"less"
>
@import "~@/style/table.less";
//
@import "~@/style/table.less";
</
style
>
\ No newline at end of file
src/page/STB/interactive/index.vue
View file @
4529986f
...
...
@@ -47,7 +47,10 @@
<h5
class=
"title"
>
{{
item
.
boardName
}}
</h5>
<p>
{{
item
.
content
||
'暂无内容'
}}
</p>
<div
class=
"img-box"
v-if=
"item.images.length"
>
<img
v-for=
"(j, idx) in item.images"
:src=
"j"
:key=
"idx"
alt=
""
/>
<a
target=
"_blank"
v-for=
"(j, idx) in item.images"
:key=
"idx"
:href=
"j.url"
>
<img
:src=
"j.cover"
alt=
""
/>
</a>
<!--
<img
v-for=
"(j, idx) in item.images"
:src=
"j"
:key=
"idx"
alt=
""
/>
-->
</div>
<div
class=
"img-box"
v-if=
"!item.images.length"
>
暂无数据
</div>
<div
class=
"author"
>
...
...
@@ -126,14 +129,20 @@ export default {
vm
.
tableData
.
forEach
((
item
)
=>
{
item
.
images
=
item
.
images
?
item
.
images
.
split
(
","
)
:
[];
item
.
images
.
forEach
((
result
,
index
)
=>
{
item
.
images
[
index
]
=
{
url
:
result
}
if
(
/
\.(
MP4|mp4
)
/
.
test
(
result
))
{
item
.
images
[
index
]
=
require
(
"@/assets/video-icon.png"
);
item
.
images
[
index
]
.
cover
=
require
(
"@/assets/video-icon.png"
);
}
else
if
(
/
\.(
MP3|mp3
)
/
.
test
(
result
))
{
item
.
images
[
index
]
=
require
(
"@/assets/audio-icon.png"
);
item
.
images
[
index
].
cover
=
require
(
"@/assets/audio-icon.png"
);
}
else
if
(
/
\.(
jpg|png|jpeg|bmp|gif
)
/
.
test
(
result
))
{
item
.
images
[
index
].
cover
=
result
;
}
else
{
item
.
images
[
index
].
cover
=
require
(
"@/assets/default-img.jpeg"
);;
}
});
});
vm
.
tableData
=
[...
vm
.
tableData
];
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
...
...
@@ -181,7 +190,6 @@ export default {
};
</
script
>
<
style
lang=
"less"
>
@import "~@/style/pagination.less";
.interactive-wrapper {
display: flex;
.tree-box {
...
...
src/page/STB/operation/index.vue
View file @
4529986f
...
...
@@ -192,5 +192,4 @@ export default {
</
script
>
<
style
lang=
"less"
>
@import "~@/style/table.less";
@import "~@/style/pagination.less";
</
style
>
\ No newline at end of file
src/page/STB/pageCustom/index.vue
View file @
4529986f
...
...
@@ -70,8 +70,8 @@
</div>
</div>
<div
class=
"btn-group footer-btn"
>
<el-button
size=
"mini"
@
click=
"close"
>
取 消
</el-button>
<el-button
size=
"mini"
type=
"primary"
@
click=
"submitForm('editform')"
<el-button
@
click=
"close"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm('editform')"
>
确定
</el-button
>
</div>
...
...
@@ -234,8 +234,8 @@ export default {
},
// 修改当前项
submitForm
()
{
this
.
updateCurrent
(
this
.
pageList
[
vm
.
radioPage
].
id
,
"tAppDirPic/update"
);
this
.
updateCurrent
(
this
.
runList
[
vm
.
radioRun
].
id
,
"tAppRunPic/update"
);
vm
.
radioPage
&&
this
.
updateCurrent
(
this
.
pageList
[
vm
.
radioPage
].
id
,
"tAppDirPic/update"
);
vm
.
radioRun
&&
this
.
updateCurrent
(
this
.
runList
[
vm
.
radioRun
].
id
,
"tAppRunPic/update"
);
},
updateCurrent
(
id
,
url
)
{
let
vm
=
this
;
...
...
@@ -406,7 +406,7 @@ export default {
padding-top: 20px;
border-top: 1px solid #eee;
.el-button {
padding: 0 2
0px;
width: 16
0px;
}
}
}
...
...
src/page/content/display/content/details.vue
View file @
4529986f
...
...
@@ -203,7 +203,12 @@ export default {
id
:
""
,
activeNames
:
[
"1"
,
"2"
,
"3"
],
keyMap
:
keyMap
,
contentData
:
{},
contentData
:
{
imagesList
:[],
dirList
:[],
videoList
:[],
audioList
:[]
},
reviewData
:
{},
};
},
...
...
src/page/content/video/content/index.vue
View file @
4529986f
...
...
@@ -189,8 +189,7 @@
</el-form>
</div>
<div
slot=
"footer"
class=
"dialog-footer btn-group"
>
<el-button
size=
"mini"
type=
"primary"
@
click=
"close"
>
确定
</el-button>
<el-button
size=
"mini"
@
click=
"close"
>
取 消
</el-button>
<el-button
size=
"mini"
type=
"primary"
@
click=
"close"
>
关 闭
</el-button>
</div>
</el-dialog>
</div>
...
...
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