mabaoyi 9 mesiacov pred
rodič
commit
cca00738e5

+ 9 - 0
network/api/follow.js

@@ -0,0 +1,9 @@
+import { request } from "../http.js";
+
+export function getFollowList(data) {
+  return request({
+    url: "/interest/list",
+    method: "get",
+    data,
+  });
+}

+ 1 - 1
network/homeApi.js → network/api/homeApi.js

@@ -1,4 +1,4 @@
-import { request } from "./http.js";
+import { request } from "../http.js";
 
 export function login(data) {
   return request({

+ 11 - 11
network/http.js

@@ -1,24 +1,24 @@
 import { baseURL } from "./base.js";
 
 // console.log(window.localStorage.getItem("token"));
-let token
+let token;
 uni.getStorage({
-	key:'token',
-	success:function(res) {
-		console.log(res)
-		token = res.data
-	}
-})
-
-
+  key: "token",
+  success: function (res) {
+    console.log(res);
+    token = res.data;
+  },
+});
+console.log(token);
 export const request = (option) => {
   return new Promise((resolve, reject) => {
     uni.request({
       url: baseURL + option.url,
       method: option.method,
       data: option.data,
-      Headers: {
-        Authorization: "Bearer " + token,
+      headers: {
+        "content-type": "application/json",
+        Authorization: "Bearer " + "token",
       },
       success: (res) => {
         resolve(res);

+ 9 - 1
pageC/mineFollow/mineFollow.vue

@@ -72,6 +72,7 @@
 </template>
 
 <script>
+import { getFollowList } from "../../network/api/follow";
 export default {
   data() {
     return {
@@ -121,8 +122,15 @@ export default {
         url: "/pageA/productdetails",
       });
     },
+    getInfoList() {
+      getFollowList({ interest_type: 0 }).then((res) => {
+        console.log(res);
+      });
+    },
+  },
+  mounted() {
+    this.getInfoList();
   },
-  mounted() {},
 };
 </script>
 

+ 1 - 1
pages/login/login.vue

@@ -51,7 +51,7 @@
 </template>
 
 <script>
-import { login } from "../../network/homeApi.js";
+import { login } from "../../network/api/homeApi.js";
 export default {
   data() {
     return {

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map


Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map


Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
unpackage/dist/dev/.sourcemap/mp-weixin/pages/login/login.js.map


+ 43 - 7
unpackage/dist/dev/mp-weixin/common/vendor.js

@@ -5193,6 +5193,40 @@ exports.default = _default;
 
 /***/ }),
 
+/***/ 1363:
+/*!********************************************************!*\
+  !*** D:/project/crossBorder/wx-qhb/network/shopApi.js ***!
+  \********************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+
+
+Object.defineProperty(exports, "__esModule", {
+  value: true
+});
+exports.detail = detail;
+exports.recom = recom;
+var _http = __webpack_require__(/*! ./http.js */ 208);
+//商品推荐
+function recom() {
+  return (0, _http.request)({
+    url: "/goods/recommend",
+    method: "post"
+  });
+}
+//商品详情
+function detail(data) {
+  return (0, _http.request)({
+    url: "/goods/detail/" + data,
+    method: "get",
+    data: data
+  });
+}
+
+/***/ }),
+
 /***/ 137:
 /*!*************************************************************************!*\
   !*** D:/project/crossBorder/wx-qhb/uview-ui/libs/config/props/steps.js ***!
@@ -11295,9 +11329,9 @@ module.exports = _iterableToArray, module.exports.__esModule = true, module.expo
 /***/ }),
 
 /***/ 207:
-/*!********************************************************!*\
-  !*** D:/project/crossBorder/wx-qhb/network/homeApi.js ***!
-  \********************************************************/
+/*!************************************************************!*\
+  !*** D:/project/crossBorder/wx-qhb/network/api/homeApi.js ***!
+  \************************************************************/
 /*! no static exports found */
 /***/ (function(module, exports, __webpack_require__) {
 
@@ -11308,7 +11342,7 @@ Object.defineProperty(exports, "__esModule", {
   value: true
 });
 exports.login = login;
-var _http = __webpack_require__(/*! ./http.js */ 208);
+var _http = __webpack_require__(/*! ../http.js */ 208);
 function login(data) {
   return (0, _http.request)({
     url: "/login",
@@ -11337,20 +11371,22 @@ var _base = __webpack_require__(/*! ./base.js */ 209);
 // console.log(window.localStorage.getItem("token"));
 var token;
 uni.getStorage({
-  key: 'token',
+  key: "token",
   success: function success(res) {
     console.log(res);
     token = res.data;
   }
 });
+console.log(token);
 var request = function request(option) {
   return new Promise(function (resolve, reject) {
     uni.request({
       url: _base.baseURL + option.url,
       method: option.method,
       data: option.data,
-      Headers: {
-        Authorization: "Bearer " + token
+      headers: {
+        "content-type": "application/json",
+        Authorization: "Bearer " + "token"
       },
       success: function success(res) {
         resolve(res);

+ 1 - 1
unpackage/dist/dev/mp-weixin/pageC/index.js

@@ -1,4 +1,4 @@
-(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pageC/index"],{
+require('./common/vendor.js');(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pageC/index"],{
 
 /***/ 442:
 /*!**********************************************************************!*\

+ 7 - 4
unpackage/dist/dev/mp-weixin/pages/index/index.js

@@ -187,6 +187,7 @@ Object.defineProperty(exports, "__esModule", {
   value: true
 });
 exports.default = void 0;
+var _shopApi = __webpack_require__(/*! ../../network/shopApi.js */ 1363);
 //
 //
 //
@@ -408,6 +409,7 @@ var _default = {
     }
   },
   onLoad: function onLoad(options) {
+    this.recommend();
     this.list = [this.i18n.border, this.i18n.shop];
     // this.seater()
     if (options.current) {
@@ -417,14 +419,15 @@ var _default = {
   onShow: function onShow() {
     //商品推荐
     this.recommend();
+    console.log(222222);
   },
   methods: {
     //商品推荐
     recommend: function recommend() {
       var _this = this;
       console.log(1111);
-      uni.$u.http.post('/api/goods/recommend', {}).then(function (res) {
-        _this.recomlist = res.data;
+      (0, _shopApi.recom)().then(function (res) {
+        _this.recomlist = res.data.data;
       });
     },
     subsidy: function subsidy(item) {
@@ -462,9 +465,9 @@ var _default = {
       }
     },
     //详情
-    todetail: function todetail() {
+    todetail: function todetail(id) {
       uni.navigateTo({
-        url: '/pageA/productdetails'
+        url: '/pageA/productdetails?id=' + id
       });
     }
   }

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
unpackage/dist/dev/mp-weixin/pages/index/index.wxml


+ 1 - 1
unpackage/dist/dev/mp-weixin/pages/login/login.js

@@ -164,7 +164,7 @@ Object.defineProperty(exports, "__esModule", {
   value: true
 });
 exports.default = void 0;
-var _homeApi = __webpack_require__(/*! ../../network/homeApi.js */ 207);
+var _homeApi = __webpack_require__(/*! ../../network/api/homeApi.js */ 207);
 //
 //
 //

Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov