diff --git a/App.vue b/App.vue
index 9ebb9e8..31ec6d0 100644
--- a/App.vue
+++ b/App.vue
@@ -16,6 +16,7 @@
+ .noscroll {
+ height: 100%;
+ overflow: hidden;
+ }
+
diff --git a/pages/shop/GoodsList/index.vue b/pages/shop/GoodsList/index.vue
index 0e1cf56..2e5bd44 100644
--- a/pages/shop/GoodsList/index.vue
+++ b/pages/shop/GoodsList/index.vue
@@ -79,7 +79,6 @@
+ .distribution-posters {
+ height: 100%;
+ }
+
+ .banenr {
+ height: 100%;
+ }
+
+ .banner swiper {
+ height: 100%;
+ }
+
+ .banner .slide-image {
+ width: 100%;
+ height: auto;
+ }
+
diff --git a/pages/user/signIn/Integral/index.vue b/pages/user/signIn/Integral/index.vue
index 4988c8a..aeb7a49 100644
--- a/pages/user/signIn/Integral/index.vue
+++ b/pages/user/signIn/Integral/index.vue
@@ -45,7 +45,7 @@
{{ item.title }}
-
+
+{{ item.number }}
diff --git a/utils/index.js b/utils/index.js
index de944f8..f919897 100644
--- a/utils/index.js
+++ b/utils/index.js
@@ -35,7 +35,7 @@ export function dataFormat(time, option) {
}
}
-export function dataFormatT(time) {
+export function dateFormatT(time) {
time = +time * 1000;
const d = new Date(time);
@@ -121,7 +121,7 @@ export const replaceLogin = (msg) => {
// 这里代表已经失去登录状态以及401强制推出登录了
store.commit('LOGOUT')
console.log(uni, 989)
- if (Vue.prototype.$deviceType == 'Weixin') {
+ if (Vue.prototype.$deviceType == 'weixin') {
// 如果是微信小程序,跳转到授权页
replace({
path: '/pages/authorization/index',
@@ -199,7 +199,7 @@ export const login = (option) => {
console.log(user)
console.log(`用户昵称为 | ${user.userInfo.nickName}`);
console.log(`当前的环境 | ${Vue.prototype.$deviceType}`)
- if (Vue.prototype.$deviceType == 'Weixin') {
+ if (Vue.prototype.$deviceType == 'weixin') {
wxappAuth({
encryptedData: user.encryptedData,
iv: user.iv,
diff --git a/utils/request.js b/utils/request.js
index 22c2d82..6bb0b15 100644
--- a/utils/request.js
+++ b/utils/request.js
@@ -43,7 +43,9 @@ function baseRequest(options) {
const { url, params, data, login, ...option } = options
return fly.request(url, params || data, {
...option
- }).then(res => {
+ }).then(res => {
+ console.log(res)
+ console.log(url,params,data, ...option)
const data = res.data || {};
if (res.status !== 200)
return Promise.reject({ msg: "请求失败", res, data });