去除小程序退出登录按钮,修改首页轮播图颜色不变化的问题
This commit is contained in:
176
pages/home/components/Banner.vue
Normal file
176
pages/home/components/Banner.vue
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
<template>
|
||||||
|
<view class="banner-swiper-box">
|
||||||
|
<canvas canvas-id="colorThief" class="hide-canvas"></canvas>
|
||||||
|
<swiper class="banner-carousel shopro-selector-rect" circular @change="swiperChange" :autoplay="true">
|
||||||
|
<swiper-item v-for="(item, index) in list" :key="index" class="carousel-item" @tap="routerTo(item.path)">
|
||||||
|
<image class="swiper-image " :src="item.pic" @click="goRoll(item)" mode="widthFix" lazy-load>
|
||||||
|
</image>
|
||||||
|
</swiper-item>
|
||||||
|
</swiper>
|
||||||
|
<view class="banner-swiper-dots">
|
||||||
|
<text :class="swiperCurrent === index ? 'banner-dot-active' : 'banner-dot'"
|
||||||
|
v-for="(dot, index) in list.length" :key="index"></text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import colorThief from 'miniapp-color-thief';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
swiperCurrent: 0, //轮播下标
|
||||||
|
webviewId: 0,
|
||||||
|
bgcolorAry: [],
|
||||||
|
list: []
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
banner: {
|
||||||
|
type: Array,
|
||||||
|
default: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created: async function () {
|
||||||
|
await this.doColorThief();
|
||||||
|
|
||||||
|
},
|
||||||
|
async mounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {
|
||||||
|
banner(next) {
|
||||||
|
this.list = next;
|
||||||
|
this.doColorThief()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async doColorThief() {
|
||||||
|
let that = this;
|
||||||
|
// 获取轮播图
|
||||||
|
let item = this.list[this.swiperCurrent];
|
||||||
|
if(!item){
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 获取轮播图颜色
|
||||||
|
let bgcolor = this.bgcolorAry[this.swiperCurrent];
|
||||||
|
// 颜色不存在
|
||||||
|
if (!bgcolor) {
|
||||||
|
let ctx = uni.createCanvasContext('colorThief', that.$scope);
|
||||||
|
if (0 === that.webviewId || ctx.webviewId === that.webviewId) {
|
||||||
|
that.webviewId = ctx.webviewId;
|
||||||
|
uni.getImageInfo({
|
||||||
|
src: item.pic,
|
||||||
|
success: function (image) {
|
||||||
|
ctx.drawImage(image.path, 0, 0, image.width, image.height);
|
||||||
|
ctx.draw(true, function (e) {
|
||||||
|
console.log(e)
|
||||||
|
uni.canvasGetImageData({
|
||||||
|
canvasId: 'colorThief',
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
width: parseInt(image.width),
|
||||||
|
height: parseInt(image.height),
|
||||||
|
success(res) {
|
||||||
|
let newBgcolor = colorThief(res.data)
|
||||||
|
.color()
|
||||||
|
.getHex();
|
||||||
|
that.$set(that.bgcolorAry, that
|
||||||
|
.swiperCurrent,
|
||||||
|
newBgcolor);
|
||||||
|
that.$emit('getbgcolor', newBgcolor);
|
||||||
|
},
|
||||||
|
fail: function (error) {
|
||||||
|
}
|
||||||
|
}, that.$scope);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
fail: function (error) {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
that.$set(item, 'bgcolor', bgcolor);
|
||||||
|
that.$emit('getbgcolor', bgcolor);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
swiperChange(e) {
|
||||||
|
this.swiperCurrent = e.detail.current;
|
||||||
|
this.doColorThief();
|
||||||
|
let bgcolor = this.bgcolorAry[this.swiperCurrent];
|
||||||
|
this.$emit('getbgcolor', bgcolor);
|
||||||
|
},
|
||||||
|
|
||||||
|
// 路由跳转
|
||||||
|
goRoll(item) {
|
||||||
|
if (item.uniapp_url) {
|
||||||
|
this.$yrouter.push(item.uniapp_url)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
// 轮播
|
||||||
|
.banner-swiper-box {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-swiper-box,
|
||||||
|
.banner-carousel {
|
||||||
|
width: 750rpx;
|
||||||
|
height: 350upx;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.carousel-item {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
// padding: 0 28upx;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-image {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
// border-radius: 10upx;
|
||||||
|
// background: #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-swiper-dots {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
bottom: 20rpx;
|
||||||
|
z-index: 5;
|
||||||
|
|
||||||
|
.banner-dot {
|
||||||
|
width: 14rpx;
|
||||||
|
height: 14rpx;
|
||||||
|
background: rgba(255, 255, 255, 1);
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-dot-active {
|
||||||
|
width: 14rpx;
|
||||||
|
height: 14rpx;
|
||||||
|
background: #a8700d;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.hide-canvas {
|
||||||
|
position: fixed !important;
|
||||||
|
top: -99999upx;
|
||||||
|
left: -99999upx;
|
||||||
|
z-index: -99999;
|
||||||
|
}
|
||||||
|
</style>
|
@ -22,21 +22,7 @@
|
|||||||
<image src="@/static/images/qr.png" />
|
<image src="@/static/images/qr.png" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<Banner :banner="banner" @getbgcolor="getbgcolor"></Banner>
|
||||||
<view class="banner-swiper-box" v-if="banner.length>0">
|
|
||||||
<canvas canvas-id="colorThief" class="hide-canvas"></canvas>
|
|
||||||
<swiper class="banner-carousel shopro-selector-rect" circular @change="swiperChange" :autoplay="true">
|
|
||||||
<swiper-item v-for="(item, index) in banner" :key="index" class="carousel-item "
|
|
||||||
@tap="routerTo(item.path)">
|
|
||||||
<image class="swiper-image " :src="item.pic" @click="goRoll(item)" mode="widthFix" lazy-load>
|
|
||||||
</image>
|
|
||||||
</swiper-item>
|
|
||||||
</swiper>
|
|
||||||
<view class="banner-swiper-dots">
|
|
||||||
<text :class="swiperCurrent === index ? 'banner-dot-active' : 'banner-dot'"
|
|
||||||
v-for="(dot, index) in banner.length" :key="index"></text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<uni-notice-bar scrollable="true" @click="goRoll(singNew)" single="true" :speed="10" showIcon="true"
|
<uni-notice-bar scrollable="true" @click="goRoll(singNew)" single="true" :speed="10" showIcon="true"
|
||||||
:text="singNew.info"></uni-notice-bar>
|
:text="singNew.info"></uni-notice-bar>
|
||||||
<view class="content_box home_content_box">
|
<view class="content_box home_content_box">
|
||||||
@ -56,7 +42,7 @@
|
|||||||
<!-- 促销单品
|
<!-- 促销单品
|
||||||
<PromoteProduct :detail="benefit"></PromoteProduct> -->
|
<PromoteProduct :detail="benefit"></PromoteProduct> -->
|
||||||
<!-- 直播 -->
|
<!-- 直播 -->
|
||||||
<Live :detail="live"></Live>
|
<!-- <Live :detail="live"></Live> -->
|
||||||
|
|
||||||
<!-- 为您推荐 -->
|
<!-- 为您推荐 -->
|
||||||
<PromotionGood :benefit="benefit"></PromotionGood>
|
<PromotionGood :benefit="benefit"></PromotionGood>
|
||||||
@ -66,8 +52,6 @@
|
|||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import colorThief from 'miniapp-color-thief';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
mapState,
|
mapState,
|
||||||
mapMutations,
|
mapMutations,
|
||||||
@ -81,10 +65,11 @@
|
|||||||
import Adv from '@/components/sh-adv'
|
import Adv from '@/components/sh-adv'
|
||||||
import Groupon from '@/components/sh-groupon.vue'
|
import Groupon from '@/components/sh-groupon.vue'
|
||||||
|
|
||||||
|
import Banner from './components/Banner';
|
||||||
import HotCommodity from './components/HotCommodity';
|
import HotCommodity from './components/HotCommodity';
|
||||||
import FirstNewProduct from './components/FirstNewProduct';
|
import FirstNewProduct from './components/FirstNewProduct';
|
||||||
import ProductsRecommended from './components/ProductsRecommended';
|
import ProductsRecommended from './components/ProductsRecommended';
|
||||||
import Live from './components/Live';
|
// import Live from './components/Live';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
getHomeData,
|
getHomeData,
|
||||||
@ -110,10 +95,11 @@
|
|||||||
Menu,
|
Menu,
|
||||||
Adv,
|
Adv,
|
||||||
Groupon,
|
Groupon,
|
||||||
|
Banner,
|
||||||
HotCommodity,
|
HotCommodity,
|
||||||
FirstNewProduct,
|
FirstNewProduct,
|
||||||
ProductsRecommended,
|
ProductsRecommended,
|
||||||
Live
|
// Live
|
||||||
},
|
},
|
||||||
props: {},
|
props: {},
|
||||||
data: function () {
|
data: function () {
|
||||||
@ -121,7 +107,6 @@
|
|||||||
CustomBar: this.CustomBar,
|
CustomBar: this.CustomBar,
|
||||||
StatusBar: this.StatusBar,
|
StatusBar: this.StatusBar,
|
||||||
formatMenus: [],
|
formatMenus: [],
|
||||||
bgcolorAry: [],
|
|
||||||
categoryCurrent: 0,
|
categoryCurrent: 0,
|
||||||
menuNum: 4,
|
menuNum: 4,
|
||||||
bgcolor: '',
|
bgcolor: '',
|
||||||
@ -242,7 +227,7 @@
|
|||||||
that.$set(that, 'combinationList', res.data.combinationList);
|
that.$set(that, 'combinationList', res.data.combinationList);
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
that.setOpenShare();
|
that.setOpenShare();
|
||||||
that.doColorThief()
|
// that.doColorThief()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -334,53 +319,9 @@
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
async doColorThief() {
|
|
||||||
let that = this;
|
|
||||||
let bannerItem = this.banner[this.swiperCurrent]
|
|
||||||
let bgcolorItem = this.bgcolorAry[this.swiperCurrent]
|
|
||||||
if (!bgcolorItem) {
|
|
||||||
let ctx = uni.createCanvasContext('colorThief', that);
|
|
||||||
if (0 === that.webviewId || ctx.webviewId === that.webviewId) {
|
|
||||||
that.webviewId = ctx.webviewId;
|
|
||||||
uni.getImageInfo({
|
|
||||||
src: bannerItem.pic,
|
|
||||||
success: function (image) {
|
|
||||||
ctx.drawImage(image.path, 0, 0, image.width, image.height);
|
|
||||||
ctx.draw(true, function (e) {
|
|
||||||
uni.canvasGetImageData({
|
|
||||||
canvasId: 'colorThief',
|
|
||||||
x: 0,
|
|
||||||
y: 0,
|
|
||||||
width: parseInt(image.width),
|
|
||||||
height: parseInt(image.height),
|
|
||||||
success(res) {
|
|
||||||
let bgcolor = colorThief(res.data).color()
|
|
||||||
.getHex();
|
|
||||||
|
|
||||||
that.bgcolorAry[that.swiperCurrent] = bgcolor
|
|
||||||
that.getbgcolor(bgcolor)
|
|
||||||
}
|
|
||||||
}, );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.getbgcolor(bgcolorItem)
|
|
||||||
|
|
||||||
}
|
|
||||||
},
|
|
||||||
swiperChange(e) {
|
|
||||||
this.swiperCurrent = e.detail.current;
|
|
||||||
this.doColorThief();
|
|
||||||
let bgcolor = this.bgcolorAry[this.swiperCurrent];
|
|
||||||
this.getbgcolor(bgcolor)
|
|
||||||
},
|
|
||||||
getbgcolor(e) {
|
getbgcolor(e) {
|
||||||
this.bgcolor = e;
|
this.bgcolor = e;
|
||||||
},
|
},
|
||||||
@ -442,64 +383,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.hide-canvas {
|
|
||||||
position: fixed !important;
|
|
||||||
top: -99999upx;
|
|
||||||
left: -99999upx;
|
|
||||||
z-index: -99999;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 轮播
|
|
||||||
.banner-swiper-box {
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner-swiper-box,
|
|
||||||
.banner-carousel {
|
|
||||||
width: 750rpx;
|
|
||||||
height: 350upx;
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.carousel-item {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
// padding: 0 28upx;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.swiper-image {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
// border-radius: 10upx;
|
|
||||||
// background: #ccc;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner-swiper-dots {
|
|
||||||
display: flex;
|
|
||||||
position: absolute;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
bottom: 20rpx;
|
|
||||||
z-index: 5;
|
|
||||||
|
|
||||||
.banner-dot {
|
|
||||||
width: 14rpx;
|
|
||||||
height: 14rpx;
|
|
||||||
background: rgba(255, 255, 255, 1);
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-right: 10rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner-dot-active {
|
|
||||||
width: 14rpx;
|
|
||||||
height: 14rpx;
|
|
||||||
background: #a8700d;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-right: 10rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cu-bar.fixed {
|
.cu-bar.fixed {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -43,20 +43,23 @@
|
|||||||
<input type="text" v-else value="未绑定" disabled class="id" />
|
<input type="text" v-else value="未绑定" disabled class="id" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="item acea-row row-between-wrapper" @click="goChangePassword()">
|
<!--
|
||||||
|
<view class="item acea-row row-between-wrapper" @click="goChangePassword()">
|
||||||
<view>密码</view>
|
<view>密码</view>
|
||||||
<view class="input acea-row row-between-wrapper">
|
<view class="input acea-row row-between-wrapper">
|
||||||
<text>点击修改密码</text>
|
<text>点击修改密码</text>
|
||||||
<text class="iconfont icon-suozi"></text>
|
<text class="iconfont icon-suozi"></text>
|
||||||
</view>
|
</view>
|
||||||
</view>-->
|
</view>
|
||||||
|
-->
|
||||||
</view>
|
</view>
|
||||||
<view class="modifyBnt bg-color-red" @click="submit">保存修改</view>
|
<view class="modifyBnt bg-color-red" @click="submit">保存修改</view>
|
||||||
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
<view
|
<view
|
||||||
class="logOut cart-color acea-row row-center-wrapper"
|
class="logOut cart-color acea-row row-center-wrapper"
|
||||||
@click="logout"
|
@click="logout"
|
||||||
v-if="$deviceType!='routine'"
|
|
||||||
>退出登录</view>
|
>退出登录</view>
|
||||||
|
<!-- #endif -->
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
Reference in New Issue
Block a user