Browse Source

BUG修复

seimin 2 years ago
parent
commit
2458f3fc66
5 changed files with 21 additions and 8 deletions
  1. 1 1
      main.js
  2. 2 2
      manifest.json
  3. 10 3
      pages/index/index.vue
  4. 6 0
      pages/personalCenter/personalCenter.vue
  5. 2 2
      request/config.js

+ 1 - 1
main.js

@@ -12,7 +12,7 @@ import {
12
 Vue.prototype.$request = request
12
 Vue.prototype.$request = request
13
 
13
 
14
 Vue.config.productionTip = false
14
 Vue.config.productionTip = false
15
-console.info('v1.0.2')
15
+console.info('v1.0.4')
16
 
16
 
17
 App.mpType = 'app'
17
 App.mpType = 'app'
18
 
18
 

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
2
     "name" : "医疗服务中心转运系统",
2
     "name" : "医疗服务中心转运系统",
3
     "appid" : "__UNI__FEB1B1E",
3
     "appid" : "__UNI__FEB1B1E",
4
     "description" : "医疗服务中心转运系统",
4
     "description" : "医疗服务中心转运系统",
5
-    "versionName" : "1.0.2",
6
-    "versionCode" : 102,
5
+    "versionName" : "1.0.4",
6
+    "versionCode" : 104,
7
     "transformPx" : false,
7
     "transformPx" : false,
8
     "app-plus" : {
8
     "app-plus" : {
9
         /* 5+App特有相关 */
9
         /* 5+App特有相关 */

+ 10 - 3
pages/index/index.vue

@@ -107,9 +107,15 @@
107
     watch: {
107
     watch: {
108
       // 首页搜索内容
108
       // 首页搜索内容
109
       searchText(newVal) {
109
       searchText(newVal) {
110
-        uni.navigateTo({
111
-          url: `/pages/search/search?txt=${newVal}`
112
-        })
110
+        if (newVal) {
111
+          const _newVal = newVal;
112
+          clearTimeout(this.timer);
113
+          this.timer = setTimeout(()=>{
114
+            uni.navigateTo({
115
+              url: `/pages/search/search?txt=${_newVal}`
116
+            })
117
+          },500)
118
+        }
113
       }
119
       }
114
     },
120
     },
115
     data() {
121
     data() {
@@ -124,6 +130,7 @@
124
         hospitalList: [], //当前用户权限中的院区列表
130
         hospitalList: [], //当前用户权限中的院区列表
125
         pickerTitle: "", //选择院区picker的title
131
         pickerTitle: "", //选择院区picker的title
126
         specimenTaskTypeId: undefined, //标本任务类型id
132
         specimenTaskTypeId: undefined, //标本任务类型id
133
+        timer:null,
127
       };
134
       };
128
     },
135
     },
129
     computed: {
136
     computed: {

+ 6 - 0
pages/personalCenter/personalCenter.vue

@@ -303,6 +303,12 @@
303
                   plus.runtime.restart();
303
                   plus.runtime.restart();
304
                 }
304
                 }
305
               );
305
               );
306
+            }else{
307
+              this.$refs.seiminModel.show({
308
+                skin: "toast",
309
+                icon: "error",
310
+                content: "下载失败",
311
+              });
306
             }
312
             }
307
           },
313
           },
308
           fail: err => {
314
           fail: err => {

+ 2 - 2
request/config.js

@@ -2,14 +2,14 @@
2
  * @Author: 廖明明
2
  * @Author: 廖明明
3
  * @Date: 2022-03-31 15:12:00
3
  * @Date: 2022-03-31 15:12:00
4
  * @LastEditors: 廖明明
4
  * @LastEditors: 廖明明
5
- * @LastEditTime: 2022-04-02 14:29:15
5
+ * @LastEditTime: 2022-06-11 15:37:33
6
  * @Description: 后端服务配置文件
6
  * @Description: 后端服务配置文件
7
  */
7
  */
8
 const host = 'http://192.168.3.108';
8
 const host = 'http://192.168.3.108';
9
 //配置项
9
 //配置项
10
 const config = {
10
 const config = {
11
   baseUrl: "", // 后端服务地址
11
   baseUrl: "", // 后端服务地址
12
-  pdaDownloadUrl: `${host}/apk`, // PDA下载地址
12
+  pdaDownloadUrl: `${host}/getapk`, // PDA下载地址
13
 };
13
 };
14
 // 后端服务地址
14
 // 后端服务地址
15
 const baseUrls = {
15
 const baseUrls = {