seimin il y a 2 ans
Parent
commit
2458f3fc66
5 fichiers modifiés avec 21 ajouts et 8 suppressions
  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 12
 Vue.prototype.$request = request
13 13
 
14 14
 Vue.config.productionTip = false
15
-console.info('v1.0.2')
15
+console.info('v1.0.4')
16 16
 
17 17
 App.mpType = 'app'
18 18
 

+ 2 - 2
manifest.json

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

+ 10 - 3
pages/index/index.vue

@@ -107,9 +107,15 @@
107 107
     watch: {
108 108
       // 首页搜索内容
109 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 121
     data() {
@@ -124,6 +130,7 @@
124 130
         hospitalList: [], //当前用户权限中的院区列表
125 131
         pickerTitle: "", //选择院区picker的title
126 132
         specimenTaskTypeId: undefined, //标本任务类型id
133
+        timer:null,
127 134
       };
128 135
     },
129 136
     computed: {

+ 6 - 0
pages/personalCenter/personalCenter.vue

@@ -303,6 +303,12 @@
303 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 314
           fail: err => {

+ 2 - 2
request/config.js

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