Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fj_app
Project
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
王锐
fj_app
Commits
67bcb9f7
Commit
67bcb9f7
authored
Apr 29, 2019
by
王锐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdf
parent
dc365df2
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
136 additions
and
11 deletions
+136
-11
未标题-1.psd
src/assets/img/未标题-1.psd
+0
-0
index.js
src/components/pdf/index.js
+15
-0
pdf.vue
src/components/pdf/pdf.vue
+115
-0
main.js
src/main.js
+2
-1
tonews.vue
src/views/home/tonews.vue
+4
-10
No files found.
src/assets/img/未标题-1.psd
deleted
100644 → 0
View file @
dc365df2
File deleted
src/components/pdf/index.js
0 → 100644
View file @
67bcb9f7
import
PDF
from
'./pdf'
var
$vm
export
default
{
install
(
Vue
,
options
)
{
if
(
!
$vm
)
{
const
PDFPlugin
=
Vue
.
extend
(
PDF
)
$vm
=
new
PDFPlugin
().
$mount
()
document
.
body
.
appendChild
(
$vm
.
$el
)
}
Vue
.
prototype
.
$showPDF
=
function
(
url
)
{
$vm
.
showPDF
(
url
)
}
}
}
\ No newline at end of file
src/components/pdf/pdf.vue
0 → 100644
View file @
67bcb9f7
<
template
>
<div
id=
"container"
:class=
"
{'back':isShow}">
<canvas
id=
"the-canvas"
></canvas>
<!-- / / 添加关闭pdf功能-->
<span
:class=
"
{'close':isShow}" @click="closePdf">close
</span>
<p
class=
"foot"
v-if=
"pdfDoc"
>
<Button
class=
"left"
@
click=
"onPrevPage"
v-if=
"pageNum>1"
>
上一页
</Button>
<Button
class=
"right"
@
click=
"onNextPage"
v-if=
"pageNum
<pdfDoc
.
numPages
"
>
下一页
</Button>
</p>
</div>
</
template
>
<
script
>
import
PDFJS
from
"pdfjs-dist"
;
export
default
{
data
()
{
return
{
isShow
:
false
,
//通过该属性动态添加类,让pdf显示或隐藏
pdfDoc
:
null
,
//可以打印发现是一个对象,里面有页数信息等
pageNum
:
1
,
pageRendering
:
false
,
pageNumPending
:
null
,
scale
:
0.9
};
},
methods
:
{
closePdf
()
{
this
.
isShow
=
false
;
},
showPDF
(
url
)
{
this
.
isShow
=
true
;
let
_this
=
this
;
PDFJS
.
getDocument
(
url
).
then
(
function
(
pdf
)
{
_this
.
pdfDoc
=
pdf
;
_this
.
renderPage
(
1
);
});
},
renderPage
(
num
)
{
this
.
pageRendering
=
true
;
let
_this
=
this
;
this
.
pdfDoc
.
getPage
(
num
).
then
(
function
(
page
)
{
var
viewport
=
page
.
getViewport
(
_this
.
scale
);
let
canvas
=
document
.
getElementById
(
"the-canvas"
);
canvas
.
height
=
viewport
.
height
;
canvas
.
width
=
viewport
.
width
;
// Render PDF page into canvas context
var
renderContext
=
{
canvasContext
:
canvas
.
getContext
(
"2d"
),
viewport
:
viewport
};
var
renderTask
=
page
.
render
(
renderContext
);
// Wait for rendering to finish
renderTask
.
promise
.
then
(
function
()
{
_this
.
pageRendering
=
false
;
if
(
_this
.
pageNumPending
!==
null
)
{
// New page rendering is pending
this
.
renderPage
(
_this
.
pageNumPending
);
_this
.
pageNumPending
=
null
;
}
});
});
},
queueRenderPage
(
num
)
{
if
(
this
.
pageRendering
)
{
this
.
pageNumPending
=
num
;
}
else
{
this
.
renderPage
(
num
);
}
},
onPrevPage
()
{
if
(
this
.
pageNum
<=
1
)
{
return
;
}
this
.
pageNum
--
;
this
.
queueRenderPage
(
this
.
pageNum
);
},
onNextPage
()
{
if
(
this
.
pageNum
>=
this
.
pdfDoc
.
numPages
)
{
return
;
}
this
.
pageNum
++
;
this
.
queueRenderPage
(
this
.
pageNum
);
}
}
};
</
script
>
<
style
scoped=
""
type=
"text/css "
>
.back
{
background-color
:
rgba
(
0
,
0
,
0
,
0.788
);
position
:
fixed
;
width
:
100%
;
height
:
100%
;
top
:
0
;
left
:
0
;
text-align
:
center
;
padding
:
20px
;
z-index
:
100
;
overflow
:
scroll
;
}
.close
{
position
:
absolute
;
right
:
20px
;
top
:
20px
;
z-index
:
200
;
color
:
#fff
;
cursor
:
pointer
;
}
.foot
{
position
:
absolute
;
bottom
:
50px
;
left
:
50%
;
transform
:
translate
(
-50%
,
0
);
}
</
style
>
\ No newline at end of file
src/main.js
View file @
67bcb9f7
...
...
@@ -6,7 +6,8 @@ import {
// import 'Components'// 全局组件注册
import
$
from
"jquery"
import
pdf
from
'./components/pdf'
Vue
.
use
(
pdf
)
// import mui from './assets/js/mui.min.js'
// Vue.prototype.$mui = mui;
import
"Directives"
;
...
...
src/views/home/tonews.vue
View file @
67bcb9f7
...
...
@@ -6,20 +6,13 @@
</a>
</yd-navbar>
<div
style=
"padding:0.2rem;"
v-html=
"data.DisplayContent"
>
</div>
<down></down>
<div
style=
"padding:0.2rem;"
v-html=
"data.DisplayContent"
></div>
</div>
</
template
>
<
script
>
import
down
from
"../../components/PullRefresh"
export
default
{
components
:{
down
},
data
()
{
return
{
data
:
""
,
...
...
@@ -30,6 +23,9 @@ down
created
()
{
this
.
kvid
=
this
.
$route
.
query
.
kvid
;
this
.
getData
();
},
methods
:
{
getData
()
{
...
...
@@ -41,7 +37,6 @@ down
vm
.
$ajax
(
"Restful/Kivii.Contents.Entities.Content/Query.json"
,
_data
)
.
then
(
res
=>
{
vm
.
data
=
res
.
data
.
Results
[
0
];
})
.
catch
();
}
...
...
@@ -49,5 +44,4 @@ down
};
</
script
>
<
style
>
</
style
>
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