Browse Source

处方成组符号兼容

zengfanwei 3 days ago
parent
commit
e781054294
1 changed files with 18 additions and 3 deletions
  1. 18 3
      src/main/resources/static/js/mz/west_pharmacy_send.js

+ 18 - 3
src/main/resources/static/js/mz/west_pharmacy_send.js

@@ -3566,13 +3566,28 @@ function printView(data) {
             // console.log('current',current);
             if (current) {
                 if(current.length == 1){
-                    current[0].groupSign = '⊐'
+                    current[0].groupSign =
+                        `<span style="
+                               display: inline-block;width: 5px;height: 5px;
+                               border: 1px solid black;border-left: none">
+                         </span>`
+                        // '⊐'
                 } else {
                     current.forEach((item,index) => {
                         if(index == 0) {
-                            item.groupSign = '⌝'
+                            item.groupSign =
+                                `<span style="
+                                       display: inline-block;width: 5px;height: 5px;
+                                       border-right: 1px solid black;border-top: 1px solid black">
+                                </span>`
+                            // '⌝'
                         } else if(index == current.length - 1) {
-                            item.groupSign = '⌟'
+                            item.groupSign =
+                                `<span style="
+                                       display: inline-block;width: 5px;height: 5px;
+                                       border-right: 1px solid black;border-bottom: 1px solid black">
+                                </span>`
+                                // '⌟'
                         } else {
                             item.groupSign = ''
                         }