Browse Source

Merge branch 'wzf' of http://git.shengws.com/zhangbj/xt_pad into wzf

xiaoming_global 5 years ago
parent
commit
dff8b94d0e

+ 1 - 1
src/pages/layout/SideBar.vue View File

134
           }
134
           }
135
           p {
135
           p {
136
             font-size: 0.32rem;
136
             font-size: 0.32rem;
137
-            margin-top: 0.05rem;
137
+            // margin-top: 0.05rem;
138
             @media only screen and (max-width: 812px) {
138
             @media only screen and (max-width: 812px) {
139
               font-size: 0.45rem;
139
               font-size: 0.45rem;
140
             }
140
             }

+ 1 - 1
src/pages/main/DetailsPage.vue View File

174
       color: #fff;
174
       color: #fff;
175
     }
175
     }
176
     .nav {
176
     .nav {
177
-      margin-right: 2.5rem;
177
+      margin-right: 2.4rem;
178
       @media only screen and (min-width: 768px) {
178
       @media only screen and (min-width: 768px) {
179
         margin-right: 4rem;
179
         margin-right: 4rem;
180
       }
180
       }

+ 2 - 2
src/pages/main/RecordPage.vue View File

239
       float: left;
239
       float: left;
240
       font-size: 0.45rem;
240
       font-size: 0.45rem;
241
       margin: 0 0.2rem;
241
       margin: 0 0.2rem;
242
-      height: 0.9rem;
243
-      line-height: 0.85rem;
242
+      height: 0.8rem;
243
+      line-height: 0.75rem;
244
       padding: 0 0.4rem;
244
       padding: 0 0.4rem;
245
       // color: $title-color;
245
       // color: $title-color;
246
       color: #fff;
246
       color: #fff;

+ 1 - 1
src/pages/main/WaitingArea.vue View File

101
       menuList: [
101
       menuList: [
102
         { value: "1", label: "全部", count: 0 },
102
         { value: "1", label: "全部", count: 0 },
103
         { value: "3", label: "待开处方", count: 0 },
103
         { value: "3", label: "待开处方", count: 0 },
104
-        { value: "2", label: "待透前称量", count: 0 }
104
+        { value: "2", label: "待称量", count: 0 }
105
       ],
105
       ],
106
 
106
 
107
       select_index: 0,
107
       select_index: 0,

+ 7 - 0
src/pages/personal/ElectronicSignature.vue View File

130
   created() {
130
   created() {
131
     this.getToken();
131
     this.getToken();
132
     this.GetElectronicSignature();
132
     this.GetElectronicSignature();
133
+    document.body.addEventListener(
134
+      "touchmove",
135
+      function(e) {
136
+        e.preventDefault();
137
+      },
138
+      { passive: false }
139
+    );
133
   },
140
   },
134
   mounted() {
141
   mounted() {
135
     const canvas = document.querySelector("#canvas");
142
     const canvas = document.querySelector("#canvas");