Commit 2d1faf1f by 程智春

Merge branch 'nativehome_tst' of http://code.mayi888.com/chengmo/mayi-mp-shop into nativehome_tst

parents 633191d2 3282894e
...@@ -211,13 +211,6 @@ ...@@ -211,13 +211,6 @@
content: "\e6cf"; content: "\e6cf";
} }
page {
--main-color: #ffffff;
--minor-color: #ffffff;
--theme-color:#EF114C;
}
@font-face { @font-face {
font-family: "ant"; font-family: "ant";
src: url('//cdn.mayi888.com/static/font/ant-171b61a6fb.eot'); src: url('//cdn.mayi888.com/static/font/ant-171b61a6fb.eot');
......
<script> <script>
import shop from "@/api/shop"; import shop from "@/api/shop";
import {themeColor} from "@/utils/mayi"
export default { export default {
created() { created() {
// NODE_ENV // NODE_ENV
...@@ -10,7 +10,7 @@ export default { ...@@ -10,7 +10,7 @@ export default {
process.env.NODE_ENV == "development" || process.env.NODE_ENV == "development" ||
JSON.stringify(extConfig) == "{}" JSON.stringify(extConfig) == "{}"
) { ) {
extConfig = { mixid: "antgood" }; extConfig = { mixid: "antgood", shopid:67};
} }
console.log("1444444444", extConfig.mixid); console.log("1444444444", extConfig.mixid);
this.$store.commit("setExtConfig", extConfig.mixid); this.$store.commit("setExtConfig", extConfig.mixid);
...@@ -40,12 +40,12 @@ export default { ...@@ -40,12 +40,12 @@ export default {
// 初始 // 初始
this.getShopInfo(extConfig); this.getShopInfo(extConfig);
// 页面配置信息 // 页面配置信息
this.getThemePage(); this.getThemePage(extConfig);
}, },
methods: { methods: {
//商城配置 //商城配置
getShopInfo(extConfig) { getShopInfo({mixid}) {
shop.getShopInfo({ shopMixId: "antgood" }).then((res) => { shop.getShopInfo({ shopMixId: mixid }).then((res) => {
if (res.data.code == 200) { if (res.data.code == 200) {
let mpApp = getApp(); let mpApp = getApp();
// 商城基本数据 // 商城基本数据
...@@ -69,14 +69,20 @@ export default { ...@@ -69,14 +69,20 @@ export default {
mpApp.footerCallBack(footerVal); mpApp.footerCallBack(footerVal);
} }
} }
// 设置主题色
themeColor['--main-color']=val.themeColor.mainColor
themeColor['--minor-color']=val.themeColor.minorColor
//
console.log(this.mpApp,'mmmmm74',themeColor)
} }
}); });
}, },
getThemePage() { getThemePage({mixid,shopid}) {
shop shop
.themePagesInfo({ .themePagesInfo({
shopid: 67, shopid,
shopMixId: "antgood", shopMixId: mixid,
}) })
.then((response) => { .then((response) => {
if (response.data.code == 200) { if (response.data.code == 200) {
...@@ -128,4 +134,5 @@ export default { ...@@ -128,4 +134,5 @@ export default {
/* @import url("../static/nicon/iconfont.css"); */ /* @import url("../static/nicon/iconfont.css"); */
@import url("../static/font/iconfont.css"); @import url("../static/font/iconfont.css");
@import url("../static/css/common.scss"); @import url("../static/css/common.scss");
</style> </style>
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<div class="domain"> <div class="domain">
<!-- <view class="ant-daipinglun">1</view> --> <!-- <view class="ant-daipinglun">1</view> -->
<!-- <goods-list id="goodsList"></goods-list> --> <!-- <goods-list id="goodsList"></goods-list> -->
<scroll-view @scroll="scrolls" @scrolltolower="scrolltolower" style="height:100vh;" scroll-y="true"> <!-- <scroll-view @scroll="scrolls" @scrolltolower="scrolltolower" style="height:100vh;overflow-y:auto;" scroll-y="true"> -->
<div style="position:relative"> <div style="position:relative;">
<ThemeDataPlant></ThemeDataPlant> <ThemeDataPlant></ThemeDataPlant>
<div v-for="(item,index) in pageData" :key="index"> <div v-for="(item,index) in pageData" :key="index">
<div v-if="item.componentCode=='banner'"> <div v-if="item.componentCode=='banner'">
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
</div> </div>
<bottomCont></bottomCont> <bottomCont></bottomCont>
</scroll-view> <!-- </scroll-view> -->
<!-- <image <!-- <image
src="http://cdn.mayi888.com/public/jpg/33ff0efc-96b5-4044-a65a-07799dfe98e1.jpg?x-oss-process=image/resize,limit_1,w_750" src="http://cdn.mayi888.com/public/jpg/33ff0efc-96b5-4044-a65a-07799dfe98e1.jpg?x-oss-process=image/resize,limit_1,w_750"
></image> ></image>
...@@ -106,7 +106,7 @@ export default { ...@@ -106,7 +106,7 @@ export default {
let logoUrl = app.DFSImg(res.data.data.logoUrl,500,400,0); let logoUrl = app.DFSImg(res.data.data.logoUrl,500,400,0);
resolve({ resolve({
title: shopName, title: shopName,
path: "page/home/main", path: "/pages/home/main",
imageUrl:logoUrl, imageUrl:logoUrl,
success: function(res) { success: function(res) {
console.log("成功", res); console.log("成功", res);
...@@ -152,6 +152,9 @@ export default { ...@@ -152,6 +152,9 @@ export default {
}, },
onShow() { onShow() {
setTabBarActive.bind(this)(checkTabbarPage('/')); setTabBarActive.bind(this)(checkTabbarPage('/'));
this.$mp.page.onPageScroll= (el)=>{
this.scrolls(el);
};
}, },
methods: { methods: {
init(pageList) { init(pageList) {
...@@ -162,8 +165,9 @@ export default { ...@@ -162,8 +165,9 @@ export default {
console.log("36", this.pageData); console.log("36", this.pageData);
}, },
scrolls(el){ scrolls(el){
console.log('scroll') if(this.$mp.page.selectComponent(".goodsListItem")){
this.$mp.page.selectComponent(".goodsListItem").getScroll(el); this.$mp.page.selectComponent(".goodsListItem").getScroll(el);
}
}, },
scrolltolower(){ scrolltolower(){
console.log("scrolltolower") console.log("scrolltolower")
......
// 主题色
export let themeColor={
"--main-color": "#ffffff",
"--minor-color": "#ffffff"
}
// 获取link 中页面地址(link兼容 有object或者string) // 获取link 中页面地址(link兼容 有object或者string)
export function getUrlofLink(data) { export function getUrlofLink(data) {
return data.link return data.link
......
...@@ -26,12 +26,14 @@ const componentOptions = { ...@@ -26,12 +26,14 @@ const componentOptions = {
// 组件生命周期 // 组件生命周期
lifetimes: { lifetimes: {
created() {}, created() {},
ready() {}, ready() {
this.init();
},
moved() {}, moved() {},
detached() {} detached() {}
}, },
attached() { attached() {
this.init();
}, },
definitionFilter() {}, definitionFilter() {},
// 页面生命周期 // 页面生命周期
...@@ -220,8 +222,8 @@ const componentOptions = { ...@@ -220,8 +222,8 @@ const componentOptions = {
) )
: []; : [];
item.shopLogoUrl = DFSImg(item.shopLogoUrl); item.shopLogoUrl = DFSImg(item.shopLogoUrl);
item.coverImage = DFSImg(item.coverImage, 100, 100, 0); item.coverImage = DFSImg(item.coverImage, 400, 400, 1);
item.productImgUrl = DFSImg(item.productImgUrl, 100, 100, 0); item.productImgUrl = DFSImg(item.productImgUrl, 400, 400, 1);
item.minPrice = Number(item.minPrice).toFixed(2); item.minPrice = Number(item.minPrice).toFixed(2);
item.qty = Number(item.qty); item.qty = Number(item.qty);
item.saleQty = Number(item.saleQty); item.saleQty = Number(item.saleQty);
...@@ -242,22 +244,20 @@ const componentOptions = { ...@@ -242,22 +244,20 @@ const componentOptions = {
item.getSaleTime = this.getSaleTime(item.saleTime); item.getSaleTime = this.getSaleTime(item.saleTime);
} }
}); });
setTimeout(() => { this.setData({
this.setData({ "datas.componentData.goodsList": goodsList
"datas.componentData.goodsList": goodsList });
}); if (type == 1) {
if (type == 1) { // 初始化
// 初始化 if (this.selectComponent("#waterfallFlow")) {
if (this.selectComponent("#waterfallFlow")) { this.selectComponent("#waterfallFlow").initList(goodsList);
this.selectComponent("#waterfallFlow").initList();
}
} else {
// 滚动加载
if (this.selectComponent("#waterfallFlow")) {
this.selectComponent("#waterfallFlow").reLoadPro();
}
} }
}, 0); } else {
// 滚动加载
if (this.selectComponent("#waterfallFlow")) {
this.selectComponent("#waterfallFlow").reLoadPro(goodsList);
}
}
}, },
getSaleTime(val) { getSaleTime(val) {
return new Date(val.replace(/-/g, "/")).getTime() - new Date().getTime(); return new Date(val.replace(/-/g, "/")).getTime() - new Date().getTime();
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
{{datas.singleItemActivityName}} {{datas.singleItemActivityName}}
</view> </view>
<view class="cover"> <view class="cover">
<image mode="center" src="{{datas.singleItemActivityCoverImage}}"></image> <image src="{{datas.singleItemActivityCoverImage}}"></image>
</view> </view>
<view class="countDown flex" wx:if="{{countDownShow}}"> <view class="countDown flex" wx:if="{{countDownShow}}">
<van-count-down <van-count-down
......
.activityListItem { .activityListItem {
margin-bottom: 20rpx;
padding: 20rpx 0; padding: 20rpx 0;
background: #fff; background: #fff;
border-radius: 8rpx; border-radius: 8rpx;
...@@ -7,6 +6,7 @@ ...@@ -7,6 +6,7 @@
-moz-border-radius: 8rpx; -moz-border-radius: 8rpx;
-ms-border-radius: 8rpx; -ms-border-radius: 8rpx;
-o-border-radius: 8rpx; -o-border-radius: 8rpx;
margin-bottom: 20rpx;
} }
.title { .title {
padding: 8rpx 20rpx; padding: 8rpx 20rpx;
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
} }
.cover image { .cover image {
width: 100%; width: 100%;
height: 100%;
} }
.countDown { .countDown {
padding: 4rpx 10rpx; padding: 4rpx 10rpx;
......
...@@ -210,6 +210,7 @@ const componentOptions = { ...@@ -210,6 +210,7 @@ const componentOptions = {
item.endTimeTimeStamp = new Date(item.endTime.replace(/-/g, "/")).getTime() - new Date().getTime(); item.endTimeTimeStamp = new Date(item.endTime.replace(/-/g, "/")).getTime() - new Date().getTime();
item.singleItemActivityCoverImage = DFSImg(item.singleItemActivityCoverImage); item.singleItemActivityCoverImage = DFSImg(item.singleItemActivityCoverImage);
item.isStart = new Date(item.startTime.replace(/-/g, "/")).getTime() > new Date().getTime() ? true : false; item.isStart = new Date(item.startTime.replace(/-/g, "/")).getTime() > new Date().getTime() ? true : false;
console.log(item.isEnd,'-----------------------213');
}) })
this.setData({ "datas.componentData.actList": list }); this.setData({ "datas.componentData.actList": list });
if (hideNum == actList.length) { if (hideNum == actList.length) {
......
...@@ -54,23 +54,41 @@ Component({ ...@@ -54,23 +54,41 @@ Component({
contentList: [], contentList: [],
inj: 0, inj: 0,
clientHeight: 0, //窗口高度 clientHeight: 0, //窗口高度
goodsNum:0, goodsNum: 0,
}, },
methods: { methods: {
// 初始化数组 // 初始化数组
initList() { initList(goodsList) {
// 初始化容器 // 初始化容器
let { contentList, waterfallDeviationHeight } = this.data; let { contentList, waterfallDeviationHeight } = this.data;
contentList[0] = []; contentList[0] = [];
contentList[1] = []; contentList[1] = [];
waterfallDeviationHeight = [0,0]; waterfallDeviationHeight = [0, 0];
this.setData({ contentList, waterfallDeviationHeight }); this.setData({ contentList, waterfallDeviationHeight });
console.log(this.data.note, "-------------------185"); this.reLoadPro(goodsList);
this.reLoadPro();
}, },
async reLoadPro() { async reLoadPro(goodsList) {
this.setHeight(this.data.goodsNum); console.log(goodsList,'----------------------75')
this.setData({ goodsNum:this.data.note.length>0?this.data.note.length+1:0 }); // this.setHeight(this.data.goodsNum);
this.setHeight1(this.data.goodsNum,goodsList);
this.setData({
goodsNum:
goodsList.length > 0 ? goodsList.length + 1 : 0
});
},
setHeight1(i,goodsList) {
let itemList = goodsList.splice(i, goodsList.length);
let { contentList } = this.data;
itemList.forEach((item, index) => {
if (index % 2 == 0) {
contentList[0].push(item);
console.log(item.productName, "--------位置--左");
} else {
contentList[1].push(item);
console.log(item.productName, "--------位置--右");
}
});
this.setData({ contentList });
}, },
setHeight(i) { setHeight(i) {
let _this = this; let _this = this;
...@@ -85,24 +103,24 @@ Component({ ...@@ -85,24 +103,24 @@ Component({
let contentList = this.data.contentList; let contentList = this.data.contentList;
contentList[minIndex].push(item); contentList[minIndex].push(item);
this.setData({ contentList }); this.setData({ contentList });
_this _this
.createSelectorQuery() .createSelectorQuery()
.select(`.item${minIndex}`) .select(`.item${minIndex}`)
.boundingClientRect(function(res) { .boundingClientRect(function(res) {
if (res) { if (res) {
res.height; res.height;
console.log(res, "--------------res"); console.log(res, "--------------res");
let waterfallDeviationHeight = _this.data.waterfallDeviationHeight; let waterfallDeviationHeight = _this.data.waterfallDeviationHeight;
waterfallDeviationHeight[minIndex] = res.height; waterfallDeviationHeight[minIndex] = res.height;
_this.setData({ waterfallDeviationHeight }); _this.setData({ waterfallDeviationHeight });
if (i >= _this.data.note.length - 1) { if (i >= _this.data.note.length - 1) {
return; return;
} }
i++; i++;
_this.setHeight(i); _this.setHeight(i);
} }
}) })
.exec(); .exec();
// const queryDom = wx.createSelectorQuery().in(this); // const queryDom = wx.createSelectorQuery().in(this);
// queryDom.select(`.item${minIndex}`).boundingClientRect(); // queryDom.select(`.item${minIndex}`).boundingClientRect();
// queryDom.exec(res => { // queryDom.exec(res => {
...@@ -147,12 +165,13 @@ Component({ ...@@ -147,12 +165,13 @@ Component({
.select("#waterfallFlow") .select("#waterfallFlow")
.boundingClientRect(function(res) { .boundingClientRect(function(res) {
if (res) { if (res) {
console.log(el, "-------------118"); let scrollTop = parseInt(el.scrollTop);
console.log(res, "---------------35");
let scrollTop = parseInt(el.target.scrollTop);
let domHeight = parseInt(res.height); let domHeight = parseInt(res.height);
// 窗口高度+滚动高度等于 = 元素整体高度 -(预留一段距离加载) 触发父组件查询接口 // 窗口高度+滚动高度等于 = 元素整体高度 -(预留一段距离加载) 触发父组件查询接口
if (scrollTop + _this.data.clientHeight >= domHeight - 150 && finished == false) { if (
scrollTop + _this.data.clientHeight >= domHeight - 150 &&
finished == false
) {
_this.triggerEvent("onLoad"); _this.triggerEvent("onLoad");
} }
} }
......
...@@ -16,4 +16,10 @@ image { ...@@ -16,4 +16,10 @@ image {
} }
.container-item:nth-child(2n + 2) { .container-item:nth-child(2n + 2) {
padding-left: var(--proGap); padding-left: var(--proGap);
}
.loadBottom{
text-align: center;
color: #999;
font-size: 24rpx;
margin-top: 10rpx;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment