|
@@ -536,6 +536,39 @@
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
>
|
|
>
|
|
<template>
|
|
<template>
|
|
|
|
+ <div style="display: flex">
|
|
|
|
+ <el-button
|
|
|
|
+ :class="gopage == true ? 'bg' : ''"
|
|
|
|
+ class="gopage"
|
|
|
|
+ :theme="'default'"
|
|
|
|
+ type="submit"
|
|
|
|
+ :title="'上一页'"
|
|
|
|
+ @click.native="prePage"
|
|
|
|
+ >
|
|
|
|
+ 上一页</el-button
|
|
|
|
+ >
|
|
|
|
+ <div
|
|
|
|
+ style="
|
|
|
|
+ width: 50px;
|
|
|
|
+ height: 28px;
|
|
|
|
+ background: #f4f4f4;
|
|
|
|
+ text-align: center;
|
|
|
|
+ line-height: 28px;
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ {{ pageNum }}/{{ pageTotalNum }}
|
|
|
|
+ </div>
|
|
|
|
+ <el-button
|
|
|
|
+ :class="gopage == false ? 'bg' : ''"
|
|
|
|
+ :theme="'default'"
|
|
|
|
+ class="downpage"
|
|
|
|
+ type="submit"
|
|
|
|
+ :title="'下一页'"
|
|
|
|
+ @click.native="nextPage"
|
|
|
|
+ >
|
|
|
|
+ 下一页</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
<PDF
|
|
<PDF
|
|
ref="pdf"
|
|
ref="pdf"
|
|
:src="pdfurl"
|
|
:src="pdfurl"
|