Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
Overview
Overview
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
platform
hg-smart
Commits
7080e17f
Commit
7080e17f
authored
Sep 24, 2024
by
宋祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.excel文件预览调整
parent
c70c4a72
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
81 additions
and
14 deletions
+81
-14
HGWD002A.js
src/main/webapp/HG/WD/HGWD002A.js
+62
-12
HGWD002A.jsp
src/main/webapp/HG/WD/HGWD002A.jsp
+17
-0
HGWD003B.jsp
src/main/webapp/HG/WD/HGWD003B.jsp
+2
-2
xlsx.full.min.js
src/main/webapp/common/js/xlsx.full.min.js
+0
-0
No files found.
src/main/webapp/HG/WD/HGWD002A.js
View file @
7080e17f
...
@@ -142,6 +142,8 @@ function preview(docId, docType) {
...
@@ -142,6 +142,8 @@ function preview(docId, docType) {
$
(
"#descDiv"
).
css
(
'display'
,
'none'
);
$
(
"#descDiv"
).
css
(
'display'
,
'none'
);
if
(
isText
(
docType
))
{
if
(
isText
(
docType
))
{
previewText
(
docId
);
previewText
(
docId
);
}
else
if
(
isXml
(
docType
))
{
previewXml
(
docId
);
}
else
if
(
isExcel
(
docType
))
{
}
else
if
(
isExcel
(
docType
))
{
previewExcel
(
docId
);
previewExcel
(
docId
);
}
else
if
(
isWord
(
docType
))
{
}
else
if
(
isWord
(
docType
))
{
...
@@ -159,6 +161,8 @@ function preview(docId, docType) {
...
@@ -159,6 +161,8 @@ function preview(docId, docType) {
* 隐藏显示区域
* 隐藏显示区域
*/
*/
function
hideHtml
()
{
function
hideHtml
()
{
$
(
"#textContainer"
).
css
(
'display'
,
'none'
);
$
(
"#textSpan"
).
html
(
""
);
$
(
"#docxContainer"
).
css
(
'display'
,
'none'
);
$
(
"#docxContainer"
).
css
(
'display'
,
'none'
);
$
(
"#imageContainer"
).
css
(
'display'
,
'none'
);
$
(
"#imageContainer"
).
css
(
'display'
,
'none'
);
$
(
"#image"
).
attr
(
'src'
,
""
);
$
(
"#image"
).
attr
(
'src'
,
""
);
...
@@ -187,14 +191,43 @@ function isText(docType) {
...
@@ -187,14 +191,43 @@ function isText(docType) {
*/
*/
function
previewText
(
docId
)
{
function
previewText
(
docId
)
{
fetch
(
downloadHref
(
docId
,
true
)).
then
(
res
=>
{
fetch
(
downloadHref
(
docId
,
true
)).
then
(
res
=>
{
return
res
.
arrayBuffer
();
return
res
.
text
();
}).
then
(
arrayBuffer
=>
{
}).
then
(
data
=>
{
let
container
=
document
.
getElementById
(
"
descDiv
"
);
let
container
=
document
.
getElementById
(
"
textContainer
"
);
container
.
style
.
display
=
'block'
;
container
.
style
.
display
=
'block'
;
// 使用new TextDecoder()指定编码
// 使用new TextDecoder()指定编码
const
utf8Decoder
=
new
TextDecoder
(
'GBK'
,
{
ignoreBOM
:
true
});
// const utf8Decoder = new TextDecoder('UTF-8', {ignoreBOM: true});
const
decodedText
=
utf8Decoder
.
decode
(
arrayBuffer
);
// const decodedText = utf8Decoder.decode(arrayBuffer);
$
(
"#descSpan"
).
html
(
decodedText
.
replace
(
/
\r\n?
/g
,
'
\
n'
).
replace
(
/
\n
/g
,
'<br/>'
));
$
(
"#textSpan"
).
text
(
data
);
});
}
/**
* 是否文本
*
* @param fileName
* @returns {boolean}
*/
function
isXml
(
docType
)
{
if
(
isBlank
(
docType
))
{
return
false
;
}
const
extensions
=
[
'xml'
];
return
extensions
.
includes
(
docType
.
toLowerCase
());
}
/**
* xml文件预览
*
* @param docId
*/
function
previewXml
(
docId
)
{
fetch
(
downloadHref
(
docId
,
true
)).
then
(
res
=>
{
return
res
.
text
();
}).
then
(
data
=>
{
let
container
=
document
.
getElementById
(
"textContainer"
);
container
.
style
.
display
=
'block'
;
$
(
"#textSpan"
).
text
(
data
);
});
});
}
}
...
@@ -219,14 +252,31 @@ function isExcel(docType) {
...
@@ -219,14 +252,31 @@ function isExcel(docType) {
*/
*/
function
previewExcel
(
docId
)
{
function
previewExcel
(
docId
)
{
fetch
(
downloadHref
(
docId
,
true
)).
then
(
res
=>
{
fetch
(
downloadHref
(
docId
,
true
)).
then
(
res
=>
{
return
res
.
text
();
return
res
.
blob
();
}).
then
(
text
=>
{
}).
then
(
blob
=>
{
let
container
=
document
.
getElementById
(
"
descDiv
"
);
let
container
=
document
.
getElementById
(
"
textContainer
"
);
container
.
style
.
display
=
'block'
;
container
.
style
.
display
=
'block'
;
// 使用new TextDecoder()指定编码
// 使用new TextDecoder()指定编码
const
utf8Decoder
=
new
TextDecoder
(
'GBK'
,
{
ignoreBOM
:
true
});
// const utf8Decoder = new TextDecoder('GBK', {ignoreBOM: true});
const
decodedText
=
utf8Decoder
.
decode
(
arrayBuffer
);
// const text = utf8Decoder.decode(arrayBuffer);
$
(
"#descSpan"
).
html
(
decodedText
.
replace
(
/
\r\n?
/g
,
'
\
n'
).
replace
(
/
\n
/g
,
'<br/>'
));
// $("#textSpan").html(text.replace(/\r\n?/g, '\n').replace(/\n/g, '<br/>'));
const
reader
=
new
FileReader
();
reader
.
readAsArrayBuffer
(
blob
);
reader
.
onload
=
function
(
e
)
{
let
textSpan
=
document
.
getElementById
(
'textSpan'
);
// 清空内容
textSpan
.
innerHTML
=
""
;
let
result
=
new
Uint8Array
(
e
.
target
.
result
);
let
workbook
=
XLSX
.
read
(
result
,
{
type
:
'array'
});
let
sheetNames
=
workbook
.
SheetNames
;
for
(
let
i
=
0
;
i
<
sheetNames
.
length
;
i
++
)
{
// 假设我们只需要第一个工作表
var
worksheet
=
workbook
.
Sheets
[
sheetNames
[
i
]];
var
data
=
XLSX
.
utils
.
sheet_to_html
(
worksheet
);
// 在页面上显示JSON数据
textSpan
.
innerHTML
+=
data
+
"<br/>"
;
}
};
});
});
}
}
...
...
src/main/webapp/HG/WD/HGWD002A.jsp
View file @
7080e17f
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
<script
src=
"${ctx}/common/docxjs/jszip.min.js"
></script>
<script
src=
"${ctx}/common/docxjs/jszip.min.js"
></script>
<script
src=
"${ctx}/common/docxjs/docx-preview.js"
></script>
<script
src=
"${ctx}/common/docxjs/docx-preview.js"
></script>
<script
src=
"${ctx}/common/js/xlsx.full.min.js"
></script>
<style>
<style>
.left-flex
{
.left-flex
{
/*display: flex;*/
/*display: flex;*/
...
@@ -42,6 +43,18 @@
...
@@ -42,6 +43,18 @@
cursor
:
zoom-out
;
cursor
:
zoom-out
;
}
}
.textSpan
{
font-size
:
14px
;
}
.textSpan
table
{
border
:
1px
solid
black
;
}
.textSpan
table
td
{
border
:
1px
solid
black
;
}
</style>
</style>
<EF:EFPage
title=
"文件预览"
>
<EF:EFPage
title=
"文件预览"
>
<div
class=
"row"
style=
"margin: 0 -10px;"
>
<div
class=
"row"
style=
"margin: 0 -10px;"
>
...
@@ -61,6 +74,10 @@
...
@@ -61,6 +74,10 @@
<div
id=
"descDiv"
class=
"center-flex"
>
<div
id=
"descDiv"
class=
"center-flex"
>
<span
id=
"descSpan"
style=
"font-weight: bold;font-size: 18px"
>
文件预览区域...
</span>
<span
id=
"descSpan"
style=
"font-weight: bold;font-size: 18px"
>
文件预览区域...
</span>
</div>
</div>
<
%
--
文本预览
--
%
>
<div
id=
"textContainer"
class=
"center-flex"
>
<pre
id=
"textSpan"
class=
"textSpan"
></pre>
</div>
<
%
--
docx
文件预览
--
%
>
<
%
--
docx
文件预览
--
%
>
<div
id=
"docxContainer"
style=
"display: none;"
></div>
<div
id=
"docxContainer"
style=
"display: none;"
></div>
<
%
--
IMAGE
文件预览
--
%
>
<
%
--
IMAGE
文件预览
--
%
>
...
...
src/main/webapp/HG/WD/HGWD003B.jsp
View file @
7080e17f
...
@@ -18,8 +18,8 @@
...
@@ -18,8 +18,8 @@
<EF:EFGrid
blockId=
"result"
autoDraw=
"override"
checkMode=
"row"
height=
"69vh"
>
<EF:EFGrid
blockId=
"result"
autoDraw=
"override"
checkMode=
"row"
height=
"69vh"
>
<EF:EFColumn
ename=
"fileId"
cname=
"目录ID"
hidden=
"true"
primaryKey=
"true"
/>
<EF:EFColumn
ename=
"fileId"
cname=
"目录ID"
hidden=
"true"
primaryKey=
"true"
/>
<EF:EFColumn
ename=
"projCode"
cname=
"项目编号"
enable=
"false"
width=
"120"
align=
"center"
/>
<EF:EFColumn
ename=
"projCode"
cname=
"项目编号"
enable=
"false"
width=
"120"
align=
"center"
/>
<EF:EFColumn
ename=
"projName"
cname=
"项目名称"
enable=
"false"
width=
"1
2
0"
align=
"left"
/>
<EF:EFColumn
ename=
"projName"
cname=
"项目名称"
enable=
"false"
width=
"1
8
0"
align=
"left"
/>
<EF:EFColumn
ename=
"fileName"
cname=
"目录名称"
enable=
"false"
width=
"1
2
0"
align=
"left"
/>
<EF:EFColumn
ename=
"fileName"
cname=
"目录名称"
enable=
"false"
width=
"1
8
0"
align=
"left"
/>
</EF:EFGrid>
</EF:EFGrid>
</EF:EFRegion>
</EF:EFRegion>
</EF:EFPage>
</EF:EFPage>
src/main/webapp/common/js/xlsx.full.min.js
0 → 100644
View file @
7080e17f
File added
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