certificate.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <view class="web_box">
  3. <!-- <u-navbar height="44" leftIcon="arrow-left" leftIconColor="#000" leftText="我的证书" @leftClick="leftClick" :autoBack="true" bgColor="#fff">
  4. </u-navbar> -->
  5. <view class="list" v-if="certificateList.length > 0">
  6. <block v-for="(item,index) in certificateList" :key="index">
  7. <view class="list_item hflex acenter">
  8. <u-image :src="item.certificate" width="320rpx" height="232rpx" @click="clickimg(index)"></u-image>
  9. <view class="img_right vflex jbetween">
  10. <view class="name">证书名称:{{item.name}}</view>
  11. <view>
  12. <view class="text_style1">证书编号:{{item.certificate_number}}</view>
  13. <view class="text_style1">颁发时间:{{item.create_at}}</view>
  14. </view>
  15. </view>
  16. </view>
  17. </block>
  18. </view>
  19. <view class="list vflex acenter jcenter" v-else>
  20. <image src="../../static/images/common/collect_none.png" class="img_none"></image>
  21. <view class="text_none">
  22. 暂无证书
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import $api from '@/static/js/api.js'
  29. export default {
  30. data() {
  31. return {
  32. certificateList: [
  33. ],
  34. page: 1,
  35. limit: 10,
  36. total: 0
  37. }
  38. },
  39. onLoad() {
  40. this.getCertificateList()
  41. },
  42. methods: {
  43. leftClick() {
  44. },
  45. // 获取证书列表
  46. getCertificateList() {
  47. var that = this
  48. $api.req({
  49. url: '/api/User/myCertificate',
  50. data: {
  51. page: that.page,
  52. limit: that.limit
  53. }
  54. }, function(res) {
  55. if (res.code == 1) {
  56. if(that.page == 1) {
  57. that.certificateList = res.data.list
  58. that.total = res.data.count
  59. } else {
  60. that.certificateList = that.certificateList.concat(res.data.list)
  61. }
  62. }
  63. })
  64. },
  65. // 触底事件
  66. onReachBottom() {
  67. console.log("到底了");
  68. console.log(Number(this.page) , Number(this.limit));
  69. if (Number(this.page) * Number(this.limit) >= Number(this.total)) {
  70. $api.info("没有更多了")
  71. } else {
  72. this.page++
  73. this.getCertificateList()
  74. }
  75. },
  76. clickimg(index) {
  77. var that = this
  78. uni.previewImage({
  79. urls: [that.certificateList[index].certificate],
  80. current: '',
  81. success:function(res){
  82. }
  83. })
  84. }
  85. }
  86. }
  87. </script>
  88. <style scoped lang="scss">
  89. .web_box::v-deep {
  90. padding: 0 30rpx;
  91. .u-navbar {
  92. width: 100%;
  93. box-sizing: border-box;
  94. padding: 36px 16px 58rpx 0;
  95. }
  96. .list {
  97. width: 100%;
  98. }
  99. .list_item {
  100. width: 100%;
  101. margin-top: 20rpx;
  102. }
  103. .img_right {
  104. width: calc(100% - 320rpx);
  105. height: 232rpx;
  106. box-sizing: border-box;
  107. padding: 32rpx 0 24rpx 10rpx;
  108. }
  109. .name {
  110. font-size: 27rpx;
  111. font-weight: 500;
  112. color: #333;
  113. line-height: 40rpx;
  114. }
  115. .text_style1 {
  116. font-size: 24rpx;
  117. font-weight: 400;
  118. color: #333333;
  119. }
  120. .text_none {
  121. font-size: 32rpx;
  122. color: #333333;
  123. margin-top: 44rpx;
  124. }
  125. .img_none {
  126. margin-top: 300rpx;
  127. width: 570rpx;
  128. height: 328rpx;
  129. }
  130. }
  131. </style>