123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <view class="container cashier">
- <tui-skeleton v-if="skeletonShow" backgroundColor="#fafafa" borderRadius="10rpx" :isLoading="true" :loadingType="5" />
- <template v-else>
- <!-- <custom :navbar-data='nvabarData' /> -->
- <view class="container-banner" :style="{paddingTop:CustomBar + 200 +'px'}">
- <view class="login-input">
- <image class="login-logo" :src="shopInfo.shopLogo" mode=""></image>
- </view>
- <view class="login-title">展位:{{ shopInfo.showNum }}</view>
- <view class="login-title">参展商:{{ shopInfo.shopName }}</view>
- <view class="login-btn" @click="handleEntry">签到打卡</view>
- <view class="login-text">
- 注:到采美专区签到打卡,可领取超值礼包,更多惊喜和福利等你来解琐。
- </view>
- </view>
- </template>
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import authorize from '@/common/config/authorize.js'
- import wxLogin from '@/common/config/wxLogin.js'
- export default{
- data(){
- return{
- nvabarData: { //顶部自定义导航
- haveBack:false,
- haveHome:true,
- showCapsule:1, // 是否显示左上角图标 1表示显示 0表示不显示,
- showSearch: 0,
- title: '', // 导航栏 中间的标题
- textLeft:this.$store.state.isIphone
- },
- isIphoneX:this.$store.state.isIphoneX,
- CustomBar:this.CustomBar,// 顶部导航栏高度
- skeletonShow:true,
- params:{
- userId:'',
- shopId:''
- },
- shopInfo:{}
- }
- },
- onLoad(option) {
- this.initData(option)
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo', ])
- },
- methods:{
- // 初始化
- async initData(option) {
- this.$util.msg('活动已结束', 2000)
- setTimeout(() => {
- his.$api.switchTabTo('/pages/tabBar/home/index')
- }, 2000)
- // const userInfo = await this.$api.getStorage()
- // this.params.shopId = option.id
- // this.params.userId = userInfo.userId ? userInfo.userId : 0
- // this.userShopDetail(this.params)
- },
- // 获取展台信息
- async userShopDetail(params){
- try{
- const res = await this.UserService.userShopDetail(params)
- this.shopInfo = res.data
- if(this.shopInfo.shopSign === 1){
- this.$api.navigateTo('/pages/h5/activity/activity-entry-list')
- }else{
- this.skeletonShow = false
- }
- }catch(error){
- console.log('获取展台信息异常~')
- }
- },
- handleEntry(){
- this.$util.msg('活动已结束', 2000)
- setTimeout(() => {
- his.$api.switchTabTo('/pages/tabBar/home/index')
- }, 2000)
- // if(!this.hasLogin){
- // this.$util.msg('您还未登录,请先登录!', 2000)
- // setTimeout(() => {
- // const pages = getCurrentPages()
- // const page = pages[pages.length - 1]
- // uni.setStorageSync('LOGIN_REDIRECT_URL', page.$page.fullPath)
- // this.$api.navigateTo('/pages/login/login')
- // }, 2000)
- // return
- // }
- // this.userTicketSign(this.params)
- },
- // 签到打卡
- async userTicketSign(params){
- try{
- await this.UserService.userTicketSign(params)
- this.$util.msg('打卡成功', 2000, true, 'success')
- this.params.idCard = ''
- setTimeout(()=>{
- this.$api.navigateTo('/pages/h5/activity/activity-entry-list')
- },2000)
- }catch(error){
- this.$util.msg(error.msg,2000)
- }
- }
- },
- onShow() {
-
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #3d68eb;
- height: auto !important;
- }
- .container-banner{
- width: 100%;
- height: 1142rpx;
- background: url(https://admin.caimei365.com/userfiles/1/images/photo/2024/08/ziluo_bg.jpg) no-repeat;
- background-size: contain;
- box-sizing: border-box;
- padding: 0 100rpx;
- .login-title{
- font-size: $font-size-44;
- line-height: 88rpx;
- color: #ffffff;
- text-align: center;
- }
- .login-input{
- width: 100%;
- height: auto;
- padding:0 24rpx;
- margin: 0 auto;
- margin-bottom: 30rpx;
- box-sizing: border-box;
- border-radius: 50rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .login-logo{
- width: 200rpx;
- height: 200rpx;
- display: block;
- border-radius: 50%;
- border: 1px solid #e10078;
- }
- }
- .login-btn {
- width: 300rpx;
- height: 88rpx;
- font-size: $font-size-28;
- line-height: 88rpx;
- color: #ffffff;
- margin: 0 auto;
- margin-bottom: 24rpx;
- text-align: center;
- background-color: #e10078;
- border-radius: 50rpx;
- margin-top: 120rpx;
- }
- .login-text{
- font-size: $font-size-26;
- line-height: 48rpx;
- color: #ffffff;
- margin-top: 200rpx;
- }
- }
-
- </style>
|