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
e05f101f
Commit
e05f101f
authored
Oct 15, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
7781e98d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
443 additions
and
9 deletions
+443
-9
addimageText.vue
src/pages/teacher/contribution/addimageText.vue
+132
-9
contributionUE.vue
src/pages/teacher/contribution/ue/contributionUE.vue
+311
-0
No files found.
src/pages/teacher/contribution/addimageText.vue
View file @
e05f101f
<
style
>
.addimageText
{
width
:
100%
;
height
:
100%
;
margin
:
15px
;
display
:
flex
;
}
.box_l
{
width
:
400px
;
}
.box_l_center
{
width
:
370px
;
margin-left
:
15px
;
border-radius
:
5px
;
}
.box_r
{
flex
:
1
;
width
:
1px
;
background
:
#FFF
;
border-radius
:
9px
;
padding
:
15px
;
margin-right
:
30px
;
}
.appmsg_account
{
background-color
:
#fff
;
padding
:
10px
15px
;
display
:
flex
;
align-items
:
center
;
border-radius
:
5px
5px
0
0
;
}
.appmsg_one
{
width
:
100%
;
height
:
143px
;
position
:
relative
;
background
:
#999
;
color
:
#FFF
;
}
.appmsg_two
{
width
:
100%
;
height
:
72px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
padding
:
0
15px
;
}
</
style
>
<
template
>
<
template
>
<div
class=
"page-body"
>
<div
class=
"addimageText"
>
124
<div
class=
"box_l"
>
<div
class=
"box_l_center"
>
<div
class=
"appmsg_account"
>
<img
style=
"width: 24px;height: 24px;border-radius: 50%;margin-right: 10px;"
src=
"http://wx.qlogo.cn/mmopen/B2EfAOZfS1hP0WNR9tGwEFJibrib3NcWYd4VXF10YAia2Fy6OmkzicpibHmabNRic4Yqj9wtImErdG3picwY3ia3AjVoZaBZAFQTnBJl/64"
alt=
""
>
赞羊生活
</div>
<div
class=
"appmsg"
v-for=
"(x,y) in list"
:key=
'y'
:style=
"
{border:x.Id==select?'2px solid #07c160':''}"
@click="select=x.Id">
<div
class=
"appmsg_one"
v-if=
"y==0"
>
<span>
{{
x
.
Name
!=
''
?
x
.
Name
:
'标题'
}}
</span>
</div>
<div
class=
"appmsg_two"
v-if=
"y!=0"
>
<span>
{{
x
.
Name
!=
''
?
x
.
Name
:
'标题'
}}
</span>
</div>
</div>
</div>
</div>
<div
class=
"box_r"
>
<div
style=
"width: 100%;display: flex;align-items: center;justify-content: center;"
>
<q-btn-group
push
>
<q-btn-dropdown
push
label=
"图片"
>
<q-list>
<q-item
clickable
v-close-popup
@
click=
"onItemClick"
>
本地上传
</q-item>
<q-item
clickable
v-close-popup
@
click=
"onItemClick"
>
从图片库选择
</q-item>
</q-list>
</q-btn-dropdown>
<q-btn
push
label=
"视频"
/>
<q-btn
push
label=
"音频"
/>
<q-btn
push
label=
"超链接"
/>
<q-btn
push
label=
"小程序"
/>
</q-btn-group>
</div>
<q-input
clearable
standout=
"bg-primary text-white"
v-model=
"Name"
label=
"标题"
maxlength=
"64"
/>
<q-input
clearable
standout=
"bg-primary text-white"
v-model=
"author"
label=
"作者"
maxlength=
"8"
style=
"margin-top: 20px;"
/>
<contributionUE
:config=
"config"
ref=
"UE_Title"
></contributionUE>
<!--
<template
id=
"app-rich-text"
>
<div
class=
"app-rich-text"
>
<textarea
style=
"width: 100%"
:id=
"id"
></textarea>
</div>
</
template
>
-->
</div>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
contributionUE
from
'./ue/contributionUE'
export
default
{
export
default
{
meta
:
{
meta
:
{
title
:
"新增/修改图文"
title
:
"新增/修改图文"
},
},
components
:
{
contributionUE
,
},
data
()
{
data
()
{
return
{
return
{
select
:
1
,
list
:
[{
Id
:
1
,
Name
:
''
},
{
Id
:
2
,
Name
:
'23'
}],
Name
:
''
,
author
:
''
,
config
:
{
initialFrameWidth
:
null
,
initialFrameHeight
:
300
,
},
attachmentDialogVisible
:
false
,
//上传附件弹窗
id
:
'app-rich-text-'
+
(
Math
.
floor
((
Math
.
random
()
*
10000
)
+
1
)),
ue
:
null
,
tempContent
:
this
.
value
,
isInputChange
:
false
,
uploadType
:
"1"
,
//1-上传图片,2-上传附件,3-上传音频
//默认图片域名
defaultImgDomain
:
"https://imgfile.oytour.com/static/"
,
ViewDomain
:
""
,
}
}
},
},
...
@@ -21,11 +145,10 @@
...
@@ -21,11 +145,10 @@
},
},
methods
:
{
methods
:
{
onItemClick
()
{
}
}
}
}
}
</
script
>
</
script
>
\ No newline at end of file
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
\ No newline at end of file
src/pages/teacher/contribution/ue/contributionUE.vue
0 → 100644
View file @
e05f101f
This diff is collapsed.
Click to expand it.
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