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
79b5fdfe
Commit
79b5fdfe
authored
Oct 19, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
370f05b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
7 deletions
+25
-7
ChooseImg.vue
src/pages/teacher/components/ChooseImg.vue
+4
-2
addimageText.vue
src/pages/teacher/contribution/addimageText.vue
+21
-5
No files found.
src/pages/teacher/components/ChooseImg.vue
View file @
79b5fdfe
...
...
@@ -97,7 +97,8 @@
if
(
this
.
emitmsg
&&
this
.
emitmsg
.
length
>
0
)
{
var
result
=
{
selectId
:
this
.
emitmsg
[
0
].
selectId
,
url
:
this
.
emitmsg
[
0
].
url
url
:
this
.
emitmsg
[
0
].
url
,
Name
:
this
.
emitmsg
[
0
].
MediaName
};
this
.
$emit
(
'SelectId'
,
result
)
}
...
...
@@ -131,7 +132,8 @@
console
.
log
(
item
,
'item'
);
this
.
emitmsg
.
push
({
selectId
:
item
.
Id
,
url
:
item
.
Path
url
:
item
.
Path
,
Name
:
item
.
MediaName
});
this
.
selectId
=
item
.
Id
;
},
...
...
src/pages/teacher/contribution/addimageText.vue
View file @
79b5fdfe
...
...
@@ -86,7 +86,7 @@
本地上传
</el-upload>
</q-item>
<q-item
clickable
v-close-popup
@
click=
"
onItemClick
"
>
<q-item
clickable
v-close-popup
@
click=
"
getImgChoice=true
"
>
从图片库选择
</q-item>
</q-list>
...
...
@@ -104,21 +104,24 @@
<div
style=
"margin-top: 20px;"
>
<contributionUE
:config=
"config"
ref=
"UE_cb"
></contributionUE>
</div>
</div>
<!-- 选择文件 -->
<q-dialog
title=
"选择文件"
v-model=
"getImgChoice"
width=
"1200px"
>
<ChooseImg
@
SelectId=
"SelectId"
@
closeDia=
"getImgChoice=false"
></ChooseImg>
</q-dialog>
</div>
</
template
>
<
script
>
import
contributionUE
from
'./ue/contributionUE'
import
ChooseImg
from
'../components/ChooseImg'
export
default
{
meta
:
{
title
:
"新增/修改图文"
},
components
:
{
contributionUE
,
ChooseImg
},
data
()
{
...
...
@@ -130,9 +133,10 @@
config
:
{
initialFrameWidth
:
null
,
initialFrameHeight
:
300
,
zIndex
:
99
},
importFileUrl2
:
this
.
domainManager
().
UploadFileUrl2
,
getImgChoice
:
false
}
},
...
...
@@ -140,6 +144,18 @@
},
methods
:
{
//选择图片
SelectId
(
obj
){
console
.
log
(
obj
,
'数据'
);
if
(
obj
){
let
data
=
[{
fileName
:
obj
.
Name
,
fileUrl
:
obj
.
url
}]
this
.
$refs
.
UE_cb
.
instertImage
(
data
)
this
.
getImgChoice
=
false
;
}
},
successUpload
(
file
)
{
console
.
log
(
file
,
'file'
);
if
(
file
.
Code
==
1
)
{
...
...
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