Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pptist
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
viitto
pptist
Commits
b8afd873
Commit
b8afd873
authored
Aug 09, 2024
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
上传图 多选
parent
53372ede
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
816 additions
and
27 deletions
+816
-27
CloudDiskList.vue
src/components/CloudDisk/CloudDiskList.vue
+16
-11
diskSpace.vue
src/components/CloudDisk/diskSpace.vue
+774
-0
index.vue
src/components/CloudDisk/index.vue
+19
-15
FileInput.vue
src/components/FileInput.vue
+2
-0
UploadPicture.vue
src/views/Editor/CanvasTool/UploadPicture.vue
+5
-1
No files found.
src/components/CloudDisk/CloudDiskList.vue
View file @
b8afd873
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
</
template
>
</
template
>
</el-input>
</el-input>
</div>
</div>
<FileInput
@
change=
"files => insertImageElement(files)"
>
<FileInput
:multiple=
"true"
@
change=
"files => insertImageElement(files)"
>
<el-button
icon=
"Plus"
class=
"ppt-button text-normal"
type=
"primary"
>
图片
</el-button>
<el-button
icon=
"Plus"
class=
"ppt-button text-normal"
type=
"primary"
>
图片
</el-button>
</FileInput>
</FileInput>
</div>
</div>
...
@@ -409,6 +409,7 @@
...
@@ -409,6 +409,7 @@
layoutType
.
value
.
forEach
(
x
=>
{
layoutType
.
value
.
forEach
(
x
=>
{
if
(
x
.
ID
==
queryObj
.
layout
)
x
.
check
=
true
if
(
x
.
ID
==
queryObj
.
layout
)
x
.
check
=
true
})
})
const
loadingInstance
=
ref
<
any
>
(
null
)
const
positionList
=
reactive
({
const
positionList
=
reactive
({
is_show_mask
:
false
,
is_show_mask
:
false
,
...
@@ -805,18 +806,22 @@ const EditGroup = (item:any) =>{
...
@@ -805,18 +806,22 @@ const EditGroup = (item:any) =>{
}
}
const
insertImageElement
=
async
(
files
:
FileList
)
=>
{
const
insertImageElement
=
async
(
files
:
FileList
)
=>
{
let
name
=
files
[
0
].
name
.
split
(
'.'
)
loadingInstance
.
value
=
ElLoading
.
service
({
const
loadingObj
=
ElLoading
.
service
({
text
:
'收集需要处理的图片'
text
:
'正在上传图'
,
lock
:
true
})
})
const
hash
=
await
calculateFileHash
(
files
[
0
])
for
(
let
i
=
0
;
i
<
files
.
length
;
i
++
){
if
(
hash
!=
''
)
{
loadingInstance
.
value
.
text
=
`当前图片处理进度:
${
i
+
1
}
/
${
files
.
length
}
`
await
checkedUploadFileExsit
(
files
[
0
],
hash
)
let
name
=
files
[
0
].
name
.
split
(
'.'
)
}
else
{
const
hash
=
await
calculateFileHash
(
files
[
i
])
await
uoloadFileToService
(
files
[
0
])
if
(
hash
!=
''
)
{
await
checkedUploadFileExsit
(
files
[
i
],
hash
)
}
else
{
await
uoloadFileToService
(
files
[
i
])
}
}
}
loadingObj
.
close
()
loadingInstance
.
value
.
close
()
loadingInstance
.
value
=
null
}
}
const
checkedUploadFileExsit
=
async
(
file
:
File
,
hash
:
any
)
=>
{
const
checkedUploadFileExsit
=
async
(
file
:
File
,
hash
:
any
)
=>
{
let
parms
=
{
let
parms
=
{
...
...
src/components/CloudDisk/diskSpace.vue
0 → 100644
View file @
b8afd873
This diff is collapsed.
Click to expand it.
src/components/CloudDisk/index.vue
View file @
b8afd873
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
</div>
</div>
<div
ref=
"imgDiskRef"
style=
"height: 420px;padding-top: 20px;"
>
<div
ref=
"imgDiskRef"
style=
"height: 420px;padding-top: 20px;"
>
<div
class=
"CloudDisk-R-Center row"
v-loading=
"loading"
>
<div
class=
"CloudDisk-R-Center row"
v-loading=
"loading"
>
<FileInput
@
change=
"files => insertImageElement(files)"
>
<FileInput
:multiple=
"true"
@
change=
"files => insertImageElement(files)"
>
<div
class=
"CloudDisk-R-Box"
>
<div
class=
"CloudDisk-R-Box"
>
<div
class=
"CloudDisk-R-Plus column items-center cusor-pointer"
>
<div
class=
"CloudDisk-R-Plus column items-center cusor-pointer"
>
<el-icon
class=
"el-input__icon"
size=
"30px"
title=
""
>
<el-icon
class=
"el-input__icon"
size=
"30px"
title=
""
>
...
@@ -112,7 +112,7 @@
...
@@ -112,7 +112,7 @@
{{item.FileName}}
{{item.FileName}}
</el-tooltip>
</el-tooltip>
</span>
</span>
<el-popover
placement=
"top"
:width=
"230"
trigger=
"click"
>
<el-popover
placement=
"top"
:width=
"230"
trigger=
"click"
v-if=
"!isViewerShow"
>
<
template
#
reference
>
<
template
#
reference
>
<div
class=
"MoreClick row items-center"
@
click
.
stop=
"clickMore(index)"
><el-icon
size=
"13"
><MoreFilled
/></el-icon></div>
<div
class=
"MoreClick row items-center"
@
click
.
stop=
"clickMore(index)"
><el-icon
size=
"13"
><MoreFilled
/></el-icon></div>
</
template
>
</
template
>
...
@@ -257,14 +257,14 @@ const editLoading = ref(false)
...
@@ -257,14 +257,14 @@ const editLoading = ref(false)
const
ShowMessage
=
ref
(
false
)
const
ShowMessage
=
ref
(
false
)
const
currentMore
=
ref
(
0
)
const
currentMore
=
ref
(
0
)
const
errImg
=
ref
(
require
(
'@/assets/img/noImg.png'
)
as
any
)
const
errImg
=
ref
(
require
(
'@/assets/img/noImg.png'
)
as
any
)
const
loadingInstance
=
ref
<
any
>
(
null
)
const
emit
=
defineEmits
<
{
const
emit
=
defineEmits
<
{
(
event
:
'setImg'
):
void
,
(
event
:
'setImg'
):
void
,
(
event
:
'getImg'
):
void
,
(
event
:
'getImg'
):
void
,
}
>
()
}
>
()
watch
(()
=>
props
.
active
,
()
=>
{
watch
(()
=>
props
.
active
,
(
n
,
o
)
=>
{
if
(
props
.
active
!=
2
)
ImgId
.
value
=
''
if
(
props
.
active
!=
2
)
ImgId
.
value
=
''
})
})
watch
(()
=>
props
.
show
,
()
=>
{
watch
(()
=>
props
.
show
,
()
=>
{
...
@@ -317,18 +317,22 @@ const setImg = (item:any) => {
...
@@ -317,18 +317,22 @@ const setImg = (item:any) => {
}
}
const
insertImageElement
=
async
(
files
:
FileList
)
=>
{
const
insertImageElement
=
async
(
files
:
FileList
)
=>
{
let
name
=
files
[
0
].
name
.
split
(
'.'
)
loadingInstance
.
value
=
ElLoading
.
service
({
const
loadingObj
=
ElLoading
.
service
({
text
:
'收集需要处理的图片'
text
:
'正在上传图'
,
lock
:
true
})
})
const
hash
=
await
calculateFileHash
(
files
[
0
])
for
(
let
i
=
0
;
i
<
files
.
length
;
i
++
){
if
(
hash
!=
''
)
{
loadingInstance
.
value
.
text
=
`当前图片处理进度:
${
i
+
1
}
/
${
files
.
length
}
`
await
checkedUploadFileExsit
(
files
[
0
],
hash
)
let
name
=
files
[
i
].
name
.
split
(
'.'
)
}
else
{
const
hash
=
await
calculateFileHash
(
files
[
i
])
await
uoloadFileToService
(
files
[
0
])
if
(
hash
!=
''
)
{
await
checkedUploadFileExsit
(
files
[
i
],
hash
)
}
else
{
await
uoloadFileToService
(
files
[
i
])
}
}
}
loadingObj
.
close
()
loadingInstance
.
value
.
close
()
loadingInstance
.
value
=
null
}
}
const
checkedUploadFileExsit
=
async
(
file
:
File
,
hash
:
any
)
=>
{
const
checkedUploadFileExsit
=
async
(
file
:
File
,
hash
:
any
)
=>
{
let
parms
=
{
let
parms
=
{
...
@@ -464,7 +468,7 @@ const querySearchGroup = async () =>{
...
@@ -464,7 +468,7 @@ const querySearchGroup = async () =>{
if
(
loadingGroup
.
value
)
return
if
(
loadingGroup
.
value
)
return
loadingGroup
.
value
=
true
loadingGroup
.
value
=
true
try
{
try
{
le
t
datasRes
=
await
CloudDiskService
.
GetPPTCloudList
(
GName
.
value
);
cons
t
datasRes
=
await
CloudDiskService
.
GetPPTCloudList
(
GName
.
value
);
if
(
datasRes
.
data
.
resultCode
==
ApiResult
.
SUCCESS
)
{
if
(
datasRes
.
data
.
resultCode
==
ApiResult
.
SUCCESS
)
{
GroupList
.
value
=
datasRes
.
data
.
data
.
list
GroupList
.
value
=
datasRes
.
data
.
data
.
list
GroupList
.
value
.
unshift
({
GroupList
.
value
.
unshift
({
...
...
src/components/FileInput.vue
View file @
b8afd873
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
<input
<input
class=
"input"
class=
"input"
type=
"file"
type=
"file"
:multiple=
"multiple"
name=
"upload"
name=
"upload"
ref=
"inputRef"
ref=
"inputRef"
:accept=
"accept"
:accept=
"accept"
...
@@ -16,6 +17,7 @@
...
@@ -16,6 +17,7 @@
import
{
ref
}
from
'vue'
import
{
ref
}
from
'vue'
withDefaults
(
defineProps
<
{
withDefaults
(
defineProps
<
{
multiple
?:
Boolean
,
accept
?:
string
accept
?:
string
}
>
(),
{
}
>
(),
{
accept
:
'image/*'
,
accept
:
'image/*'
,
...
...
src/views/Editor/CanvasTool/UploadPicture.vue
View file @
b8afd873
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
</FileInput>
-->
</FileInput>
-->
<CloudDisk
:show=
"showVisible"
:active=
"activeName"
@
getImg=
"getImg"
></CloudDisk>
<CloudDisk
:show=
"showVisible"
:active=
"activeName"
@
getImg=
"getImg"
></CloudDisk>
</el-tab-pane>
</el-tab-pane>
<!--
<el-tab-pane
v-if=
"userInfo.it && (userInfo.ia || userInfo.ic)"
label=
"云盘空间"
name=
"5"
>
<diskSpace
:show=
"showVisible"
:active=
"activeName"
@
getImg=
"getImg"
></diskSpace>
</el-tab-pane>
-->
<el-tab-pane
label=
"平台资料库"
name=
"1"
>
<el-tab-pane
label=
"平台资料库"
name=
"1"
>
<template
v-if=
"userInfo.iv||userInfo.it"
>
<template
v-if=
"userInfo.iv||userInfo.it"
>
<el-row>
<el-row>
...
@@ -114,6 +117,7 @@ import type { PPTImageElement, SlideBackground } from '@/types/slides'
...
@@ -114,6 +117,7 @@ import type { PPTImageElement, SlideBackground } from '@/types/slides'
import
FileInput
from
'@/components/FileInput.vue'
import
FileInput
from
'@/components/FileInput.vue'
import
BuyProduct
from
'@/components/User/BuyProduct.vue'
import
BuyProduct
from
'@/components/User/BuyProduct.vue'
import
CloudDisk
from
'@/components/CloudDisk/index.vue'
import
CloudDisk
from
'@/components/CloudDisk/index.vue'
import
diskSpace
from
'@/components/CloudDisk/diskSpace.vue'
const
showVisible
=
ref
(
true
)
const
showVisible
=
ref
(
true
)
const
activeName
=
ref
(
"2"
)
const
activeName
=
ref
(
"2"
)
...
@@ -201,7 +205,7 @@ const setImgs = async () => {
...
@@ -201,7 +205,7 @@ const setImgs = async () => {
let
url
=
imgOnline
.
value
let
url
=
imgOnline
.
value
let
downloadInfo
:
any
=
{}
let
downloadInfo
:
any
=
{}
if
(
activeName
.
value
==
'1'
)
propsDatas
.
value
=
{
src
:
imgOnline
.
value
}
if
(
activeName
.
value
==
'1'
)
propsDatas
.
value
=
{
src
:
imgOnline
.
value
}
else
if
(
activeName
.
value
==
'2'
)
{
else
if
(
activeName
.
value
==
'2'
||
activeName
.
value
==
'5'
)
{
text
=
'请选择图片'
text
=
'请选择图片'
url
=
imgPath
.
value
url
=
imgPath
.
value
}
else
if
(
activeName
.
value
==
'3'
)
{
}
else
if
(
activeName
.
value
==
'3'
)
{
...
...
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