Prechádzať zdrojové kódy

Signed-off-by: yukangzhe <382985154@qq.com>

yukangzhe 3 rokov pred
rodič
commit
d787f531e0
3 zmenil súbory, kde vykonal 19 pridanie a 41 odobranie
  1. 1 1
      pages/index/index.wxml
  2. 0 1
      pages/login/login.js
  3. 18 39
      utils/util.js

+ 1 - 1
pages/index/index.wxml

@@ -39,7 +39,7 @@
           <image src="{{item.img}}"></image>
         </view>
         <view class="class-detail">
-          <view class="class-num">{{item.num}}</view>
+          <view class="class-num">{{item.num == '100.00%' ? '100%' : item.num}}</view>
           <view class="class-title">{{item.title}}</view>
         </view>
       </view>

+ 0 - 1
pages/login/login.js

@@ -110,7 +110,6 @@ Page({
         ).then(res => {
           if (res.success == 1) {
             wx.setStorageSync('openId', res.data.openId)
-            wx.hideLoading({})
           }
         })
       },

+ 18 - 39
utils/util.js

@@ -179,24 +179,17 @@ function apiPost(url, params, contentType) {
         if (res.success > 1 || typeof res.version != undefined) {
           resolve(res.data)
         } else {
-          wx.hideLoading({
-            success: (res) => {
-              wx.showToast({
-                title: '加载失败,请重试',
-                icon: 'none'
-              })
-            },
+          wx.showToast({
+            title: '加载失败,请重试',
+            icon: 'none'
           })
         }
       },
       faild: res => {
         // reject(res)
-        wx.hideLoading({
-          success: (res) => {
-            wx.showToast({
-              title: res.errMsg,
-            })
-          },
+        wx.showToast({
+          title: res.errMsg,
+          icon: 'none'
         })
       },
       complete: res =>{
@@ -227,24 +220,17 @@ function doPost(url, params) {
         if (res.success > 1 || typeof res.version != undefined) {
           resolve(res.data)
         } else {
-          wx.hideLoading({
-            success: (res) => {
-              wx.showToast({
-                title: '加载失败,请重试',
-                icon: 'none'
-              })
-            },
+          wx.showToast({
+            title: '加载失败,请重试',
+            icon: 'none'
           })
         }
       },
       faild: res => {
         // reject(res)
-        wx.hideLoading({
-          success: (res) => {
-            wx.showToast({
-              title: res.errMsg,
-            })
-          },
+        wx.showToast({
+          title: res.errMsg,
+          icon: 'none'
         })
       },
       complete: res =>{
@@ -275,24 +261,17 @@ function notWxPost(url, params) {
         if (res.success > 1 || typeof res.version != undefined) {
           resolve(res.data)
         } else {
-          wx.hideLoading({
-            success: (res) => {
-              wx.showToast({
-                title: '加载失败,请重试',
-                icon: 'none'
-              })
-            },
+          wx.showToast({
+            title: '加载失败,请重试',
+            icon: 'none'
           })
         }
       },
       faild: res => {
         // reject(res)
-        wx.hideLoading({
-          success: (res) => {
-            wx.showToast({
-              title: res.errMsg,
-            })
-          },
+        wx.showToast({
+          title: res.errMsg,
+          icon: 'none'
         })
       },
       complete: res =>{