| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <view :style="vuex_skin">
- <u-navbar :custom-back="customBack" :is-back="true" title="作品详情"></u-navbar>
- <view class="" v-show="!loading">
- <video class="works-video" :autoplay="true" :src="activity.videoUrl"></video>
- <view style="padding: 20rpx 30rpx 50rpx 30rpx;background: white;">
- <view class="title" style="border-bottom: 1rpx solid #EEEEEE ;">
- <span class="bg-red work-no"> {{activity.productNo}}号</span>
- <span class="work-title">{{activity.title}}</span>
- <view class="work-info-box">
- <image class="remen-icon" src="../../static/icon/remen.png"></image>
- <span class="vote-count">{{activity.voteCount}}</span>
- <span class="work-rank">排行榜第{{activity.rank}}名</span>
- </view>
- </view>
- <view style="font-size: 24rpx;color: #888888;padding: 30rpx 10rpx 20rpx 10rpx;">
- <u-parse :html="content"></u-parse>
- </view>
- </view>
- <view @click="showShare" class="bg-white padding-30 margin-top-30 flex">
- <view class="basis-xs">
- <image style="width: 84rpx;height: 84rpx;" src="../../static/icon/ic_zhuanfa.png"></image>
- </view>
- <view class="basis-lg flex flex-direction" style="margin-left: -20rpx;">
- <view style="font-size: 28rpx;color: #353535;">转发邀请投票</view>
- <view style="font-size: 22rpx;color: #AEACAF;padding-top: 10rpx;">
- 成功邀请一位好友投票,获得{{vuex_active_setting.voteAndHeatRate}}热力值</view>
- </view>
- <view class="flex justify-center align-center"
- style="color: #666666;flex-basis: 20%;font-size: 26rpx;font-family: PingFang-SC-Medium;">去邀请 >
- </view>
- </view>
- <view class="footer-bar" style="z-index: 1;">
- <u-button @click="login" shape="circle" :custom-style="customStyle">给ta投票</u-button>
- </view>
- </view>
- <login ref="login" @signIn="signIn" @phoneSuccess="showVote"></login>
- <toast ref="toast"></toast>
- <loading ref="loading" type="3" theme="2" />
- <vote-popup ref="votePopup" @toVote="toVote"></vote-popup>
- <!-- 海报 -->
- <poster ref="poster" :avatar="posetrParams.avatar" :title="posetrParams.title"
- :subTitle="posetrParams.subTitle"></poster>
- <uqrcode class="canvas-hide" ref="uqrcode"></uqrcode>
- <share-popup ref="sharePopup" @confirm="shareConfirm"></share-popup>
- <timeline-popup ref="timelinePopup"></timeline-popup>
- <sms-alert ref="smsAlert" @exchange="cmccVote"></sms-alert>
- </view>
- </template>
- <script>
- import sharePopup from "@/components/alert/sharePopup.vue"
- import timelinePopup from "@/components/alert/timelinePopup.vue"
- import votePopup from '@/components/alert/votePopup.vue'
- import poster from "@/components/poster/poster.vue"
- import uqrcode from "@/components/uqrcode/uqrcode.vue"
- import smsAlert from "@/components/alert/smsAlert.vue"
- export default {
- components: {
- smsAlert,
- sharePopup,
- timelinePopup,
- votePopup,
- poster,
- uqrcode
- },
- async onLoad(props) {
- this.$refs.loading.showLoading()
- //作品id
- this.id = props.id;
- //获取详情
- this.fetchData()
- //处理授权结果
- this.handelAuthResult(props)
- //处理创建订单结果
- this.handelOrderResult(props)
- //隐藏loading
- setTimeout(() => {
- this.$refs.loading.hide()
- this.loading = false
- }, 400)
- },
- onReady() {
- //处理海报参数
- this.handelShareParams()
- },
- computed: {
- content() {
- return decodeURIComponent(this.activity.content)
- }
- },
- data() {
- return {
- loading: false,
- //作品id
- id: '',
- //订单结果
- orderResult: {},
- //授权结果
- authResult: {},
- //分享
- qrCodeImg: '',
- //选中的道具
- selectGoods:{},
-
- posetrParams: {
- avatar: '',
- title: '我是普法帮帮代言人',
- subTitle: '邀请您为888号作品投票!'
- },
- activity: {},
- customStyle: {
- color: 'white',
- background: "#E72226",
- fontSize: '32rpx',
- width: '500rpx',
- margin: '25rpx auto'
- },
- }
- },
- methods: {
- async fetchData() {
- this.activity = (await this.$api.activity.getWorksDetail(this.id)).data.data
- },
- async handelShareParams() {
- this.posetrParams = {
- avatar: 'https://gx.vote.activity.obs.cn-south-1.myhuaweicloud.com:443/446d9e043f3748e4a47ea4d0de81b140-3b748fea4150c469b8eb66f98cd29e2.png',
- title: '我是普法帮帮代言人',
- subTitle: '邀请您为'+this.activity.productNo+'号作品投票!'
- }
- let userId = this.vuex_userId || '000000' //游客
- let sharePath = '/pages/activity/activityDetail?id=' + this.activity.id + '&userId=' + userId
- let encodePath = encodeURIComponent(sharePath)
- this.$u.mpShare = {
- title: '我是普法帮帮代言人,' + this.posetrParams.subTitle,
- path: '/pages/index/home?path=' + encodePath,
- imageUrl: ''
- }
- let qrText = this.$config.PRODUCT_PATH + '?path=' + encodePath
- this.qrCodeImg = (await this.$refs.uqrcode.make({
- size: 150,
- text: qrText
- })).tempFilePath
- },
- handelAuthResult(options) {
- if (options.authResult == undefined) {
- return
- }
- this.authResult = JSON.parse(options.authResult)
- if (this.authResult.resultCode == '0000') {
- //授权成功,直接弹出礼物框
- this.showVote()
- return
- }
- if (this.authResult.resultCode == '9999') {
- //授权失败
- this.$refs.toast.error(this.authResult.message)
- return
- }
- },
- handelOrderResult(options) {
- if (options.orderPass&&this.$cache.get('orderResult')) {
- this.orderResult = this.$cache.get('orderResult')
- this.createOrder()
- }
- },
- async showVote() {
- this.$refs.votePopup.showVote(this.vuex_phone, this.id);
- },
- init() {
- if (this.vuex_phone) {
- this.showVote()
- }
- },
- //去投票
- toVote(item) {
- if (this.$cache.get('orderResult')) {
- this.orderResult=this.$cache.get('orderResult')
- this.orderResult.goodsId=item.id
- }
- this.selectGoods=item
- if (item.point == 0) {
- //免费投票
- this.freeVote()
- return
- }
- this.$refs.votePopup.hideVote()
- //移动积分投票,创建订单
- if (this.$cache.get('orderResult')) {
- this.createOrder()
- return
- }
- let params = {
- url: 'https://vote.guosen-fumao.cn/order.html',
- goodsId: this.selectGoods.id
- }
- this.$jump('/pages/webview/createOrder' + this.$u.queryParams(params))
- },
- //移动积分创建订单
- async createOrder() {
- if (this.$isEmpty(this.orderResult.fingerprint) ||
- this.$isEmpty(this.orderResult.sessionId) ||
- this.$isEmpty(this.orderResult.goodsId)) {
- this.$refs.toast.error('创建订单失败')
- return
- }
- let params = {
- fingerprint: this.orderResult.fingerprint,
- helpGoodsId: this.orderResult.goodsId,
- sessionId: this.orderResult.sessionId,
- num: 1,
- phone: this.vuex_phone,
- userId: this.vuex_userId
- }
- let res=await this.$api.order.create(params)
- if (res.data.success) {
- this.orderResult.outOrderId=res.data.data
- this.orderResult.mobile=this.vuex_phone
- console.log(this.orderResult,"/***********");
- this.$refs.smsAlert.showSmsAndSend(this.orderResult)
- }else{
- this.$refs.toast.error(res.data.msg)
- }
- },
- async cmccVote(item){
- this.$refs.smsAlert.hideSms()
- let params = {
- ...item,
- machinetype:'phone',
- productId:this.id,
- helpGoodsId: this.orderResult.goodsId,
- userId: this.vuex_userId,
- num: 1,
- }
- let res = await this.$api.order.exchange(params)
- if (res.data.success) {
- this.$refs.toast.info('助力成功')
- }else{
- this.$refs.toast.error(res.data.msg)
- }
- },
- async freeVote() {
- let params = {
- helpGoodsId: this.selectGoods.id,
- userId: this.vuex_userId,
- num: 1,
- productId: this.activity.id,
- }
- let res = await this.$api.order.exchange(params)
- if (res.data.success) {
- this.$refs.votePopup.hideVote()
- this.fetchData()
- setTimeout(() => {
- this.$refs.toast.info("助力成功")
- }, 200)
- } else {
- this.$refs.votePopup.hideVote()
- setTimeout(() => {
- this.$refs.toast.error(res.data.msg)
- }, 200)
- }
- },
- customBack() {
- uni.switchTab({
- url: '/pages/index/home'
- })
- },
- //分享
- async showPoster() {
- this.$refs.poster.showCanvas(this.qrCodeImg)
- },
- shareConfirm(item) {
- if (item.name == '海报') {
- this.showPoster()
- return
- }
- if (item.name == '好友') {
- return
- }
- if (item.name == '朋友圈') {
- this.$refs.timelinePopup.show()
- }
- },
- showShare() {
- this.$refs.sharePopup.show()
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .works-video {
- width: 100%;
- height: 422rpx;
- }
- .title {
- padding: 20rpx;
- .work-no {
- padding: 5rpx 10rpx 5rpx 10rpx;
- border-radius: 7rpx;
- }
- .work-title {
- padding: 0 0 0 20rpx;
- color: #353535;
- font-size: 32rpx;
- font-weight: 800;
- }
- }
- .work-info-box {
- padding: 30rpx 0 15rpx 10rpx;
- .remen-icon {
- width: 30rpx;
- height: 30rpx;
- }
- .vote-count {
- padding: 0 40rpx 0 10rpx;
- font-size: 40rpx;
- color: #353535;
- font-weight: 800;
- }
- .work-rank {
- margin-left: -10rpx;
- color: #353535;
- background: #FDEBEC;
- border-radius: 21px 21px 21px 21px;
- font-size: 22rpx;
- padding: 8rpx 15rpx 8rpx 15rpx;
- }
- }
- .footer-bar {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 170rpx;
- background-color: white;
- }
- .canvas-hide {
- position: fixed;
- right: 100vw;
- bottom: 100vh;
- z-index: -9999;
- opacity: 0;
- }
- </style>
|