1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
| <template> <div class="all"> <!-- <Mheader status="useAgreement" class="head" /> --> <header> <router-link to="/main/mine" slot="left" class="sprites_all sprites_back"></router-link> <div class="newbankCard"> <span class="sprites_all sprites_back" @click="goBack"></span> <span class="pf_thick">{{clauseTitle}}</span> </div> </header> <div class="main"> <!-- {{currentPage}} / {{pageCount}} --> <pdf :src="src" :page="currentPage" @progress="loadedRatio = $event" @num-pages="pageCount=$event" @page-loaded="currentPage=$event" @loaded="loadPdfHandler" ref="wrapper" class="pdf"></pdf> <!-- <button @click="changePdfPage(1)">+</button> --> </div> <ul class="footers"> <li :class="{select:idx==0}" @touchstart="idx=0" @touchend="idx=-1" @click="scaleD"> <p>放大</p> </li> <li :class="{select:idx==1}" @touchstart="idx=1" @touchend="idx=-1" @click="scaleX"> <p>缩小</p> </li> <li :class="{select:idx==2}" @touchstart="idx=2" @touchend="idx=-1" @click="changePdfPage(0)"> <p>上一页</p> </li> <li :class="{select:idx==3}" @touchstart="idx=3" @touchend="idx=-1" @click="changePdfPage(1)"> <p>下一页</p> </li> </ul>
</div> </template>
<script> import pdf from "vue-pdf"; import Mheader from "../Mheader"; export default { components: { pdf, Mheader }, data() { return { currentPage: 1, pageCount: 0, src: "", // pdf文件地址 scale: 100, //放大系数 idx: -1, clauseTitle: "", loadedRatio: 0 }; }, created() { // 有时PDF文件地址会出现跨域的情况,这里最好处理一下 let clause = this.$route.query.clause + ""; switch(clause) { case "0": this.src = "../../../../static/clause/A1.pdf"; this.clauseTitle = "使用者协定"; break; case "1": this.src = "../../../../static/clause/A2.pdf"; this.clauseTitle = "私隐政策声明"; break; case "2": this.src = "../../../../static/clause/C1.pdf"; this.clauseTitle = "产品披露及风险声明"; break; case "3": this.src = "../../../../static/clause/C2.pdf"; this.clauseTitle = "反洗钱及反恐融资声明"; break; case "4": this.src = "../../../../static/clause/C3.pdf"; this.clauseTitle = "私隐政策声明"; break; case "5": this.src = "../../../../static/clause/C4.pdf"; this.clauseTitle = "客户协议"; break; case "6": this.src = "../../../../static/clause/C5.pdf"; this.clauseTitle = "使用者协定"; break; case "7": this.src = ""; this.clauseTitle = "积分计划"; break; default: this.src = "../../../../static/clause/A1.pdf"; } // this.src = pdf.createLoadingTask(this.src); }, methods: { // 改变PDF页码,val传过来区分上一页下一页的值,0上一页,1下一页 changePdfPage(val) { if(val === 0 && this.currentPage > 1) { this.currentPage--; } if(val === 1 && this.currentPage < this.pageCount) { this.currentPage++; } }, goBack() { this.$router.go(-1); }, // pdf加载时 loadPdfHandler(e) { this.currentPage = 1; // 加载的时候先加载第一页 }, //放大 scaleD() { this.scale += 5; // this.$refs.wrapper.$el.style.transform = "scale(" + this.scale + ")"; this.$refs.wrapper.$el.style.width = parseInt(this.scale) + "%"; },
//缩小 scaleX() { if(this.scale == 100) { return; } this.scale += -5; this.$refs.wrapper.$el.style.width = parseInt(this.scale) + "%"; // this.$refs.wrapper.$el.style.transform = "scale(" + this.scale + ")"; } }, mounted() {} }; </script> <style lang="scss" scoped> @import "../../../assets/css/reset.scss"; .all { padding: 0 0 rem(80); header { height: rem(88); position: sticky; top: 0; background-color: #fff; width: 100%; z-index: 400; .sprites_all { position: absolute; left: rem(30); top: rem(24); display: inline-block; width: rem(40); height: rem(40); background: url("../../../assets/img/transaction/transaction_icon.png") no-repeat; background-size: rem(400); vertical-align: bottom; background-position: 0 rem(-50); } .sprites_back { background-position: rem(-50) 0; } span { line-height: rem(86); font-size: rem(30); color: $text_3; // font-weight: bold; } border-bottom: 1px solid $line_color; .newbankCard { border-bottom: 1px solid $line_color; } } .main { overflow: auto; } .head { position: fixed; top: 0; height: rem(88); } .footers { position: fixed; bottom: 0; width: 100%; height: rem(100); display: flex; z-index: 100; color: #333; border-top: 1px solid #f0f0f0; line-height: rem(80); background-color: #fff; li { text-align: center; flex: 1; padding: rem(10) 0; p { border-right: 1px solid #f0f0f0; } } li:last-child { p { border-right: 0 none; } } .select { color: #fff; background-color: #c59c5a; p { border-right: 0 none; } } } } </style>
|