Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
0cfb94bd
Commit
0cfb94bd
authored
Aug 11, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
素材页面修改
parent
490ce2f2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
21 deletions
+15
-21
applet-form.vue
src/components/enterprise/applet-form.vue
+2
-2
imagetext-form.vue
src/components/enterprise/imagetext-form.vue
+1
-9
allmaterial.vue
src/components/enterprise/material/allmaterial.vue
+1
-1
audiomaterial.vue
src/components/enterprise/material/audiomaterial.vue
+3
-3
filematerial.vue
src/components/enterprise/material/filematerial.vue
+3
-3
textmaterial.vue
src/components/enterprise/material/textmaterial.vue
+1
-1
videomaterial.vue
src/components/enterprise/material/videomaterial.vue
+4
-2
No files found.
src/components/enterprise/applet-form.vue
View file @
0cfb94bd
...
...
@@ -20,7 +20,7 @@
border-radius
:
4px
;
}
.avatar-uploader
.el-upload
{
/*
.avatar-uploader .el-upload {
border-radius: 6px;
cursor: pointer;
width: 100%;
...
...
@@ -28,7 +28,7 @@
color: #8c939d;
position: relative;
overflow: hidden;
}
}
*/
.addDutyMain
{
display
:
inline-block
;
...
...
src/components/enterprise/imagetext-form.vue
View file @
0cfb94bd
...
...
@@ -20,15 +20,7 @@
border-radius
:
4px
;
}
.avatar-uploader
.el-upload
{
border-radius
:
6px
;
cursor
:
pointer
;
width
:
100%
;
height
:
100%
;
color
:
#8c939d
;
position
:
relative
;
overflow
:
hidden
;
}
.addDutyMain
{
display
:
inline-block
;
...
...
src/components/enterprise/material/allmaterial.vue
View file @
0cfb94bd
...
...
@@ -55,7 +55,7 @@
<q-btn
flat
size=
"xs"
icon=
"edit"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
label=
"编辑"
v-if=
"props.row.Type==1 || props.row.Type==3 || props.row.Type==6 "
@
click=
"goedit(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"
edit
"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
label=
"移动"
<q-btn
flat
size=
"xs"
icon=
"
iconfont icon-yidongdao
"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
label=
"移动"
@
click=
"plmove(props)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
class=
"q-mr-xs"
label=
"删除"
@
click=
"goDetailed(props.row,'0')"
/>
...
...
src/components/enterprise/material/audiomaterial.vue
View file @
0cfb94bd
...
...
@@ -29,9 +29,9 @@
<audio
controls=
"controls"
v-if=
'x.AudioModel && x.AudioModel.AudioPath'
style=
"margin-top: 10px;"
class=
"imgstyle"
:src=
"x.AudioModel.AudioPath"
>
</audio>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者
:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组
:
{{
x
.
MediumGroupName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
{{
x
.
AudioModel
&&
x
.
AudioModel
.
AudioName
?
x
.
AudioModel
.
AudioName
:
''
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者
:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组
:
{{
x
.
MediumGroupName
}}
</div>
</q-card-section>
</q-card>
...
...
src/components/enterprise/material/filematerial.vue
View file @
0cfb94bd
...
...
@@ -36,8 +36,9 @@
<i
v-else
class=
"iconfont icon-excel"
></i>
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组:
{{
x
.
MediumGroupName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
{{
x
.
FileModel
&&
x
.
FileModel
.
FileName
?
x
.
FileModel
.
FileName
:
''
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组:
{{
x
.
MediumGroupName
}}
</div>
</q-card-section>
</q-card>
...
...
@@ -109,7 +110,6 @@
showUpLoadFile
(
i
)
{
// 文件类型进行判断
if
(
i
.
FileName
.
substring
(
i
.
FileName
.
lastIndexOf
(
"."
)
+
1
,
...
...
src/components/enterprise/material/textmaterial.vue
View file @
0cfb94bd
...
...
@@ -31,7 +31,7 @@
<q-btn
flat
size=
"xs"
icon=
"edit"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
label=
"编辑"
@
click=
"goedits(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"
edit
"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
<q-btn
flat
size=
"xs"
icon=
"
iconfont icon-yidongdao
"
style=
"font-weight:400;color: #3FC4FF"
class=
"q-mr-xs"
label=
"移动"
@
click=
"plmove(props)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
class=
"q-mr-xs"
label=
"删除"
@
click=
"goDetailed(props.row)"
/>
...
...
src/components/enterprise/material/videomaterial.vue
View file @
0cfb94bd
...
...
@@ -27,9 +27,11 @@
<source
:src=
"x.VideoModel.VideoPath"
type=
"video/mp4"
/>
<source
:src=
"x.VideoModel.VideoPath"
type=
"video/webm"
/>
</video>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
{{
x
.
VideoModel
&&
x
.
VideoModel
.
VideoName
?
x
.
VideoModel
.
VideoName
:
''
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组:
{{
x
.
MediumGroupName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
上传者:
{{
x
.
UpdateByName
}}
</div>
<div
class=
"onetext"
style=
"margin-top: 5px;"
>
分组:
{{
x
.
MediumGroupName
}}
</div>
</q-card-section>
</q-card>
...
...
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