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
6782c18a
Commit
6782c18a
authored
Apr 08, 2021
by
qzhxx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
‘审核
parent
03b2e22c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
302 additions
and
242 deletions
+302
-242
index.vue
src/page/check/display/index.vue
+38
-7
details.vue
src/page/check/learn/details.vue
+4
-4
index.vue
src/page/check/learn/index.vue
+37
-3
index.vue
src/page/check/video/index.vue
+222
-227
add.vue
src/page/content/video/content/add.vue
+1
-1
No files found.
src/page/check/display/index.vue
View file @
6782c18a
...
...
@@ -65,7 +65,11 @@
<el-table-column
label=
"展板名称"
prop=
"name"
></el-table-column>
<el-table-column
label=
"提交人"
prop=
"userName"
></el-table-column>
<el-table-column
label=
"提交日期"
prop=
"createTime"
></el-table-column>
<el-table-column
label=
"审核项"
prop=
"operation"
></el-table-column>
<el-table-column
label=
"审核项"
prop=
"operation"
>
<template
slot-scope=
"scope"
>
<span
class=
"input-item"
>
{{
keyMap
[
scope
.
row
.
operation
]
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"审核状态"
prop=
"status"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.status === 'TBC'"
>
待初审
</span>
...
...
@@ -89,12 +93,8 @@
</el-table-column>
<el-table-column
label=
"审核"
header-align=
"center"
align=
"center"
>
<
template
slot-scope=
"scope"
width=
"220"
>
<div
class=
"table-btn-group"
>
<!--
<el-tooltip
content=
"详情"
placement=
"top"
>
<el-button
circle
@
click=
"learnDetails(scope.row)"
>
<i
class=
"icon-table icon-detail"
></i>
</el-button>
</el-tooltip>
-->
<!--
<div
class=
"table-btn-group"
>
<el-tooltip
content=
"通过"
placement=
"top"
>
<el-button
circle
@
click=
"adopt(scope.row)"
>
<i
class=
"icon-table icon-enable"
></i>
...
...
@@ -105,6 +105,26 @@
<i
class=
"icon-table icon-disable"
></i>
</el-button>
</el-tooltip>
</div>
-->
<div
class=
"table-btn-group"
>
<el-button
round
class=
"passed"
:disabled=
"
scope.row.status === 'REFUSED' ||
scope.row.status === 'APPROVED_FINAL'
"
@
click=
"adopt(scope.row)"
>
通过
</el-button>
<el-button
round
class=
"rejected"
:disabled=
"
scope.row.status === 'REFUSED' ||
scope.row.status === 'APPROVED_FINAL'
"
@
click=
"reject(scope.row)"
>
驳回
</el-button>
</div>
</
template
>
</el-table-column>
...
...
@@ -237,7 +257,18 @@ export default {
}
}
};
const
keyMap
=
{
ADD
:
"新增"
,
EDIT
:
"修改"
,
REMOVE
:
"删除"
,
DISABLE
:
"禁用"
,
ENABLE
:
"启用"
,
UPPER
:
"上架"
,
LOWER
:
"下架"
};
return
{
keyMap
:
keyMap
,
type
:
true
,
value1
:
""
,
page
:
{
currentPage
:
1
,
pageSize
:
10
,
total
:
0
},
...
...
src/page/check/learn/details.vue
View file @
6782c18a
...
...
@@ -28,17 +28,17 @@
:model=
"formInline"
label-position=
"top"
>
<el-form-item
label=
"展板宣传图"
>
<el-form-item
label=
"展板宣传图"
class=
"w100"
>
<img
class=
"imgSize"
:src=
"item.cover"
alt
/>
</el-form-item>
<el-form-item
label=
"展板版权方"
>
<el-form-item
label=
"展板版权方"
class=
"w50"
>
<span>
{{
item
.
boardCopyrightOwnerName
}}
</span>
</el-form-item>
<el-form-item
label=
"展板名称"
class=
"w50"
>
<el-form-item
label=
"展板名称"
>
<span>
{{
item
.
name
}}
</span>
</el-form-item>
<el-form-item
label=
"展板简介"
>
<el-form-item
label=
"展板简介"
class=
"w100"
>
<span>
{{
item
.
remarks
}}
</span>
</el-form-item>
<el-form-item
label=
"展板视频"
class=
"w100"
>
...
...
src/page/check/learn/index.vue
View file @
6782c18a
...
...
@@ -47,7 +47,11 @@
<el-table-column
label=
"学习内容名称"
prop=
"name"
></el-table-column>
<el-table-column
label=
"提交人"
prop=
"userName"
></el-table-column>
<el-table-column
label=
"提交日期"
prop=
"createTime"
></el-table-column>
<el-table-column
label=
"审核项"
prop=
"operation"
></el-table-column>
<el-table-column
label=
"审核项"
prop=
"operation"
>
<template
slot-scope=
"scope"
>
<span
class=
"input-item"
>
{{
keyMap
[
scope
.
row
.
operation
]
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"审核状态"
prop=
"status"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.status === 'TBC'"
>
待初审
</span>
...
...
@@ -69,7 +73,27 @@
</el-table-column>
<el-table-column
label=
"审核"
header-align=
"center"
align=
"center"
>
<
template
slot-scope=
"scope"
width=
"220"
>
<div
class=
"table-btn-group"
>
<div
class=
"table-btn-group"
>
<el-button
round
class=
"passed"
:disabled=
"
scope.row.status === 'REFUSED' ||
scope.row.status === 'APPROVED_FINAL'
"
@
click=
"adopt(scope.row)"
>
通过
</el-button>
<el-button
round
class=
"rejected"
:disabled=
"
scope.row.status === 'REFUSED' ||
scope.row.status === 'APPROVED_FINAL'
"
@
click=
"reject(scope.row)"
>
驳回
</el-button>
</div>
<!--
<div
class=
"table-btn-group"
>
<el-tooltip
content=
"通过"
placement=
"top"
>
<el-button
circle
@
click=
"adopt(scope.row)"
>
<i
class=
"icon-table icon-enable"
></i>
...
...
@@ -80,7 +104,7 @@
<i
class=
"icon-table icon-disable"
></i>
</el-button>
</el-tooltip>
</div>
</div>
-->
</
template
>
</el-table-column>
</el-table>
...
...
@@ -172,8 +196,18 @@ export default {
callback
();
}
}
};
const
keyMap
=
{
ADD
:
"新增"
,
EDIT
:
"修改"
,
REMOVE
:
"删除"
,
DISABLE
:
"禁用"
,
ENABLE
:
"启用"
,
UPPER
:
"上架"
,
LOWER
:
"下架"
};
return
{
keyMap
:
keyMap
,
type
:
true
,
value1
:
""
,
page
:
{
currentPage
:
1
,
pageSize
:
10
,
total
:
0
},
...
...
src/page/check/video/index.vue
View file @
6782c18a
This diff is collapsed.
Click to expand it.
src/page/content/video/content/add.vue
View file @
6782c18a
...
...
@@ -246,7 +246,7 @@ export default {
console
.
log
(
data
)
console
.
log
(
this
.
ruleForm
.
videoContentCatId
)
},
// 获取
版权方详情
// 获取
信息
getInfo
(
id
)
{
let
vm
=
this
;
vm
.
$https
(
...
...
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