Browse Source

首页登录成功后获取数据

yuxingxing 2 years ago
parent
commit
d7c8aa985b

+ 1 - 1
api/user.js

@@ -8,7 +8,7 @@ import request from "@/utils/request.js";
  */
 export function getLoginAccount(data) {
 	let url = "username="+data.username+"&password="+data.password
-	return request.post('/v1/login_account?'+url,null,{
+	return request.post('v1/login_account?'+url,null,{
 		noAuth: true
 	});
 }

+ 1 - 2
pages/index/diy/index.vue

@@ -278,7 +278,7 @@ import pageFooter from '@/components/pageFooter/index.vue';
 import Loading from '@/components/Loading/index.vue';
 import recommend from '@/components/recommend';
 export default {
-	computed: mapGetters(['isLogin', 'uid']),
+	computed: mapGetters(['isLogin', 'uid','cartNum']),
 	mixins: [colors],
 	components: {
 		recommend,
@@ -314,7 +314,6 @@ export default {
 		appUpdate, //APP更新
 		// #endif
 	},
-	computed: mapGetters(['isLogin', 'cartNum']),
 	data() {
 		return {
 			imgHost: HTTP_REQUEST_URL,

+ 30 - 2
pages/index/diy/index_mall.vue

@@ -109,6 +109,12 @@
 <script>
 import headerSerch from './components/headerSerch';
 import goodListMall from './components/goodListMall';
+import {
+	toLogin
+} from '@/libs/login.js';
+import {
+	mapGetters
+} from "vuex";
 import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
 import {
 	goShopDetail
@@ -655,15 +661,37 @@ export default {
 			}]
 		}
 	},
+	computed: mapGetters(['isLogin']),
 	created() {
 		this.getCategoryOne()
-		this.getAdsList()
 		this.getNoticeList()
+		this.getAdsList()
 		this.getBroGoodsInfo()
 		this.getGoodsInfo()
 		this.getAdsTabList()
 	},
-	onLoad() {
+	onMounted(options) {
+	},
+	onLoad(options) {
+	},
+	onShow(){
+		
+	},
+	updated(){
+		
+	},
+	watch: {
+		isLogin: {
+			deep: true, //深度监听设置为 true
+			handler: function (newV, oldV) {
+				this.getCategoryOne()
+				this.getNoticeList()
+				this.getAdsList()
+				this.getBroGoodsInfo()
+				this.getGoodsInfo()
+				this.getAdsTabList()
+			}
+		}
 	},
 	methods: {
 		getGoodsInfo() {

+ 0 - 1
pages/users/components/login_mobile/index.vue

@@ -121,7 +121,6 @@
 					username: that.account,
 					password: that.password
 				}).then(res => {
-					console.log(res);
 					this.$store.commit('LOGIN', {
 						token: res.data.access_token,
 						time: res.data.expires_in