certificate-bak.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <view class="content">
  3. <web-view v-if="info.url" class="web-view" :src="info.url"></web-view>
  4. <view class="btns">
  5. <!-- <button class="my-btn" @click="$api.goto('/pages/home/home', '', true)">首页</button> -->
  6. <!-- <button class="my-btn" type="gradient" @tap="$api.goto('/pages/usercenter/certificateList/certificateList')">我的证书</button> -->
  7. <!--#ifdef H5-->
  8. <!-- <button class="my-btn" type="gradient" @tap="share" v-show="$api.clientType.isWeiXin">分享证书</button> -->
  9. <!--#endif-->
  10. </view>
  11. <!--#ifdef H5-->
  12. <!-- <view v-show="showShare" class="share-bg" @tap="showShareFun"></view> -->
  13. <!--#endif-->
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. thetoken:'',
  21. orderid:'',
  22. info: {
  23. url: ''
  24. },
  25. //#ifdef H5
  26. showShare:false,
  27. //#endif
  28. };
  29. },
  30. onLoad(e) {
  31. console.log('e',e);
  32. this.thetoken = 'Bearer' + ' ' + this.$store.state.token;
  33. this.orderid = e.orderid;
  34. // const data = this.$api.getE();
  35. // this.info = Object.assign(this.info, data);
  36. //自定义证书ID字段 orderId
  37. //通过订单id获取证书信息
  38. uni.showLoading({
  39. title: '正在获取证书信息'
  40. });
  41. this.$api.http.get(this.config.apiBaseurl + '/carbon-h5/wap/order/getCredentialByOrderId?orderId='+this.orderid,{
  42. header: {
  43. Accept:'application/json',
  44. Authorization: this.thetoken,
  45. },
  46. }).then(res => {
  47. uni.hideLoading();
  48. // this.info = Object.assign(this.info, data);
  49. this.info.url = '/static/html2canvas/index.html?key=' + this.orderid;
  50. console.log('res',JSON.parse(JSON.stringify(res.data.retBody)));
  51. }).catch(err =>{
  52. console.log('err',err)
  53. });
  54. // this.$api
  55. // .$http({
  56. // url: '/wap/order/getCredentialByOrderId',
  57. // data: {
  58. // orderId: data.orderId
  59. // }
  60. // })
  61. // .then(res => {
  62. // const info = res.data instanceof Object ? res.data : {};
  63. // this.info = Object.assign(this.info, res.data);
  64. // if (res.code == 0) {
  65. // //更新缓存信息
  66. // uni.setStorageSync(data.orderId, info);
  67. // //调用生成
  68. // this.info.url = '/static/html2canvas/index.html?key=' + data.orderId;
  69. // } else {
  70. // uni.hideLoading();
  71. // }
  72. // });
  73. },
  74. //标题栏按钮监听
  75. onNavigationBarButtonTap(e) {
  76. this.$api.gohome(e);
  77. },
  78. methods: {
  79. //#ifdef H5
  80. showShareFun(){
  81. this.showShare = !this.showShare;
  82. },
  83. share() {
  84. //显示菜单
  85. this.$wxApi.showMenu();
  86. this.showShareFun();
  87. //注册分享数据
  88. this.$wxApi.share({
  89. orderId: this.info.orderId
  90. });
  91. }
  92. //#endif
  93. }
  94. };
  95. </script>
  96. <style lang="scss">
  97. .content {
  98. .btns {
  99. position: absolute;
  100. top: 88%;
  101. width: 100%;
  102. display: flex;
  103. z-index: 1;
  104. button {
  105. flex: 1;
  106. margin: 0 10% 10% 10%;
  107. }
  108. }
  109. }
  110. .web-view {
  111. box-sizing: border-box;
  112. }
  113. .share-bg{
  114. position: fixed;
  115. z-index: 998;
  116. top: 0;
  117. bottom: 0;
  118. left: 0;
  119. right: 0;
  120. overflow: hidden;
  121. background: rgba(0,0,0,.7);
  122. box-sizing: border-box;
  123. &::after{
  124. content: "";
  125. position: absolute;
  126. top: 0;
  127. bottom: 0;
  128. left: 0;
  129. right: 0;
  130. background: url(http://fqn.hongweisoft.com/cqcarbon/wxapp/guide01.png) no-repeat top right;
  131. background-size: 80% auto;
  132. }
  133. }
  134. </style>