|
@@ -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);
|