easypay-app-wx/pages/index/index.vue

1562 lines
38 KiB
Vue
Raw Permalink Normal View History

2023-12-20 21:41:47 +08:00
<template>
<view :data-theme="theme">
<skeleton :show="showSkeleton" :isNodes="isNodes" ref="skeleton" loading="chiaroscuro" selector="skeleton"
bgcolor="#FFF"></skeleton>
2024-02-28 11:33:23 +08:00
<!-- <view class="mask" >
</view> -->
2024-02-28 16:04:00 +08:00
<image src="@/static/img/wait.jpg" mode="" style="width: 750rpx;height: 100vh;z-index: 1000;" v-if="showwait"></image>
2023-12-20 21:41:47 +08:00
<view class="page-index skeleton" :class="{'bgf':navIndex >0}"
2024-02-28 11:33:23 +08:00
:style="{visibility: showSkeleton ? 'hidden' : 'visible'}" v-if="showwait==false">
2023-12-20 21:41:47 +08:00
<!-- #ifdef H5 -->
<view class="header">
<view class="serch-wrapper flex">
<view class="logo skeleton-rect">
<image :src="logoUrl" mode=""></image>
</view>
<navigator url="/pages/goods_search/index" class="input" hover-class="none"><text
class="iconfont icon-xiazai5"></text>
搜索商品</navigator>
</view>
</view>
<!-- #endif -->
<!-- #ifdef MP || APP-PLUS -->
<view class="mp-header">
<view class="sys-head skeleton-rect" :style="{ height: statusBarHeight }"></view>
<view class="serch-box skeleton-rect" style="height: 40px;">
<view class="serch-wrapper flex">
<view class="logo">
<image :src="logoUrl" mode=""></image>
</view>
<navigator url="/pages/goods_search/index" class="input" hover-class="none"><text
class="iconfont icon-xiazai5"></text>
搜索商品</navigator>
</view>
</view>
</view>
<!-- #endif -->
<!-- 首页展示 -->
<view class="page_content skeleton" :style="'margin-top:'+(marTop)+'px;'" v-if="navIndex == 0">
<view class="mp-bg"></view>
<view id="pageIndex">
<!-- banner -->
<view class="swiper skeleton-rect" @click.native="bindEdit('indexBanner')">
<swiper indicator-dots="true" :autoplay="true" :circular="circular" :interval="interval"
:duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
<block v-for="(item,index) in imgUrls" :key="index">
<swiper-item>
<view @click="menusTap(item.url)">
<image :src="item.pic" class="slide-image" lazy-load></image>
</view>
</swiper-item>
</block>
</swiper>
</view>
<!-- 新闻简报 -->
<view class='notice acea-row row-middle row-between skeleton-rect'
@click.native="bindEdit('indexNews')">
<view class="pic" :style="{backgroundImage:'url('+imgHost+picBg+')'}" v-if="imgHost"
@click="toNewsList()"></view>
<text class='line'>|</text>
<view class='swipers'>
<swiper :indicator-dots="indicatorDots" :autoplay="autoplay" interval="2500" duration="500"
vertical="true" circular="true">
<block v-for="(item,index) in roll" :key='index'>
<swiper-item @touchmove.stop="stopTouchMove">
<view class='item' @click="menusTap(item.url)">
<view class='line1'>{{item.info}}</view>
</view>
</swiper-item>
</block>
</swiper>
</view>
<view class="iconfont icon-xiangyou" @click="toNewsList()"></view>
</view>
<!-- menu -->
<view class='nav acea-row' @click.native="bindEdit('indexMenu')">
2024-02-01 21:14:26 +08:00
<block v-for="(item,index) in menus" :key="index" v-if="item.id != 1698">
2023-12-20 21:41:47 +08:00
<view class='item' @click="menusTap(item.url)">
<view class='pictrue'>
<image :src='item.pic' class="skeleton-radius"></image>
</view>
<view class="menu-txt skeleton-rect">{{item.name}}</view>
</view>
</block>
</view>
</view>
<!-- 优惠券 -->
<coupons class="skeleton skeleton-rect"></coupons>
<!-- 秒杀-->
<seckill class="skeleton skeleton-rect"></seckill>
<!-- 拼团-->
<combination class="skeleton skeleton-rect"></combination>
<!-- 砍价-->
<bargain class="skeleton-rect"></bargain>
<!-- 排行榜 -->
<goods-rank class="skeleton skeleton-rect"></goods-rank>
<!-- 商品列表模板选择性显示 -->
<promotion :tabData="explosiveMoney" :showType="cardShow" v-if="cardShow !== 1"></promotion>
<!-- 底部分类 -->
<view class="sticky-box" :style="'top:'+(marTop)+'px;'" v-if="cardShow == 1">
<scroll-view class="scroll-view_H" style="width: 100%;" scroll-x="true" scroll-with-animation
:scroll-left="tabsScrollLeft" @scroll="scroll">
<view class="tab nav-bd" id="tab_list">
<view id="tab_item" :class="{ 'active': listActive == index}" class="item skeleton-rect"
v-for="(item, index) in explosiveMoney" :key="index" @click="ProductNavTab(item,index)">
<view class="txt">{{item.name}}</view>
<view class="label">{{item.info}}</view>
</view>
</view>
</scroll-view>
</view>
<!-- 首发新品 -->
<view class="index-product-wrapper" :class="iSshowH?'on':''" v-if="cardShow == 1">
<view class="list-box animated" :class='tempArr.length > 0?"fadeIn on":""'>
<view class="item" v-for="(item,index) in tempArr" :key="index" @click="goDetail(item)">
<view class="pictrue">
<span class="pictrue_log pictrue_log_class"
v-if="item.activityH5 && item.activityH5.type === '1'">秒杀</span>
<span class="pictrue_log pictrue_log_class"
v-if="item.activityH5 && item.activityH5.type === '2'">砍价</span>
<span class="pictrue_log pictrue_log_class"
v-if="item.activityH5 && item.activityH5.type === '3'">拼团</span>
<image :src="item.image" mode=""></image>
</view>
<view class="text-info">
<view class="title line1">{{item.storeName}}</view>
<view class="old-price"><text>¥{{item.otPrice}}</text></view>
<view class="price">
<text></text>{{item.price}}
</view>
</view>
</view>
</view>
<view class='loadingicon acea-row row-center-wrapper' v-if="goodScroll">
<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>
</view>
<view class="mores-txt flex" v-if="!goodScroll">
<text>我是有底线的</text>
</view>
</view>
</view>
<!-- #ifdef MP -->
<aTip :isCustom="true" :text="wxText" :borderR="5"></aTip>
<!-- #endif -->
</view>
<!-- #ifdef APP-PLUS -->
<view class="privacy-wrapper" v-if="privacyStatus">
<view class="privacy-box">
<view class="title">服务协议与隐私政策</view>
<view class="content">
尊敬的用户欢迎您注册成为本应用用户请您仔细阅读<i
@click="xieyiApp">服务协议与隐私政策</i>了解我们对您使用我们APP制定的规则您个人信息的处理以及申请权限的目的和使用范围
经您确认后本用户协议和隐私权政策即在您和本应用之间产生法律效力请您务必在注册之前认真阅读全部服务协议内容如有任何疑问可向本应用客服咨询
如你同意请点击我同意开始接受我们的服务
</view>
<view class="btn-box">
<view class="btn-item" @click="confirmApp">我同意</view>
<view class="btn" @click="closeModel">随便逛逛</view>
</view>
</view>
</view>
<!-- #endif -->
</view>
</template>
<script>
import Auth from '@/libs/wechat';
import Cache from '../../utils/cache';
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
let app = getApp();
import {
getIndexData,
setCouponReceive,
getTheme,
getAppVersion,
2024-02-07 16:58:08 +08:00
getip
2023-12-20 21:41:47 +08:00
} from '@/api/api.js';
import {
2024-02-27 09:45:51 +08:00
spread,
2023-12-20 21:41:47 +08:00
} from "@/api/user";
// #ifdef MP-WEIXIN || APP-PLUS
import {
2024-02-01 21:14:26 +08:00
getTemlIds,
2024-02-27 09:45:51 +08:00
logoip,
2023-12-20 21:41:47 +08:00
} from '@/api/api.js';
// #endif
2024-01-27 21:16:35 +08:00
// #ifdef H5
2023-12-20 21:41:47 +08:00
import {
follow
} from '@/api/public.js';
// #endif
import {
getShare
} from '@/api/public.js';
import a_seckill from './components/a_seckill';
import b_combination from './components/b_combination';
import c_bargain from './components/c_bargain';
import d_coupons from './components/d_coupons';
import promotion from './components/promotion';
import goodsRank from './components/goodsRank';
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
import aTip from '@/components/add-tips/index.vue';
import {
goShopDetail
} from '@/libs/order.js'
import {
goPage
} from '@/libs/iframe.js'
import {
mapGetters
} from "vuex";
import {
getCategoryList,
getProductHot,
getGroomList
} from '@/api/store.js';
import {
2024-01-27 21:16:35 +08:00
silenceBindingSpread,silenceBindingChannelId,
2023-12-20 21:41:47 +08:00
getCityList
} from '@/utils';
import animationType from '@/utils/animationType.js'
// #ifndef MP
import {
getWechatConfig
} from "@/api/public";
// #endif
import Loading from '@/components/Loading/index.vue';
const arrTemp = ["beforePay", "afterPay", "createBargain", "pink"];
export default {
computed: mapGetters(['isLogin', 'uid']),
components: {
'seckill': a_seckill,
'combination': b_combination,
'bargain': c_bargain,
'coupons': d_coupons,
goodsRank,
promotion,
Loading,
aTip
},
data() {
return {
showSkeleton: true, //骨架屏显示隐藏
isNodes: 0, //控制什么时候开始抓取元素节点,只要数值改变就重新抓取
loaded: false,
loading: false,
isAuto: false, //没有授权的不会自动授权
isShowAuth: false, //是否隐藏授权
statusBarHeight: statusBarHeight,
navIndex: 0,
navTop: [],
followUrl: "",
followHid: true,
followCode: false,
logoUrl: "",
imgUrls: [{
url: '',
pic: '',
id: '',
name: ''
}],
menus: [{
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, {
url: '',
pic: '',
id: '',
name: ''
}, ],
indicatorDots: false,
circular: true,
autoplay: true,
interval: 2500,
duration: 500,
window: false,
navH: "",
ProductNavindex: 0,
marTop: 0,
sortProduct: [],
hostProduct: [],
hotPage: 1,
hotLimit: 10,
hotScroll: false,
explosiveMoney: [{
title: ''
}, {
title: ''
}, {
title: ''
}, {
title: ''
}], //首页超值爆款
searchH: 0,
goodType: 0, //精品推荐Type
goodScroll: true, //精品推荐开关
params: { //精品推荐分页
page: 1,
limit: 10,
channelId:0,
2023-12-20 21:41:47 +08:00
},
tempArr: [], //精品推荐临时数组
roll: [], // 新闻简报
site_name: '', //首页title
iSshowH: false,
configApi: {}, //分享类容配置
privacyStatus: false, // 隐私政策是否同意过
tabsScrollLeft: 0, // tabs当前偏移量
scrollLeft: 0,
listActive: 0, // 当前选中项
// duration: 2 // 下划线动画时长
theme: 'theme1',
imgHost: '',
picBg: 'crmebimage/change/new_header/new_header1.png',
appUpdate: {},
wxText: "点击添加到我的小程序,微信首页下拉即可访问商城。",
cardShow: 1, //首页商品列表模板配置1 精品推荐 2 热门榜单 3首发新品 4促销单品
2024-02-28 11:33:23 +08:00
locationStatus: false,
showwait:false
2023-12-20 21:41:47 +08:00
}
},
watch: {
ProductNavindex(newVal) { // 监听当前选中项
this.setTabList()
},
listActive(newVal) { // 监听当前选中项
this.setTabList()
}
},
onLaunch: function() {
//this.isNodes++;
},
mounted() {
this.setTabList()
},
onLoad(options) {
2024-02-28 16:04:00 +08:00
this.getipdz()
2024-02-27 09:45:51 +08:00
// const env = uni.getEnv();
if(uni.getStorageSync('channelId')){
this.params.channelId=uni.getStorageSync('channelId')
}
2024-02-27 09:45:51 +08:00
// 获取系统信息
const systemInfo = uni.getSystemInfoSync();
2024-03-13 14:47:41 +08:00
// console.log(systemInfo,'systemInfosystemInfo');
2024-02-27 09:45:51 +08:00
// 判断当前环境
// #ifdef H5
// var app_type = this.isWeiXin() ? 'weixinh5' : 'h5';
// var app_type_name = this.isWeiXin() ? '微信公众号' : 'H5';
// #endif
// #ifdef MP-WEIXIN
var app_type = 'weixin';
var app_type_name = '微信小程序';
// #endif
// #ifdef MP-ALIPAY
var app_type = 'aliapp';
var app_type_name = '支付宝小程序';
// #endif
// #ifdef MP-BAIDU
var app_type = 'baiduapp';
var app_type_name = '百度小程序';
// #endif
// #ifdef MP-TOUTIAO
var app_type = 'MP-TOUTIAO';
var app_type_name = '头条小程序';
// #endif
// #ifdef MP-QQ
var app_type = 'MP-QQ';
var app_type_name = 'QQ小程序';
// #endif
this.payType=app_type
console.log('app_type_name',app_type_name);
2024-02-27 09:45:51 +08:00
uni.setStorageSync('systemInfo', systemInfo.uniPlatform);
// const storedSystemInfo = uni.getStorageSync('systemInfo');
2024-02-27 09:45:51 +08:00
// console.log('存储的系统信息:', storedSystemInfo);
// if (systemInfo.uniPlatform === 'android' || systemInfo.uniPlatform === 'ios') {
// console.log('当前环境是 App');
// } else if (systemInfo.uniPlatform === 'mp-weixin') {
// console.log('当前环境是微信小程序');
// } else if (systemInfo.uniPlatform === 'h5') {
// console.log('当前环境是 H5');
// } else if (systemInfo.uniPlatform === 'mp-alipay') {
// console.log('当前环境是支付宝小程序');
// } else if (systemInfo.uniPlatform === 'mp-toutiao') {
// console.log('当前环境是字节跳动小程序');
// } else {
// console.log('未知环境');
// }
2023-12-20 21:41:47 +08:00
if (app.globalData.isIframe) {
setTimeout(() => {
let active;
document.getElementById('pageIndex').children.forEach(dom => {
dom.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
if (dom === active) return;
dom.classList.add('borderShow');
active && active.classList.remove('borderShow');
active = dom;
})
})
});
}
setTimeout(() => {
this.isNodes++;
}, 100);
var that = this;
// #ifdef APP-PLUS
this.appVersionConfig(); //APP版本检测
// #endif
// 获取系统信息
uni.getSystemInfo({
success(res) {
that.$store.commit("SYSTEM_PLATFORM", res.platform);
}
});
let self = this
//根据换色配置动态获取‘新闻简报’图片
getTheme().then(resP => {
app.globalData.theme = `theme${Number(resP.data.value)}`
self.theme = `theme${Number(resP.data.value)}`;
self.picBg = `crmebimage/change/new_header/new_header${Number(resP.data.value)}.png`;
})
// #ifdef MP
// 获取小程序头部高度
this.navH = app.globalData.navHeight;
let info = uni.createSelectorQuery().select(".mp-header");
info.boundingClientRect(function(data) {
self.marTop = data.height
self.poTop = Number(data.height) + 84
}).exec()
if (options.scene) { // 仅仅小程序扫码进入
let qrCodeValue = this.$util.getUrlParams(decodeURIComponent(options.scene));
let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
app.globalData.spread = mapeMpQrCodeValue.spread;
2024-01-27 21:16:35 +08:00
app.globalData.channelId = mapeMpQrCodeValue.channelId;
2023-12-20 21:41:47 +08:00
}
if (options.spread) app.globalData.spread = options.spread; //非小程序扫码进入情况下直接获取url中的分销员id保存在globalDta中
2024-01-27 21:16:35 +08:00
if (options.channelId) app.globalData.channelId = options.channelId; //非小程序扫码进入情况下直接获取url中的分销员id保存在globalDta中
2023-12-20 21:41:47 +08:00
// #endif
// #ifndef MP || APP-PLUS
this.navH = 0;
// #endif
this.getIndexConfig();
// #ifdef MP || APP-PLUS
this.getTemlIds()
// #endif
if (this.isLogin && parseInt(app.globalData.spread) > 0) {
silenceBindingSpread()
}
2024-01-27 21:16:35 +08:00
if (this.isLogin && parseInt(app.globalData.channelId) > 0) {
silenceBindingChannelId()
}
if (this.isLogin && parseInt(options.channelId) > 0) {
silenceBindingChannelId()
}
2024-02-28 16:04:00 +08:00
2024-02-28 11:33:23 +08:00
// #ifdef H5
var app_type = this.isWeiXin() ? 'weixinh5' : 'h5';
var app_type_name = this.isWeiXin() ? '微信公众号' : 'H5';
// #endif
if(app_type=='weixinh5'){
this.showwait=true
}
2023-12-20 21:41:47 +08:00
},
onShow() {
console.log(this.$u.sys(),'aaa')
2024-03-13 14:47:41 +08:00
// this.getCurrentLocation()
// this.getPosition()
// this.getPosition()
2024-02-27 15:35:03 +08:00
let self = this;
2024-02-28 11:33:23 +08:00
// if (!self.$Cache.getItem('cityList')) getCityList()
2024-02-27 15:35:03 +08:00
// #ifdef APP-PLUS
let barHeight = uni.getSystemInfoSync().statusBarHeight;
self.marTop = barHeight + 40; //刘海屏
setTimeout(() => {
if (self.appUpdate.openUpgrade == 'true') {
self.appVersionConfig();
}
}, 1000)
// #endif
uni.showTabBar();
2024-02-28 16:04:00 +08:00
2024-02-28 11:33:23 +08:00
// console.log('进入了首页');
// const id = uni.getStorageSync('openid');
2024-02-28 11:33:23 +08:00
// if(codeValue){
// console.log('登陆成功',id);
// uni.setStorageSync('openid', codeValue);
2024-02-28 16:04:00 +08:00
//
2024-02-28 11:33:23 +08:00
// if(stause){
2024-02-28 11:33:23 +08:00
// console.log('进入判断1');
2024-02-28 11:33:23 +08:00
// }else{
// console.log('进入判断2');
// // uni.switchTab({
// // url:'/pages/user/index'
// // })
// }
// }else{
2024-02-28 11:33:23 +08:00
// }
// let self = this;
// if (!self.$Cache.getItem('cityList')) getCityList()
// // #ifdef APP-PLUS
// let barHeight = uni.getSystemInfoSync().statusBarHeight;
// self.marTop = barHeight + 40; //刘海屏
// setTimeout(() => {
// if (self.appUpdate.openUpgrade == 'true') {
// self.appVersionConfig();
// }
// }, 1000)
2023-12-20 21:41:47 +08:00
// #endif
uni.showTabBar();
2024-03-13 14:47:41 +08:00
2024-02-01 21:14:26 +08:00
// 调用记录ip
2024-02-28 16:04:00 +08:00
// this.getipdz()
2024-03-13 14:47:41 +08:00
2023-12-20 21:41:47 +08:00
},
methods: {
2024-03-13 14:47:41 +08:00
getPosition(){
let that =this
uni.getLocation({
type: 'wgs84',
success: function (lb) {
console.log('位置信息',lb);
console.log('当前位置的经度:' + lb.longitude);
console.log('当前位置的纬度:' + lb.latitude);
that.latitude = lb.latitude;
that.longitude = lb.longitude;
},
})
},
2024-02-28 11:33:23 +08:00
isWeiXin() {
// #ifndef H5
return false;
// #endif
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
},
2024-03-13 14:47:41 +08:00
// 在组件内部调用该函数可以获取当前坐标
getCurrentLocation() {
if (navigator.geolocation) { // 判断设备支持地理定位功能
navigator.geolocation.getCurrentPosition(this.showPosition); // 获取当前位置信息并传递给 showPosition 方法处理
} else {
console.log("不支持地理定位");
}
},
// 显示位置信息的方法
showPosition(position) {
const latitude = position.coords.latitude; // 经度
const longitude = position.coords.longitude; // 纬度
console.log(`当前位置:${latitude} , ${longitude}`);
},
2024-02-07 16:58:08 +08:00
// 获取IP地址
getipdz(){
2024-02-28 16:04:00 +08:00
let codeValue= uni.getStorageSync('channelId');
if(uni.getStorageSync('channelcs')){
}else{
let cs=false
uni.setStorageSync('channelcs', cs);
}
let acc =uni.getStorageSync('channelcs');
2024-03-13 14:47:41 +08:00
// console.log(acc,'&&acc&&acc');
2024-02-28 16:04:00 +08:00
if(this.isLogin){
2024-03-13 14:47:41 +08:00
const systemInfo = uni.getSystemInfoSync();
let data= {
browserName:systemInfo.browserName,
deviceModel:systemInfo.deviceModel,
address:'',
longitude:'',
latitude:''
}
console.log(systemInfo);
const that = this;
uni.getLocation({
type: 'wgs84',
success: function (lb) {
console.log('位置信息',lb);
console.log('当前位置的经度:' + lb.longitude);
console.log('当前位置的纬度:' + lb.latitude);
that.latitude = lb.latitude;
that.longitude = lb.longitude;
2024-03-26 17:12:46 +08:00
that.$jsonp('https://api.map.baidu.com/reverse_geocoding/v3/?ak=E8WVg8s0zMvu3Bb3A9SQTy7xPzTJrX4c&output=json&coordtype=wgs84&location='+lb.latitude+ ',' + lb.longitude,
2024-03-13 14:47:41 +08:00
).then(res => {
console.log(res,'百度')
let add=res.result.addressComponent
data.address= add.province+add.city+add.district+add.town+add.street;
data.longitude=lb.longitude
data.latitude=lb.latitude
getip(data).then(res => {
console.log(data.address,111)
})
})
2024-03-26 17:12:46 +08:00
.catch(error => {
console.log(error,'errorerror');
data.longitude=lb.longitude
data.latitude=lb.latitude
// 处理接口请求错误的情况
getip(data).then(res => {
console.log(data.address,111)
})
});
2024-03-13 14:47:41 +08:00
},
fail:function(err){
console.log(err);
getip(data).then(res => {
console.log(res,111)
})
}
})
setTimeout(() => {
}, 2000);
2024-02-28 16:04:00 +08:00
}
if(codeValue&&acc==false){
console.log(codeValue,'codeValuecodeValuecodeValue');
uni.request({
url: 'https://yruibao.com/prod/api/front/channel/record?channelId='+codeValue,
// url: 'http://192.168.2.26:20411/api/front/channel/record?channelId='+codeValue, //仅为示例,并非真实接口地址。
// data: data,
method:'GET',
success: (res) => {
let add=true
uni.setStorageSync('channelcs', add);
},
fail:(err)=>{
}
});
}
2024-02-01 21:14:26 +08:00
},
2023-12-20 21:41:47 +08:00
menusTap(url) {
goPage().then(res => {
if (url == '/pages/goods_cate/goods_cate') {
uni.switchTab({
url: url
})
} else {
uni.navigateTo({
animationType: animationType.type,
animationDuration: animationType.duration,
url: url
})
}
})
},
toNewsList() {
uni.navigateTo({
animationType: animationType.type,
animationDuration: animationType.duration,
url: '/pages/news_list/index'
})
},
bindEdit(name) {
if (app.globalData.isIframe) {
window.parent.postMessage({
name: name
},
'*'
);
return;
}
},
reloadData() {
this.showSkeleton = false
},
// scroll-view滑动事件
scroll(e) {
this.scrollLeft = e.detail.scrollLeft;
},
setTabList() {
this.$nextTick(() => {
this.scrollIntoView()
})
},
// 计算tabs位置
scrollIntoView() { // item滚动
let lineLeft = 0;
this.getElementData('#tab_list', (data) => {
let list = data[0]
this.getElementData(`#tab_item`, (data) => {
let el = data[this.listActive]
lineLeft = el.width / 2 + (-list.left) + el.left - list.width / 2 - this.scrollLeft
this.tabsScrollLeft = this.scrollLeft + lineLeft
})
})
},
getElementData(el, callback) {
uni.createSelectorQuery().in(this).selectAll(el).boundingClientRect().exec((data) => {
callback(data[0]);
});
},
2024-02-01 21:14:26 +08:00
xieyiApp(){
2023-12-20 21:41:47 +08:00
uni.navigateTo({
url: '/pages/users/web_page/index?webUel=https://admin.java.crmeb.net/useragreement/xieyi.html&title=协议内容'
})
},
// #ifdef APP-PLUS
2024-02-01 21:14:26 +08:00
xieyiApp(){
2023-12-20 21:41:47 +08:00
uni.navigateTo({
animationType: animationType.type,
animationDuration: animationType.duration,
url: '/pages/users/web_page/index?webUel=https://admin.java.crmeb.net/useragreement/xieyi.html&title=协议内容'
})
},
// 同意隐私协议
2024-02-01 21:14:26 +08:00
confirmApp(){
2023-12-20 21:41:47 +08:00
uni.setStorageSync('privacyStatus', true)
this.privacyStatus = false
},
// 关闭Model
2024-02-01 21:14:26 +08:00
closeModel(){
2023-12-20 21:41:47 +08:00
this.privacyStatus = false
},
// #endif
// #ifdef MP || APP-PLUS
2024-02-01 21:14:26 +08:00
getTemlIds(){
for(var i in arrTemp){
2023-12-20 21:41:47 +08:00
this.getTem(arrTemp[i]);
}
},
2024-02-01 21:14:26 +08:00
getTem(data){
2023-12-20 21:41:47 +08:00
getTemlIds({
type: data
}).then(res => {
2024-02-01 21:14:26 +08:00
if (res.data){
2023-12-20 21:41:47 +08:00
let arr = res.data.map((item) => {
return item.tempId
})
wx.setStorageSync('tempID' + data, arr);
}
});
},
// #endif
// 关闭优惠券弹窗
2024-02-01 21:14:26 +08:00
onColse(){
2023-12-20 21:41:47 +08:00
this.$set(this, "window", false);
},
/**
* 获取我的推荐
*/
2024-02-01 21:14:26 +08:00
get_host_product: function(){
2023-12-20 21:41:47 +08:00
let that = this;
that.loading = true;
if (that.hotScroll) return
getProductHot(
that.hotPage,
that.hotLimit,
).then(res => {
that.hotPage++
that.hotScroll = res.data.list.length < that.hotLimit
that.hostProduct = that.hostProduct.concat(res.data.list)
});
},
// 首页数据
2024-02-01 21:14:26 +08:00
getIndexConfig: function(){
2023-12-20 21:41:47 +08:00
let that = this;
//this.isNodes++;
getIndexData().then(res => {
that.$set(that, "logoUrl", res.data.logoUrl);
let imgHost = res.data.logoUrl.split('crmebimage')[0];
that.imgHost = imgHost;
that.$Cache.set('imgHost', imgHost);
that.$set(that, "imgUrls", res.data.banner);
that.$set(that, "menus", res.data.menus);
that.$set(that, "roll", res.data.roll ? res.data.roll : []);
2024-02-01 21:14:26 +08:00
that.$set(that, 'cardShow', res.data.homePageSaleListStyle == '' ? 1 : Number(res.data.homePageSaleListStyle)); //首页商品列表模板获取配置
// console.log(this.menus,11)
2023-12-20 21:41:47 +08:00
// 保存商品分类页配置
that.$Cache.setItem({
name: 'categoryConfig',
value: {
categoryConfig: res.data.categoryPageConfig,
isShowCategory: res.data.isShowCategory
}
});
// #ifdef H5 || APP-PLUS
that.$store.commit("SET_CHATURL", res.data.yzfUrl);
Cache.set('chatUrl', res.data.yzfUrl);
// #endif
Cache.setItem({
name: 'chatConfig',
value: {
consumer_hotline: res.data.consumerHotline,
telephone_service_switch: res.data.telephoneServiceSwitch
}
});
that.$set(that, "explosiveMoney", res.data.explosiveMoney);
that.goodType = res.data.explosiveMoney[0].type
this.getGroomList();
this.shareApi();
this.reloadData();
// #ifdef MP
if (!Cache.has('user_latitude')) {
this.locationStatus = true;
}
// #endif
});
},
2024-02-01 21:14:26 +08:00
appVersionConfig(){
2023-12-20 21:41:47 +08:00
var that = this;
//app升级
2024-01-27 21:16:35 +08:00
// 获取本地应用资源版本号
2023-12-20 21:41:47 +08:00
getAppVersion().then(res => {
that.$set(that.appUpdate, 'androidAddress', res.data.androidAddress);
that.$set(that.appUpdate, 'appVersion', res.data.appVersion);
that.$set(that.appUpdate, 'iosAddress', res.data.iosAddress);
that.$set(that.appUpdate, 'openUpgrade', res.data.openUpgrade);
plus.runtime.getProperty(plus.runtime.appid, function(inf) {
let nowVersion = (inf.version).split('.').join('');
let appVersion = (res.data.appVersion).split('.').join('');
uni.getSystemInfo({
success: (res) => {
if (appVersion > nowVersion) {
uni.showModal({
title: '更新提示',
content: '发现新版本,是否前去下载?',
showCancel: that.appUpdate.openUpgrade ==
'false' ? true : false,
cancelColor: '#eeeeee',
confirmColor: '#FF0000',
success(response) {
if (response.confirm) {
switch (res.platform) {
case "android":
plus.runtime.openURL(that
.appUpdate
.androidAddress);
break;
case "ios":
plus.runtime.openURL(encodeURI(
that.appUpdate
.iosAddress));
break;
}
}
}
});
}
}
})
});
})
},
shareApi: function() {
getShare().then(res => {
this.$set(this, 'configApi', res.data);
this.$set(this, "site_name", res.data.title);
uni.setNavigationBarTitle({
title: this.site_name
})
// #ifdef H5
this.setOpenShare(res.data);
// #endif
})
},
// 微信分享;
setOpenShare: function(data) {
let that = this;
if (that.$wechat.isWeixin()) {
let configAppMessage = {
desc: data.synopsis,
title: data.title,
link: location.href,
imgUrl: data.img
};
that.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"],
configAppMessage);
}
},
// 授权关闭
authColse: function(e) {
this.isShowAuth = e
},
// 首发新品切换
ProductNavTab(item, index) {
if (this.listActive !== index) {
this.listActive = index
this.goodType = item.type
this.listActive = index
this.ProductNavindex = index
this.tempArr = []
this.params.page = 1
this.goodScroll = true
let onloadH = true
this.getGroomList(onloadH)
}
},
// 首发新品详情
goDetail(item) {
if (item.activityH5 && item.activityH5.type === "2" && !this.isLogin) {
toLogin();
} else {
goShopDetail(item, this.uid).then(res => {
uni.navigateTo({
animationType: animationType.type,
animationDuration: animationType.duration,
url: `/pages/goods_details/index?id=${item.id}`
})
})
}
},
// 精品推荐
getGroomList(onloadH) {
this.loading = true
let type = this.goodType;
if (!this.goodScroll) return
if (onloadH) {
this.iSshowH = true
}
getGroomList(type, this.params).then(({
data
}) => {
this.iSshowH = false
this.loading = false
this.goodScroll = data.list.length >= this.params.limit
this.params.page++
this.tempArr = this.tempArr.concat(data.list)
})
},
stopTouchMove() {
return true //禁止新闻swiper手动滑动
},
modelCancel() {
this.locationStatus = false;
},
confirmModel() {
uni.getLocation({
type: 'gcj02',
altitude: true,
geocode: true,
success: function(res) {
try {
uni.setStorageSync('user_latitude', res.latitude);
uni.setStorageSync('user_longitude', res.longitude);
} catch {}
}
});
this.locationStatus = false;
}
},
mounted() {
let self = this;
// #ifdef H5 || APP-PLUS
// 获取H5 搜索框高度
let appSearchH = uni.createSelectorQuery().select(".serch-wrapper");
appSearchH.boundingClientRect(function(data) {
self.searchH = data.height
}).exec()
// #endif
},
/**
* 用户点击右上角分享
*/
// #ifdef MP
onShareAppMessage: function() {
return {
title: this.configApi.title,
imageUrl: this.configApi.img,
desc: this.configApi.synopsis,
path: '/pages/index/index'
};
},
// #endif
// 滚动到底部
onReachBottom() {
if (this.navIndex == 0) {
// 首页加载更多
if (this.params.page != 1) {
this.getGroomList();
}
} else {
// 分类栏目加载更多
if (this.sortProduct.length > 0) {
//this.get_product_list();
} else {
this.get_host_product();
}
}
},
}
</script>
<style>
page {
height: auto;
display: flex;
flex-direction: column;
height: 100%;
/* #ifdef H5 */
background-color: #fff;
/* #endif */
}
</style>
<style lang="scss" scoped>
2024-02-28 11:33:23 +08:00
.mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 9); /* 半透明黑色 */
z-index: 999; /* 使遮罩位于其他元素之上 */
}
2023-12-20 21:41:47 +08:00
.notice {
width: 100%;
height: 70rpx;
border-radius: 10rpx;
background-color: #fff;
margin-bottom: 25rpx;
line-height: 70rpx;
padding: 0 14rpx;
.line {
color: #CCCCCC;
}
.pic {
width: 130rpx;
height: 36rpx;
background-size: 100%;
// @include index_new_img(theme);
image {
width: 100%;
height: 100%;
display: block !important;
}
}
.swipers {
height: 100%;
width: 444rpx;
overflow: hidden;
swiper {
height: 100%;
width: 100%;
overflow: hidden;
font-size: 22rpx;
color: #333333;
}
}
.iconfont {
color: #999999;
font-size: 20rpx;
}
}
.sticky-box {
/* #ifndef APP-PLUS-NVUE */
display: flex;
position: -webkit-sticky;
/* #endif */
position: sticky;
/* #ifdef H5*/
top: var(--window-top);
/* #endif */
z-index: 99;
flex-direction: row;
margin: 0px;
background: #f5f5f5;
padding: 30rpx 0;
/* #ifdef MP || APP-PLUS*/
//top: 110rpx;
/* #endif */
}
.tab {
position: relative;
display: flex;
font-size: 28rpx;
white-space: nowrap;
&__item {
flex: 1;
padding: 0 20rpx;
text-align: center;
height: 60rpx;
line-height: 60rpx;
color: #666;
&.active {
color: #09C2C9;
}
}
}
.scroll-view_H {
white-space: nowrap;
width: 100%;
}
.privacy-wrapper {
z-index: 999;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #7F7F7F;
.privacy-box {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 560rpx;
padding: 50rpx 45rpx 0;
background: #fff;
border-radius: 20rpx;
.title {
text-align: center;
font-size: 32rpx;
text-align: center;
color: #333;
font-weight: 700;
}
.content {
margin-top: 20rpx;
line-height: 1.5;
font-size: 26rpx;
color: #666;
text-indent: 54rpx;
i {
font-style: normal;
color: $theme-color;
}
}
.btn-box {
margin-top: 40rpx;
text-align: center;
font-size: 30rpx;
.btn-item {
height: 82rpx;
line-height: 82rpx;
background: linear-gradient(90deg, #F67A38 0%, #F11B09 100%);
color: #fff;
border-radius: 41rpx;
}
.btn {
padding: 30rpx 0;
}
}
}
}
.page-index {
display: flex;
flex-direction: column;
min-height: 100%;
background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
.header {
width: 100%;
@include main_bg_color(theme) padding: 28rpx 30rpx;
.serch-wrapper {
align-items: center;
.logo {
width: 118rpx;
height: 42rpx;
margin-right: 24rpx;
}
image {
width: 118rpx;
height: 42rpx;
}
.input {
display: flex;
align-items: center;
width: 546rpx;
height: 58rpx;
padding: 0 0 0 30rpx;
background: rgba(247, 247, 247, 1);
border: 1px solid rgba(241, 241, 241, 1);
border-radius: 29rpx;
color: #BBBBBB;
font-size: 26rpx;
.iconfont {
margin-right: 20rpx;
font-size: 26rpx;
color: #666666;
}
}
}
.tabNav {
padding-top: 24rpx;
}
}
/* #ifdef MP || APP-PLUS */
.mp-header {
z-index: 999;
position: fixed;
left: 0;
top: 0;
width: 100%;
/* #ifdef H5 */
padding-bottom: 20rpx;
/* #endif */
@include main_bg_color(theme);
.serch-wrapper {
height: 100%;
align-items: center;
padding: 0 50rpx 0 53rpx;
image {
width: 118rpx;
height: 42rpx;
margin-right: 30rpx;
}
.input {
display: flex;
align-items: center;
/* #ifdef MP */
width: 305rpx;
/* #endif */
/* #ifdef APP-PLUS */
flex: 1;
/* #endif */
height: 50rpx;
padding: 0 0 0 30rpx;
background: rgba(247, 247, 247, 1);
border: 1px solid rgba(241, 241, 241, 1);
border-radius: 29rpx;
color: #BBBBBB;
font-size: 28rpx;
.iconfont {
margin-right: 20rpx;
}
}
}
}
/* #endif */
.page_content {
background-color: #f5f5f5;
/* #ifdef H5 */
// margin-top: 20rpx !important;
/* #endif */
padding: 0 30rpx;
.swiper {
position: relative;
width: 100%;
height: 320rpx;
margin: 0 auto;
border-radius: 10rpx;
overflow: hidden;
margin-bottom: 25rpx;
/* #ifdef MP */
z-index: 10;
margin-top: 20rpx;
/* #endif */
swiper,
.swiper-item,
image {
width: 100%;
height: 320rpx;
border-radius: 10rpx;
}
}
.nav {
padding-bottom: 26rpx;
background: #fff;
opacity: 1;
border-radius: 14rpx;
width: 100%;
margin-bottom: 30rpx;
.item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 20%;
margin-top: 30rpx;
image {
width: 82rpx;
height: 82rpx;
}
}
}
.nav-bd {
display: flex;
align-items: center;
justify-content: space-between;
.item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.txt {
font-size: 32rpx;
color: #282828;
}
.label {
display: flex;
align-items: center;
justify-content: center;
width: 124rpx;
height: 32rpx;
margin-top: 5rpx;
font-size: 24rpx;
color: #999;
}
&.active {
color: $theme-color;
.txt {
@include main-color(theme);
}
.label {
// background: linear-gradient(90deg, $bg-star 0%, $bg-end 100%);
@include linear-gradient(theme);
border-radius: 16rpx;
color: #fff;
}
}
}
}
.index-product-wrapper {
margin-bottom: 110rpx;
&.on {
min-height: 1500rpx;
}
.list-box {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
width: 335rpx;
margin-bottom: 20rpx;
background-color: #fff;
border-radius: 10rpx;
overflow: hidden;
image {
width: 100%;
height: 330rpx;
}
.text-info {
padding: 10rpx 20rpx 15rpx;
.title {
color: #222222;
}
.old-price {
margin-top: 8rpx;
font-size: 26rpx;
color: #AAAAAA;
text-decoration: line-through;
text {
margin-right: 2px;
font-size: 20rpx;
}
}
.price {
display: flex;
align-items: flex-end;
@include price-color(theme);
font-size: 34rpx;
font-weight: 800;
margin-top: 0;
text {
padding-bottom: 4rpx;
font-size: 24rpx;
font-weight: 800;
}
.txt {
display: flex;
align-items: center;
justify-content: center;
width: 28rpx;
height: 28rpx;
margin-left: 15rpx;
margin-bottom: 10rpx;
border: 1px solid $theme-color;
border-radius: 4rpx;
font-size: 22rpx;
font-weight: normal;
}
}
}
}
&.on {
display: flex;
}
}
}
}
}
.pictrue {
position: relative;
}
.fixed {
z-index: 100;
position: fixed;
left: 0;
top: 0;
background: linear-gradient(90deg, red 50%, #ff5400 100%);
}
.mores-txt {
width: 100%;
align-items: center;
justify-content: center;
height: 70rpx;
color: #999;
font-size: 24rpx;
.iconfont {
margin-top: 2rpx;
font-size: 20rpx;
}
}
.menu-txt {
font-size: 24rpx;
color: #454545;
}
.mp-bg {
position: absolute;
left: 0;
/* #ifdef H5 */
top: 98rpx;
/* #endif */
width: 100%;
height: 344rpx;
@include index-gradient(theme);
}
2024-01-27 21:16:35 +08:00
</style>