Sfoglia il codice sorgente

商城处方推送

wjj 1 settimana fa
parent
commit
ad5d534bfd

+ 9 - 0
src/api/his/prescribeData.js

@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+
+export function generatePrescribeData(companyCustomerId) {
+  return request({
+    url: '/his/prescribeData/generatePrescribeData/' + companyCustomerId,
+    method: 'post'
+  })
+}

+ 2 - 2
src/api/hisStore/answer.js

@@ -11,9 +11,9 @@ export function getAnswer(id) {
 }
 
 // 问答列表选项
-export function questionOptions() {
+export function questionOptions(type) {
   return request({
-    url: '/store/answer/allList',
+    url: '/store/answer/allList?type=' + type,
     method: 'get',
   })
 }

+ 10 - 0
src/api/qw/companyCustomer.js

@@ -156,3 +156,13 @@ export function addBuyTimes(id) {
     data: { id: id }
   });
 }
+
+
+// 完善病例
+export function improve(data) {
+  return request({
+    url: '/qw/companyCustomer/improve',
+    method: 'post',
+    data: data
+  })
+}

File diff suppressed because it is too large
+ 426 - 128
src/views/qw/companyCustomer/index.vue


Some files were not shown because too many files changed in this diff