Browse Source

auto commit

gcz 4 years ago
parent
commit
a624c581fb

+ 17 - 1
common/css/common.css

@@ -175,4 +175,20 @@ uni-button[type=primary]{background-color: #6BBC6D;}
 .results-item-info-price .price{font-size: 36rpx;font-weight: 500;color: #FF5030;line-height: 50rpx;}
 .results-item-info-price .minsell{font-size: 24rpx;font-weight: 400;color: #999999;line-height: 33rpx;}
 .results-item-info-company,
-.item-spec{font-size: 26rpx;color: #999;}
+.item-spec{font-size: 26rpx;color: #999;}
+
+/* 底部版权 */
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ 49 - 0
components/common-footer/common-footer.vue

@@ -0,0 +1,49 @@
+<template>
+	<view class="pages">
+		<view class="common-footer">
+			<view class="common-footer-company">
+				<image src="/static/img/logo.png" class="img" mode="aspectFit"></image>
+				<view class="text">
+					贵州省黔林优选<br>
+					商贸有限公司
+				</view>
+			</view>
+			<view class="common-footer-copyright">
+				地址:贵州省贵阳市观山湖万达广场室内步行街2F层2016、2017号<br>备案/许可证编号:黔ICP备2020011568号
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name:'commonFooter',
+		data() {
+			return {
+				params:{
+					token:'',
+				}
+				
+			}
+		},
+		onShow() {
+			
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped>
+/* @import url("./index.css"); */
+.common-footer{padding: 16rpx 24rpx 40rpx;background-color: #F6F7F8;text-align: center;}
+.common-footer-company{display: flex;margin-bottom: 24rpx;align-items: center;justify-content: center;}
+.common-footer-company .img{width: 96rpx;height: 84rpx;margin-right: 54rpx;}
+.common-footer-company .text{position: relative;padding-left: 53rpx;font-size: 24rpx;color: #666;font-weight: 500;text-align: left;line-height: 33rpx;padding-left: 53rpx;}
+.common-footer-company .text::before{content: '';position: absolute;left: 0;top: 11rpx;width: 1px;height: 48rpx;background-color: #CFCFCF;}
+.common-footer-copyright{font-size: 24rpx;color: #999;line-height: 40rpx;font-weight: 400;}
+</style>

+ 1 - 1
pages/index/index.css

@@ -5,7 +5,7 @@ page{background-color: #F6F7F8;}
 .index >>> .uni-searchbar{background-color: #F6F7F8;}
 
 .index >>> .mescroll-downwarp{z-index: -1;}
-/* .mescroll-body{overflow: visible;} */
+.mescroll-body{overflow: visible;}
 
 .appAdv{height:300rpx;background-color: #F6F7F8;}
 .appAdv .adv-item .pic{width: 100%;}

+ 5 - 2
pages/index/index.vue

@@ -65,7 +65,7 @@
 		</view>
 		<!-- 分类链接结束 -->	
 		<view class="mescroll-wrap">
-		<mescroll-uni class="wrap" height="800rpx" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
+		<mescroll-uni class="wrap" height="1070rpx" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
 			<view class="indexproduct">
 				 <view class="item-wrap" v-for="(item,index) in mescrollList" :key="index">
 					<view class="item" :data-id="item.id" @click="jumpDetails(item.id)">
@@ -118,6 +118,7 @@
 			</scroll-view>
 		</view>		
 		<!-- 供应商结束 -->
+		<common-footer></common-footer>
 		
 		
 		<uni-popup ref="promotionPopup" type="center">
@@ -144,6 +145,7 @@
 	
 	// import uNoticeBar from '@/components/u-notice-bar/u-notice-bar.vue'
 	import uniPopup from '@/components/uni-popup/uni-popup.vue'
+	import commonFooter from '@/components/common-footer/common-footer.vue' 
 	import { debounce } from '@/utils/util.js'
 	let timer = null;
 	export default {
@@ -152,7 +154,8 @@
 			MescrollBody,
 			uniSearchBar,
 			// uNoticeBar,
-			uniPopup
+			uniPopup,
+			commonFooter
 		},
 		data() {
 			return {

BIN
static/img/logo.png