#
whycq
2023-09-19 af30e5448508e586af40216890fa3cf1cddad9b0
pages/mat/matQuery.vue
@@ -153,6 +153,7 @@
            if (tagId == null || tagId == '' || tagId == undefined) {
               return;
            }
            uni.showLoading({})
            uni.request({
                url: that.baseUrl + '/mat/list/pda/page/auth',
                data: {
@@ -168,6 +169,7 @@
                  that.tagList = null
                  var res = result.data
                  if (res.code === 200) {
                     uni.hideLoading()
                     if (res.data.records != null && res.data.records.length > 0) {
                        let list = res.data.records
                        that.matList = that.reload ? list : that.matList.concat(list);
@@ -178,6 +180,7 @@
                     }
                     that.baColor = "background-color: #1cbbb4;"
                  } else if (res.code === 403 ) {
                     uni.hideLoading()
                     uni.showToast({title: res.msg, icon: "none", position: 'top'})
                     setTimeout(() => {
                        uni.reLaunch({
@@ -185,6 +188,7 @@
                        });
                     }, 1000);
                  } else {
                     uni.hideLoading()
                     uni.showToast({title: res.msg, icon: "none",position: 'top'})
                  }