Browse Source

Merge branch 'master' of http://git.shengws.com/csx/Pad_New

XMLWAN 4 years ago
parent
commit
0a9ce98b32

+ 6 - 7
src/pages/home/active.vue View File

@@ -31,8 +31,7 @@
31 31
                     <p>活动主题</p>
32 32
                 </div>
33 33
                 <div class="activeTxt">
34
-                    自春节以来,新冠肺炎疫情肆虐。疫期,民营透析机构在医护紧缺的情况下,仍辛苦坚守阵地,为透析患者提供服务,逆行并开辟透析患者生命之路。基于此情况,酷医云决定向广大民营透析机构/单位进行疫期致敬回馈活动,为每一家民营透析机构
35
-                    赠送一份价值69元的精美礼品
34
+                    自春节以来,新冠肺炎疫情肆虐。疫期,民营透析机构在医护紧缺的情况下,仍辛苦坚守阵地,为透析患者提供服务,逆行并开辟透析患者生命之路;而酷医云现已覆盖全国近500家透析机构,我们深知民营透析机构的压力和辛苦。基于此情况,酷医云决定向广大民营透析机构/单位进行疫期致敬大回馈活动,为每一家民营透析机构赠送一份价值69元的精美礼品
36 35
                 </div>  
37 36
             </div>
38 37
             <div class="activeOne">
@@ -59,10 +58,10 @@
59 58
                 </div>
60 59
                 <div class="activeTxt">
61 60
                     <p>符合以下条件即可领取:</p>
62
-                    <p>1.老用户推荐其他民营透析机构医护体验酷医云</p>
61
+                    <p>1. 老用户推荐其他民营透析机构医护体验酷医云</p>
63 62
                     <p>2. 推荐的医护为对方透析中心首个注册体验酷医云的用户</p>
64 63
                     <p>3. 推荐者把推荐注册的聊天页面进行截图,并发给酷医云对接人或客服人员,客服微信号:kuyicloud</p>
65
-                    <p>4. 推荐的新用户注册和推荐者均可各自获得精美礼品一份,且双方必须在活动页面填写收货信息,礼品即可发货</p>
64
+                    <p>4. 推荐的新用户和推荐者均可各自获得精美礼品一份,且双方必须在活动页面点击我要报名并填写收货信息,礼品即可发货</p>
66 65
                 </div>  
67 66
             </div>
68 67
             <div class="join" @click="toActiveForm">我 要 报 名</div>
