Selaa lähdekoodia

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 3 viikkoa sitten
vanhempi
commit
473271c5d5

+ 45 - 0
src/api/patient.js Näytä tiedosto

@@ -1403,4 +1403,49 @@ export function getPatientRescueRecordList(id,patient_id,params){
1403 1403
     method:"get",
1404 1404
     params:params
1405 1405
   })
1406
+}
1407
+
1408
+export function getMonitorSearchList(params){
1409
+
1410
+  return request({
1411
+    url:"/api/patient/getmonitorsearchlist",
1412
+    method:"get",
1413
+    params:params,
1414
+  })
1415
+}
1416
+
1417
+export function getSummarySearchList(params){
1418
+
1419
+  return request({
1420
+    url:"/api/patient/getsummarysearchlist",
1421
+    method:"get",
1422
+    params:params
1423
+  })
1424
+}
1425
+
1426
+export function getPatientDryWeightList(params){
1427
+
1428
+  return request({
1429
+    url:"/api/patient/getpatientdryweightlist",
1430
+    method:"Get",
1431
+    params:params
1432
+  })
1433
+}
1434
+
1435
+export function getDilaysisSystemList(params){
1436
+   
1437
+  return request({
1438
+    url:"/api/patient/getdialysissystemlist",
1439
+    method:"Get",
1440
+    params:params,
1441
+  })
1442
+}
1443
+
1444
+export function getPatientAdviceList(params){
1445
+
1446
+  return request({
1447
+    url:"/api/patient/getpatientadvicelist",
1448
+    method:"Get",
1449
+    params:params,
1450
+  })
1406 1451
 }

+ 10 - 9
src/xt_pages/user/components/PatientForm.vue Näytä tiedosto

@@ -1707,14 +1707,15 @@ export default {
1707 1707
         },
1708 1708
         handleGallerySuccess(res, file) {
1709 1709
             var data = {type:1, url: this.qiniuDomain + res.url};
1710
-            // this.fileList.push(data.url)
1711
-            // if(this.fileList!=null){
1712
-            //   for(let i=0;i<this.fileList.length;i++){
1713
-            //      this.form.org_logo += this.fileList[i].url+","
1714
-            //   }
1715
-            // }
1716
-           console.log("hahahahhwoowowo",this.form.org_logo)
1717
-           this.form.org_logo += data.url+","
1710
+            this.fileList.push(data)
1711
+            console.log("fileLit==============",this.fileList)
1712
+            if(this.fileList!=null){
1713
+              for(let i=0;i<this.fileList.length;i++){
1714
+                 this.form.org_logo += this.fileList[i].url+","
1715
+              }
1716
+            }
1717
+          //  console.log("hahahahhwoowowo",this.form.org_logo)
1718
+          //  this.form.org_logo += data.url+","
1718 1719
 
1719 1720
             this.guploading = false;
1720 1721
         },
@@ -2071,7 +2072,7 @@ export default {
2071 2072
             if(arrNew!=null){
2072 2073
               for(let i=0;i<arrNew.length;i++){
2073 2074
                 if(arrNew[i]!=""){
2074
-                  var image = { name:i+1, url:arrNew[i]+'?vframe/jpg/offset/0/w/100/h/100'};
2075
+                  var image = { name:i+1, url:arrNew[i]};
2075 2076
                   this.fileList.push(image)
2076 2077
                 }
2077 2078
               }

+ 4 - 4
src/xt_pages/user/components/PatientSidebar.vue Näytä tiedosto

@@ -179,10 +179,10 @@ export default {
179 179
             //   name: '3-3',
180 180
             //   label: '体格检查新'
181 181
             // },
182
-             {
183
-              name: '3-5',
184
-              label: '病程记录新'
185
-             },
182
+            //  {
183
+            //   name: '3-5',
184
+            //   label: '病程记录新'
185
+            //  },
186 186
             {
187 187
               name: '1-11',
188 188
               label: '首次病程记录'

File diff suppressed because it is too large
+ 1351 - 264
src/xt_pages/user/courseOfDisease_new.vue