zhaogongxue 10 달 전
부모
커밋
d543b43836

+ 139 - 0
components/kj-tabbar/kj-tabbar.vue

@@ -0,0 +1,139 @@
+<template>
+	<view>
+		<u-tabbar :list="list" :fixed="true" :safeAreaInsetBottom="true" active-color="#F83224" inactive-color="#333"
+			:value="value1">
+			<u-tabbar-item :text="item.text" v-for="(item,idx) in list" @click="click1" :key="idx">
+				<image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="inactive-icon"
+					:src="item.iconPath"></image>
+				<image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="active-icon"
+					:src="item.selectedIconPath"></image>
+			</u-tabbar-item>
+		</u-tabbar>
+	</view>
+</template>
+<script>
+	import {
+		mapState
+	} from "vuex"
+	import {
+		created
+	} from "../../uview-ui/libs/mixin/mixin"
+	export default {
+		name: "kj-tabbar",
+		data() {
+			return {
+				list: [{
+						"iconPath": '../../static/express1.png',
+						"selectedIconPath": "../../static/express2.png",
+						"text": "跨境速递",
+						"pagePath": "pages/express/express"
+					},
+					{
+						"iconPath": "../../static/index1.png",
+						"selectedIconPath": "../../static/index2.png",
+						"text": "商城",
+						"pagePath": "pages/index/index"
+					},
+					{
+						"iconPath": "../../static/shop.png",
+						"selectedIconPath": "../../static/shop.png",
+						"text": "购",
+						"pagePath": "pages/shopping/shopping"
+					},
+					{
+						"iconPath": "../../static/cart1.png",
+						"selectedIconPath": "../../static/cart2.png",
+						"text": "购物车",
+						"pagePath": "pages/cart/cart"
+					},
+					{
+						"iconPath": "../../static/mine1.png",
+						"selectedIconPath": "../../static/mine2.png",
+						"text": "我的",
+						"pagePath": "pages/mine/mine"
+					}
+				],
+				value1: 0,
+			};
+		},
+		created() {
+			if (uni.getStorageSync('tabbar')) {
+				this.value1 = uni.getStorageSync('tabbar')
+			}
+		},
+		methods: {
+			click1(e) {
+				this.value1 = e
+				console.log(e);
+				if (this.value1 == 4) {
+					uni.navigateTo({
+						url: '../../pages/mine/mine'
+					})
+				}
+				if (this.value1 == 0) {
+					uni.navigateTo({
+						url: '../../pages/express/express'
+					})
+				}
+				if (this.value1 == 1) {
+					uni.navigateTo({
+						url: '../../pages/index/index'
+					})
+				}
+				if (this.value1 == 2) {
+					uni.navigateTo({
+						url: '../../pages/shopping/shopping'
+					})
+				}
+				if (this.value1 == 3) {
+					uni.navigateTo({
+						url: '../../pages/cart/cart'
+					})
+				}
+				uni.setStorageSync('tabbar', e)
+			},
+		}
+		// created() {},
+		// computed: {
+		// 	...mapState(['config'])
+		// },
+		// watch: {
+		// 	config: {
+		// 		handler(val) {
+		// 			if (val.report_switch == 1) {
+		// 				this.list = [{
+		// 						"iconPath": "/static/images/index.png",
+		// 						"pagePath": "/pages/index/index",
+		// 						"selectedIconPath": "/static/images/index1.png",
+		// 						"text": "首页"
+		// 					},
+		// 					{
+		// 						"iconPath": "/static/images/video.png",
+		// 						"pagePath": "/pages/video/video",
+		// 						"selectedIconPath": "/static/images/video1.png",
+		// 						"text": "视频"
+		// 					},
+		// 					{
+		// 						"iconPath": "/static/images/baobei.png",
+		// 						"pagePath": "/pages/baobei/baobei",
+		// 						"selectedIconPath": "/static/images/baobei1.png",
+		// 						"text": "客户报备"
+		// 					},
+		// 					{
+		// 						"iconPath": "/static/images/mine.png",
+		// 						"pagePath": "/pages/mine/mine",
+		// 						"selectedIconPath": "/static/images/mine1.png",
+		// 						"text": "我的"
+		// 					}
+		// 				]
+		// 			}
+		// 		},
+		// 		deep: true
+		// 	}
+		// }
+	}
+</script>
+
+<style lang="scss">
+
+</style>

+ 1 - 1
pages/cart/cart.vue

@@ -1,7 +1,7 @@
 <template>
 	<!-- 购物车 -->
 	<view>
-		
+		<kj-tabbar></kj-tabbar>
 	</view>
 </template>
 

+ 1 - 1
pages/express/express.vue

@@ -1,7 +1,7 @@
 <template>
 	<!-- 快递 -->
 	<view>
-		
+		<kj-tabbar></kj-tabbar>
 	</view>
 </template>
 

+ 3 - 3
pages/shopping/shopping.vue

@@ -1,7 +1,7 @@
 <template>
 	<!-- 十元购 -->
 	<view>
-		
+		<kj-tabbar></kj-tabbar>
 	</view>
 </template>
 
@@ -9,7 +9,7 @@
 	export default {
 		data() {
 			return {
-				
+
 			};
 		}
 	}
@@ -17,4 +17,4 @@
 
 <style lang="scss">
 
-</style>
+</style>

BIN
static/images/index/back.png


BIN
static/images/index/compile.png


BIN
static/images/index/dianhua.png


BIN
static/images/index/xiaoxi.png


+ 48 - 0
store/index.js

@@ -0,0 +1,48 @@
+// 页面路径:store/index.js 
+import Vue from 'vue'
+import Vuex from 'vuex'
+
+Vue.use(Vuex); //vue的插件机制
+//Vuex.Store 构造器选项
+const store = new Vuex.Store({
+	state: { //存放状态
+		config: {},
+		city: '',
+		popularity: 0,
+		// 定位数据
+		citydata: {
+			city: "",
+			userLocation: '',
+			city_id: ''
+		},
+		// 默认数据(当前数据)
+		defaultcity: {
+			city: "",
+			userLocation: '',
+			city_id: ''
+		}
+	},
+	getters: {
+		config: state => state.config
+	},
+	mutations: {
+		setconfig(state, data) {
+			// 变更状态
+			state.config = data
+		},
+		setcity(state, data) {
+			// 变更状态
+			state.citydata = data
+		},
+		setdefaultcity(state, data) {
+			// 变更状态
+			uni.setStorageSync("city", data)
+			state.defaultcity = data
+		},
+		setpopularity(state, data) {
+			// 变更状态
+			state.popularity = data
+		}
+	}
+})
+export default store