123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <template>
- <view class="show_Research_Dlg">
- <u-modal
- ref="modalResearch"
- async-close
- v-model="isShow"
- :content-style="{ fontSize: '32rpx' }"
- @confirm="confirmModal"
- :show-cancel-button="!isShowView"
- :confirm-text="isShowView ? '知道了' : '确定'"
- cancel-text="取消"
- @cancel="cancelModal"
- :show-title="false"
- :cancel-style="{ borderRight: '1rpx solid #EBEBEB' }"
- :confirm-style="{ fontWeight: '700' }"
- >
- <view class="slot-content">
- <block v-if="!checkResearchList.CheckPermission">
- 签约研选扣点包才可参与此活动,请联系对口销售
- <!-- <rich-text nodes="暂无<b>买方研选</b>权限<br/>点击提交申请,提醒对口销售为你开通试用"></rich-text> -->
- </block>
- <block v-else-if="!checkResearchList.CheckTime"> <rich-text :nodes="content"></rich-text></block>
- <block v-else-if="!checkResearchList.CheckPoints">
- <view class="title-box txt-check"> 点数不足,若想报名,<br />请联系对口销售升级套餐 </view>
- <view class="content-box">
- <text>当前剩余点数:</text>
- <text>{{ checkResearchList.CompanyPoints }}</text>
- </view>
- <view class="content-box">
- <text>本次会议扣除点数:</text>
- <text>{{ checkResearchList.ActivityPoints }}</text>
- </view>
- </block>
- <block v-else-if="!checkResearchList.CheckEmail">
- <text class="title-box">应上市公司要求,该会议报名需 提供邮箱,请填写您的工作邮箱</text>
- <view class="content-input">
- <input v-model="inputVal" type="text" placeholder="请输入正确的邮箱地址" />
- </view>
- </block>
- <block v-else-if="checkResearchList.CheckPoints">
- <view class="title-box"> 确定报名参加吗? </view>
- <view class="content-box">
- <text>当前剩余点数:</text>
- <text>{{ checkResearchList.CompanyPoints }}</text>
- </view>
- <view class="content-box">
- <text>本次会议扣除点数:</text>
- <text>{{ checkResearchList.ActivityPoints }}</text>
- </view>
- <view class="content-box" style="margin-top: 10rpx">
- <text>{{ checkResearchList.CancelPopupMsg }}</text>
- </view>
- </block>
- </view>
- </u-modal>
- <u-modal
- v-model="show"
- :show-title="false"
- confirm-text="知道了"
- :content-style="{ fontSize: '32rpx' }"
- :cancel-style="{ borderRight: '1rpx solid #EBEBEB' }"
- :confirm-style="{ fontWeight: '700' }"
- >
- <view class="slot-content slot-content-text">
- <rich-text :nodes="TextContent"></rich-text>
- </view>
- </u-modal>
- </view>
- </template>
- <script>
- import { User, activity, FreeButton } from "@/config/api.js";
- export default {
- data() {
- return {
- content: "该活动已截止报名<br />若想参加,请联系对口销售",
- type: 3,
- inputVal: "",
- show: false,
- TextContent:
- "5万/年含无限量调研纪要查阅以及15次公开专家访谈或30次重点公司、专家小范围交流;<br /><br />10万/年含无限量调研纪要查阅以及40次公开专家访谈或80次重点公司、专家小范围交流或20次私享专家一对一",
- };
- },
- props: {
- isResearchModalShow: {
- default: false,
- type: Boolean,
- },
- checkResearchList: {
- default: {},
- type: Object,
- },
- jurisdictionList: {
- default: {},
- type: Object,
- },
- },
- watch: {},
- computed: {
- isShowView() {
- let list = this.checkResearchList;
- let isNum = !list.CheckPermission || !list.CheckPoints ? true : false;
- return isNum;
- },
- isShow: {
- get() {
- return this.isResearchModalShow;
- },
- set() {},
- },
- },
- methods: {
- cancelModal() {
- this.$emit("update:isResearchModalShow", false);
- this.$emit("update:checkResearchList", {});
- },
- promptTextHandler() {
- this.cancelModal();
- this.$nextTick(() => {
- this.show = true;
- });
- },
- async confirmModal() {
- if (!this.checkResearchList.CheckPermission || !this.checkResearchList.CheckTime || !this.checkResearchList.CheckPoints) {
- this.cancelModal();
- return;
- } else if (!this.checkResearchList.CheckEmail) {
- this.$refs.modalResearch.clearLoading();
- if (!this.inputVal)
- return uni.showToast({
- title: "邮箱不能为空",
- icon: "none",
- duration: 2000,
- });
- this.cancelModal();
- const res = await activity.activityEmailBinding({
- Email: this.inputVal,
- });
- if (res.Ret === 200) {
- this.$parent.researchPointsHandler(this.jurisdictionList.ActivityId, this.checkResearchList.childrenType, this.jurisdictionList);
- }
- this.inputVal = "";
- return;
- } else if (this.checkResearchList.CheckPoints) {
- this.$parent.myIsApplyHandler(this.jurisdictionList.ActivityId, this.checkResearchList.childrenType);
- this.cancelModal();
- return;
- }
- },
- },
- };
- </script>
- <style lang="scss">
- .show_Research_Dlg {
- .title-box {
- color: #333333;
- font-weight: 600;
- font-size: 32rpx;
- line-height: 44rpx;
- margin-bottom: 35rpx;
- }
- .content-box {
- font-weight: 400;
- font-size: 28rpx;
- line-height: 44rpx;
- color: #333333;
- display: flex;
- justify-content: center;
- text:nth-child(2) {
- color: #376cbb;
- }
- }
- .content-input {
- display: flex;
- input {
- width: 100%;
- height: 78rpx;
- line-height: 78rpx;
- background-color: $uni-bg-color;
- text-align: left;
- padding-left: 30rpx;
- }
- }
- .txt-check {
- text {
- margin-left: 8rpx;
- }
- }
- }
- .slot-content {
- width: 100%;
- padding: 50rpx;
- text-align: center;
- font-size: 32rpx;
- color: #0f1826;
- line-height: 48rpx;
- }
- .slot-content-text {
- text-align: left;
- }
- .seller-mobile {
- display: inline-block;
- color: #376cbb;
- }
- .u-model__footer__button.data-v-3626fcec {
- border-right: 1rpx solid #333;
- }
- </style>
|