Browse Source

新分支

28169 1 year ago
parent
commit
2985755d62

+ 9 - 0
src/api/role/admin.js View File

@@ -320,6 +320,15 @@ export function toCheckPDFInformation(params){
320 320
   })
321 321
 }
322 322
 
323
+export function toAutoDrug(params){
324
+  
325
+  return request({
326
+    url:"/api/device/toautodrug",
327
+    method:"get",
328
+    params:params
329
+  })
330
+}
331
+
323 332
 // export function getdruginfoInformation(params){
324 333
 
325 334
 //    return request({

+ 1 - 1
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue View File

@@ -1630,7 +1630,7 @@ export default {
1630 1630
           }
1631 1631
       }
1632 1632
 
1633
-      if(this.$store.getters.xt_user.org.id == 10580){
1633
+      if(this.$store.getters.xt_user.org.id == 10580 || this.$store.getters.xt_user.org.id == 10585){
1634 1634
         var year = date.getFullYear()
1635 1635
           var month = date.getMonth() + 1
1636 1636
           var day = date.getDate()

+ 14 - 3
src/xt_pages/role/admin.vue View File

@@ -25,12 +25,12 @@
25 25
         >医药师登记</el-button>
26 26
 
27 27
 
28
-        <el-button
28
+        <!-- <el-button
29 29
           type="primary"
30 30
           size="small"
31 31
           icon="el-icon-circle-plus-outline"
32 32
           style="float:left"
33
-          @click="toJiaBan">加班</el-button>
33
+          @click="toJiaBan">加班</el-button> -->
34 34
        
35 35
 
36 36
          <!-- <el-button
@@ -209,6 +209,12 @@
209 209
           @click="toCheckPDFInformation">PDF验证</el-button> -->
210 210
 
211 211
 
212
+          <el-button
213
+          type="primary"
214
+          size="small"
215
+          icon="el-icon-circle-plus-outline"
216
+          style="float:left"
217
+          @click="toAutoDrug">自动生成</el-button>
212 218
 
213 219
 
214 220
      </div>
@@ -516,7 +522,7 @@
516 522
 
517 523
 <script>
518 524
 import { adminMainView, getAdmins, setAdminStatus,toSign,toTestOne,toTestTwo,toTestThree,toTestFour,toTestFive,toTestSeven,toTestEight,toTestNight,toTestTen,toTestElement,toTestThrityMent,saveEnterprise,getEnterPriseById,getMobileCode,savePersionEnterPrise,getPerseEnterPriseById,CreatePersionSeal,CreateNewEnterPrise,toTestThrity,toEndEnterPrise,getEnterPriseDetail
519
-  ,CreateQianshuUserName,CreateSKDSendInformation,toSavePDFInformation,toCheckPDFInformation,getdruginfoInformation} from "@/api/role/admin";
525
+  ,CreateQianshuUserName,CreateSKDSendInformation,toSavePDFInformation,toCheckPDFInformation,getdruginfoInformation,toAutoDrug} from "@/api/role/admin";
520 526
 import { getRoles } from "@/api/role/role";
521 527
 import { UploadPrintOrder } from "@/api/role/admin"
522 528
 import { parseTime } from "@/utils";
@@ -1174,6 +1180,11 @@ export default {
1174 1180
 
1175 1181
         }
1176 1182
       })
1183
+    },
1184
+    toAutoDrug(){
1185
+      toAutoDrug().then(Response=>{
1186
+
1187
+      })
1177 1188
     }
1178 1189
 
1179 1190
   },