my-application-card.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <div class="card">
  3. <CardBox style="padding: 15px 20px" :btnList="btnList" v-on="$listeners">
  4. <div class="is_normal" v-if="!info.is_normal">已失效</div>
  5. <div
  6. class="content"
  7. :style="{ opacity: !info.is_normal ? '0.5' : '1' }"
  8. @click="info.is_normal ? $emit('handleToDetail') : ''"
  9. >
  10. <CardActivityContent :info="info" :showMark="true" />
  11. </div>
  12. <div
  13. class="footer"
  14. v-if="info.sh_status == 1"
  15. :style="{ opacity: !info.is_normal ? '0.5' : '1' }"
  16. >
  17. <div
  18. class="btn"
  19. v-if="info.video_id && info.video_item"
  20. @click="$emit('toVideoDetail')"
  21. >
  22. 回放视频
  23. </div>
  24. <div
  25. class="btn"
  26. v-if="info.article_id"
  27. @click="$emit('toImageTextDetail')"
  28. >
  29. 会议图文
  30. </div>
  31. <div
  32. class="btn"
  33. v-if="info.datum_id"
  34. @click="$emit('toInformationDetail')"
  35. >
  36. 会议PPT
  37. </div>
  38. <div class="btn confirm" @click="$emit('handleToDetail')">查看详情</div>
  39. <el-popover placement="bottom" width="240" trigger="click">
  40. <div slot="reference" class="btn confirm">查看邀请函</div>
  41. <div class="open-with-phone">
  42. <div class="qrcode">
  43. <canvas ref="qrcode"></canvas>
  44. </div>
  45. <div class="tips">此订单仅支持手机端查询 扫描二维码可直接访问</div>
  46. </div>
  47. </el-popover>
  48. </div>
  49. </CardBox>
  50. </div>
  51. </template>
  52. <script>
  53. import CardBox from "../card-module/card-box.vue";
  54. import CardActivityContent from "../card-module/card-activity-content.vue";
  55. import QRCode from "qrcode";
  56. export default {
  57. name: "MyApplicationCard",
  58. components: { CardBox, CardActivityContent },
  59. props: {
  60. info: {
  61. type: Object,
  62. },
  63. },
  64. data() {
  65. return {
  66. qrcode_url: "",
  67. };
  68. },
  69. computed: {
  70. btnList() {
  71. let arr = ["del"];
  72. return this.info.sh_status == 2 ? arr : [];
  73. },
  74. },
  75. mounted() {
  76. this.qrcode_url = location.href.split("/#/")[0];
  77. this.createQRCode();
  78. },
  79. methods: {
  80. createQRCode() {
  81. let width = 76 * window.$window_scale;
  82. //this.qrcode_url 改成手机端邀请函的地址
  83. QRCode.toCanvas(
  84. this.$refs["qrcode"],
  85. `${this.qrcode_url}/#/activity_ticket_info?id=${this.info.id}`,
  86. {
  87. errorCorrectionLevel: "H", //容错级别
  88. type: "image/png", //生成的二维码类型
  89. quality: 0.3, //二维码质量
  90. margin: 0, //二维码留白边距
  91. width, //宽
  92. height: width, //高
  93. }
  94. );
  95. },
  96. },
  97. };
  98. </script>
  99. <style lang="scss" scoped>
  100. .card {
  101. width: 100%;
  102. height: 100%;
  103. position: relative;
  104. .is_normal {
  105. font-size: 14px;
  106. font-weight: 400;
  107. color: #333333;
  108. position: absolute;
  109. right: 20px;
  110. top: 20px;
  111. }
  112. .footer {
  113. display: flex;
  114. align-items: center;
  115. justify-content: flex-end;
  116. margin-top: 10px;
  117. .btn {
  118. padding: 0 20px;
  119. height: 38px;
  120. border-radius: 4px;
  121. border: 1px solid #979797;
  122. font-size: 14px;
  123. font-weight: 400;
  124. color: #131415;
  125. margin-left: 10px;
  126. line-height: 38px;
  127. cursor: pointer;
  128. }
  129. .confirm {
  130. border: 1px solid #0054f7;
  131. color: #0054f7;
  132. }
  133. }
  134. }
  135. .open-with-phone {
  136. display: flex;
  137. align-items: center;
  138. .qrcode {
  139. width: 76px;
  140. height: 76px;
  141. background: #d8d8d8;
  142. }
  143. .tips {
  144. width: calc(100% - 86px);
  145. font-size: 14px;
  146. font-weight: 400;
  147. color: #212121;
  148. margin-left: 10px;
  149. }
  150. }
  151. </style>