@@ -86,7 +85,7 @@ export default {
86 85
     // overflow-y: auto;
87 86
     background: url("https://images.shengws.com/2020/4/26/admin_avatar_1587890355876.png") no-repeat;
88 87
     background-size:100%;
89
-    height:112rem;
88
+    height:114rem;
90 89
     position: relative;
91 90
     background-color: #eaf4fe;
92 91
     .activeBox{
@@ -94,7 +93,7 @@ export default {
94 93
         left: 1.4375rem;
95 94
         top: 10rem;
96 95
         width:20.625rem;
97
-        height:95.375rem;
96
+        height:97.375rem;
98 97
         background:rgba(255,255,255,1);
99 98
         box-shadow:0px 0px 44px 0px rgba(173,198,238,0.68);
100 99
         opacity:0.9;
@@ -137,7 +136,7 @@ export default {
137 136
             p{
138 137
                 font-size: .9375rem;
139 138
                 font-weight:bold;
140
-                margin-right: .875rem;
139
+                margin-right: 1.875rem;
141 140
             }
142 141
         }
143 142
         .activeTxt{

+ 4 - 0
src/pages/home/login.vue View File

@@ -281,6 +281,10 @@ export default {
281 281
     clearCookie: function() {
282 282
       this.setCookie("", "", -1); //修改2值都为空,天数为负1天就好了
283 283
     },
284
+    a(event){
285
+      console.log(123)
286
+      console.log(event)
287
+    }
284 288
   },
285 289
   watch:{
286 290
     LoginForm:{

+ 13 - 10
src/pages/main/dialog/AcceptsDialog.vue View File

@@ -335,19 +335,22 @@ export default {
335 335
     this.intake_arr = getDataConfig("hemodialysis", "intake");
336 336
     this.nutrition_arr = getDataConfig("hemodialysis", "nutrition");
337 337
     var arr = [];
338
-    var precaution = this.accepts.precaution.split(",");
339
-    console.log("precaution", precaution);
340
-    console.log("hhh", this.precaution_arr);
341
-    for (let i = 0; i < precaution.length; i++) {
342
-      for (let j = 0; j < this.precaution_arr.length; j++) {
343
-        if (parseInt(precaution[i]) == this.precaution_arr[j].id) {
344
-          console.log("aaaa");
345
-          arr.push(this.precaution_arr[j].name);
338
+
339
+    if(this.accepts.precaution){
340
+      var precaution = this.accepts.precaution.split(",");
341
+      // console.log("precaution", precaution);
342
+      // console.log("hhh", this.precaution_arr);
343
+      for (let i = 0; i < precaution.length; i++) {
344
+        for (let j = 0; j < this.precaution_arr.length; j++) {
345
+          if (parseInt(precaution[i]) == this.precaution_arr[j].id) {
346
+            // console.log("aaaa");
347
+            arr.push(this.precaution_arr[j].name);
348
+          }
346 349
         }
347 350
       }
351
+      this.precautionTwo = arr;
352
+      // console.log("arr", arr);
348 353
     }
349
-    this.precautionTwo = arr;
350
-    console.log("arr", arr);
351 354
 
352 355
     if (this.accepts == null || this.accepts.id == "") {
353 356
       let ParamsQuery = {};

+ 2 - 2
src/pages/main/dialog/ThorougDialog.vue View File

@@ -620,7 +620,7 @@
620 620
               @click="newClick($event)"
621 621
               @focus="inputFocus"
622 622
               id="ml"
623
-              v-model="formValue.cvc_b"
623
+              v-model="formValue.cvc_v"
624 624
             />
625 625
           </div>
626 626
         </div>
@@ -784,7 +784,7 @@ export default {
784 784
         dialysis_intakes_unit: 0,
785 785
         channel: "",
786 786
         cvc_a: 0,
787
-        cvc_b: 0
787
+        cvc_v: 0
788 788
       },
789 789
 
790 790
       record_date: ""

+ 4 - 4
src/pages/main/today/assessmentAfter.vue View File

@@ -192,10 +192,10 @@
192 192
           <span class="content" id="tzjs">{{this.record.cvc_a?this.record.cvc_a:''}}</span>
193 193
           <span class="unit">{{this.record.cvc_a?'ml':''}}</span>
194 194
         </li>
195
-        <li v-if="isShow('中心静脉封管(肝素-B端)')">
196
-          <label for="bzh">中心静脉封管(肝素-B端): </label>
197
-          <span class="content" id="tzjs">{{this.record.cvc_b?this.record.cvc_b:''}}</span>
198
-          <span class="unit">{{this.record.cvc_b?'ml':''}}</span>
195
+        <li v-if="isShow('中心静脉封管(肝素-V端)')">
196
+          <label for="bzh">中心静脉封管(肝素-V端): </label>
197
+          <span class="content" id="tzjs">{{this.record.cvc_v?this.record.cvc_v:''}}</span>
198
+          <span class="unit">{{this.record.cvc_v?'ml':''}}</span>
199 199
         </li>
200 200
 
201 201
         <li v-if="isShow('管路')">

+ 3 - 0
src/pages/patientCenter/allCheck/index.vue View File

@@ -277,5 +277,8 @@ export default {
277 277
     font-weight: bold;
278 278
     flex-basis: 26% !important;
279 279
   }
280
+  .van-tabs__wrap{
281
+    overflow: inherit;
282
+  }
280 283
 }
281 284
 </style>