123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <div class="card">
- <CardBox style="padding: 15px 20px" :btnList="btnList" v-on="$listeners">
- <div class="is_normal" v-if="!info.is_normal">已失效</div>
- <div
- class="content"
- :style="{ opacity: !info.is_normal ? '0.5' : '1' }"
- @click="info.is_normal ? $emit('handleToDetail') : ''"
- >
- <CardActivityContent :info="info" :showMark="true" />
- </div>
- <div
- class="footer"
- v-if="info.sh_status == 1"
- :style="{ opacity: !info.is_normal ? '0.5' : '1' }"
- >
- <div
- class="btn"
- v-if="info.video_id && info.video_item"
- @click="$emit('toVideoDetail')"
- >
- 回放视频
- </div>
- <div
- class="btn"
- v-if="info.article_id"
- @click="$emit('toImageTextDetail')"
- >
- 会议图文
- </div>
- <div
- class="btn"
- v-if="info.datum_id"
- @click="$emit('toInformationDetail')"
- >
- 会议PPT
- </div>
- <div class="btn confirm" @click="$emit('handleToDetail')">查看详情</div>
- <el-popover placement="bottom" width="240" trigger="click">
- <div slot="reference" class="btn confirm">查看邀请函</div>
- <div class="open-with-phone">
- <div class="qrcode">
- <canvas ref="qrcode"></canvas>
- </div>
- <div class="tips">此订单仅支持手机端查询 扫描二维码可直接访问</div>
- </div>
- </el-popover>
- </div>
- </CardBox>
- </div>
- </template>
- <script>
- import CardBox from "../card-module/card-box.vue";
- import CardActivityContent from "../card-module/card-activity-content.vue";
- import QRCode from "qrcode";
- export default {
- name: "MyApplicationCard",
- components: { CardBox, CardActivityContent },
- props: {
- info: {
- type: Object,
- },
- },
- data() {
- return {
- qrcode_url: "",
- };
- },
- computed: {
- btnList() {
- let arr = ["del"];
- return this.info.sh_status == 2 ? arr : [];
- },
- },
- mounted() {
- this.qrcode_url = location.href.split("/#/")[0];
- this.createQRCode();
- },
- methods: {
- createQRCode() {
- let width = 76 * window.$window_scale;
- //this.qrcode_url 改成手机端邀请函的地址
- QRCode.toCanvas(
- this.$refs["qrcode"],
- `${this.qrcode_url}/#/activity_ticket_info?id=${this.info.id}`,
- {
- errorCorrectionLevel: "H", //容错级别
- type: "image/png", //生成的二维码类型
- quality: 0.3, //二维码质量
- margin: 0, //二维码留白边距
- width, //宽
- height: width, //高
- }
- );
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .card {
- width: 100%;
- height: 100%;
- position: relative;
- .is_normal {
- font-size: 14px;
- font-weight: 400;
- color: #333333;
- position: absolute;
- right: 20px;
- top: 20px;
- }
- .footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- margin-top: 10px;
- .btn {
- padding: 0 20px;
- height: 38px;
- border-radius: 4px;
- border: 1px solid #979797;
- font-size: 14px;
- font-weight: 400;
- color: #131415;
- margin-left: 10px;
- line-height: 38px;
- cursor: pointer;
- }
- .confirm {
- border: 1px solid #0054f7;
- color: #0054f7;
- }
- }
- }
- .open-with-phone {
- display: flex;
- align-items: center;
- .qrcode {
- width: 76px;
- height: 76px;
- background: #d8d8d8;
- }
- .tips {
- width: calc(100% - 86px);
- font-size: 14px;
- font-weight: 400;
- color: #212121;
- margin-left: 10px;
- }
- }
- </style>
|