Commit 166d9589 authored by 李智书's avatar 李智书

Merge branch 'develop' into uat

parents 3e3c97cb da5c3575
This diff is collapsed.
...@@ -62,6 +62,7 @@ ...@@ -62,6 +62,7 @@
"dayjs": "^1.10.4", "dayjs": "^1.10.4",
"echarts": "^5.1.0", "echarts": "^5.1.0",
"flyio": "^0.6.2", "flyio": "^0.6.2",
"html2canvas": "^1.4.1",
"jweixin-module": "^1.6.0", "jweixin-module": "^1.6.0",
"less-loader": "5.0.0", "less-loader": "5.0.0",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",
......
...@@ -414,6 +414,14 @@ ...@@ -414,6 +414,14 @@
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }
},{
"path": "pages/SchoolReport/SchoolReport",
"style": {
"navigationBarTitleText": "校园报告",
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
} }
], ],
......
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
item.bindCardNo.slice(item.bindCardNo.length - 4) item.bindCardNo.slice(item.bindCardNo.length - 4)
}}</span }}</span
> >
<!-- <image class='BankListImg' src='../../../static/img/choiceBank.png'></image> --> <image class='BankListImg' src='../../../static/img/choiceBank.png'></image>
</view> </view>
</view> </view>
</view> </view>
......
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
item.bindCardNo.slice(item.bindCardNo.length - 4) item.bindCardNo.slice(item.bindCardNo.length - 4)
}}</span }}</span
> >
<!-- <image class='BankListImg' src='../../../static/img/choiceBank.png'></image> --> <image class='BankListImg' src='../../../static/img/choiceBank.png'></image>
</view> </view>
</view> </view>
</view> </view>
......
This diff is collapsed.
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
</template> </template>
<script> <script>
import Pdfh5 from "pdfh5"; import Pdfh5 from "pdfh5";
import "pdfh5/css/pdfh5.css";
export default { export default {
name: 'App', name: 'App',
data() { data() {
...@@ -36,6 +37,11 @@ ...@@ -36,6 +37,11 @@
default: default:
break; break;
} }
if (options.pdfName == 'azkjmenber') {
uni.setNavigationBarTitle({
title: "会员服务协议"
})
}
this.pdfName = options.pdfName this.pdfName = options.pdfName
this.Init(this.ImgUrl + 'AgreementPdf/' + this.pdfName) this.Init(this.ImgUrl + 'AgreementPdf/' + this.pdfName)
}, },
...@@ -50,9 +56,8 @@ ...@@ -50,9 +56,8 @@
this_.pdfh5 = new Pdfh5("#pdfh5", { this_.pdfh5 = new Pdfh5("#pdfh5", {
pdfurl: pdfName + '.pdf', pdfurl: pdfName + '.pdf',
scale: 2, scale: 2,
goto: 0,
zoomEnable: true, zoomEnable: true,
renderType: 'svg'
}); });
//监听完成事件 //监听完成事件
this_.pdfh5.on("complete", function(status, msg, time) { this_.pdfh5.on("complete", function(status, msg, time) {
...@@ -76,6 +81,10 @@ ...@@ -76,6 +81,10 @@
margin: 0; margin: 0;
} }
page {
height: 100%;
}
html, html,
body, body,
#app { #app {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment