Browse Source

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

csx 5 years ago
parent
commit
aae7435e4c

+ 0 - 3
build/cdn.json View File

@@ -1,3 +0,0 @@
1
-{
2
-  "version": "1.0.58"
3
-}

+ 0 - 76
config/index.js View File

@@ -1,76 +0,0 @@
1
-'use strict'
2
-// Template version: 1.3.1
3
-// see http://vuejs-templates.github.io/webpack for documentation.
4
-
5
-const path = require('path')
6
-
7
-module.exports = {
8
-  dev: {
9
-
10
-    // Paths
11
-    assetsSubDirectory: 'static',
12
-    assetsPublicPath: '/',
13
-    proxyTable: {},
14
-
15
-    // Various Dev Server settings
16
-    host: 'localhost', // can be overwritten by process.env.HOST
17
-    port: 8081, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
18
-    autoOpenBrowser: false,
19
-    errorOverlay: true,
20
-    notifyOnErrors: true,
21
-    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
22
-
23
-    // Use Eslint Loader?
24
-    // If true, your code will be linted during bundling and
25
-    // linting errors and warnings will be shown in the console.
26
-    useEslint: true,
27
-    // If true, eslint errors and warnings will also be shown in the error overlay
28
-    // in the browser.
29
-    showEslintErrorsInOverlay: false,
30
-
31
-    /**
32
-     * Source Maps
33
-     */
34
-
35
-    // https://webpack.js.org/configuration/devtool/#development
36
-    devtool: 'cheap-module-eval-source-map',
37
-
38
-    // If you have problems debugging vue-files in devtools,
39
-    // set this to false - it *may* help
40
-    // https://vue-loader.vuejs.org/en/options.html#cachebusting
41
-    cacheBusting: true,
42
-
43
-    cssSourceMap: true
44
-  },
45
-
46
-  build: {
47
-    // Template for index.html
48
-    index: path.resolve(__dirname, '../dist/index.html'),
49
-
50
-    // Paths
51
-    assetsRoot: path.resolve(__dirname, '../dist'),
52
-    assetsSubDirectory: 'static',
53
-    assetsPublicPath: './',
54
-
55
-    /**
56
-     * Source Maps
57
-     */
58
-
59
-    productionSourceMap: false,
60
-    // https://webpack.js.org/configuration/devtool/#production
61
-    devtool: '#source-map',
62
-
63
-    // Gzip off by default as many popular static hosts such as
64
-    // Surge or Netlify already gzip all static assets for you.
65
-    // Before setting to `true`, make sure to:
66
-    // npm install --save-dev compression-webpack-plugin
67
-    productionGzip: false,
68
-    productionGzipExtensions: ['js', 'css'],
69
-
70
-    // Run the build command with an extra argument to
71
-    // View the bundle analyzer report after build finishes:
72
-    // `npm run build --report`
73
-    // Set to `true` or `false` to always turn it on or off
74
-    bundleAnalyzerReport: process.env.npm_config_report
75
-  }
76
-}

+ 0 - 9
config/prod.env.js View File

@@ -1,9 +0,0 @@
1
-'use strict'
2
-module.exports = {
3
-  NODE_ENV: '"production"',
4
-  BASE_API: '"http://api.xt.test.sgjyun.com"'
5
-
6
-  // BASE_API: '"https://api.xt.kuyicloud.com"'
7
-  // http://api.xt.test.sgjyun.com
8
-  // '"http://api.xt.kuyicloud.com"', //'"http://api.xt.kuyicloud.com"','"http://api.xt.test.sgjyun.com"'
9
-}

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

@@ -254,7 +254,7 @@ export default {
254 254
           var scheduals = [];
255 255
           for (let index = 0; index < this.scheduals.length; index++) {
256 256
             const schedual = this.scheduals[index];
257
-            if (schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weighing_before == 0) {
257
+            if (schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weight_before == 0) {
258 258
               if(this.cur_zone_selected > 0 && schedual.device_number.zone.id != this.cur_zone_selected) {
259 259
                 continue
260 260
               }
@@ -270,7 +270,7 @@ export default {
270 270
           var scheduals = [];
271 271
           for (let index = 0; index < this.scheduals.length; index++) {
272 272
             const schedual = this.scheduals[index];
273
-            if (schedual.prescription == null || schedual.prescription.creater == 0) {
273
+            if (schedual.prescription == null || schedual.prescription.prescription_doctor == 0) {
274 274
               if(this.cur_zone_selected > 0 && schedual.device_number.zone.id != this.cur_zone_selected) {
275 275
                 continue
276 276
               }
@@ -381,12 +381,12 @@ export default {
381 381
           schedualMap[schedual.device_number.zone.id] = [];
382 382
         }
383 383
         if (this.select_index == 1) {
384
-            if(schedual.prescription == null || schedual.prescription.creater == 0){
384
+            if(schedual.prescription == null || schedual.prescription.prescription_doctor == 0){
385 385
             schedualMap[schedual.device_number.zone.id].push(schedual);
386 386
             prescription_count++
387 387
           }
388 388
         } else if (this.select_index == 2){
389
-            if(schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weighing_before == 0){
389
+            if(schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weight_before == 0){
390 390
             schedualMap[schedual.device_number.zone.id].push(schedual);
391 391
             assessment_before_dislysis_count++
392 392
           }

+ 8 - 4
src/pages/main/dialog/MonitDialog.vue View File

@@ -30,8 +30,10 @@
30 30
                 <th v-if="isShow('超滤量') && template_id !=6" width="76px">超滤量(L)</th>
31 31
                 <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
32 32
                 <th v-if="isShow('透析液温度')" width="82px">透析液温度(℃)</th>
33
-                <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
34
-                <th v-if="isShow('置换量')" width="50px">置换量(L)</th>
33
+                <th v-if="isShow('置换率') && template_id ==6" width="92px">置换率(ml/min)</th>
34
+                <th v-if="isShow('置换率') && template_id !=6" width="92px">置换率(L/h)</th>
35
+                <th v-if="isShow('置换量') && template_id ==6" width="50px">置换量(ml)</th>
36
+                <th v-if="isShow('置换量') && template_id !=6" width="50px">置换量(L)</th>
35 37
                 <th v-if="isShow('电导度')" width="50px">电导度(mS/m)</th>
36 38
                 <th v-if="isShow('置换液流量')" width="50px">置换液流量(ml/h)</th>
37 39
 
@@ -150,12 +152,14 @@
150 152
                      v-model="form.sodium_concentration">
151 153
             </div>
152 154
             <div class="cell" v-if="isShow('置换率')">
153
-              <label>置换率(L/h)</label>
155
+              <label v-if="template_id == 6">置换率(ml/min)</label>
156
+              <label v-else>置换率(L/h)</label>
154 157
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
155 158
                      v-model="form.replacement_rate">
156 159
             </div>
157 160
             <div class="cell" v-if="isShow('置换量')">
158
-              <label>置换量(L)</label>
161
+              <label v-if="template_id == 6">置换量(ml)</label>
162
+              <label v-else>置换量(L)</label>
159 163
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
160 164
                      v-model="form.displacement_quantity">
161 165
             </div>

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

@@ -197,9 +197,9 @@
197 197
         if (response.data.state == 0) {
198 198
           Toast.fail(response.data.msg);
199 199
           return false;
200
-        } else {
200
+        } else {debugger
201 201
           Toast.success("下机成功");
202
-          this.$emit('did_off', response.data.data.dialysisOrder);
202
+          this.$emit('did_off', response.data.data.assessmentAfterDislysis);
203 203
           var record = this.record
204 204
           for (const key in response.data.data.dialysisOrder) {
205 205
             this.$set(record, key, response.data.data.dialysisOrder[key])

+ 1 - 1
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -5,7 +5,7 @@
5 5
       <div class="DialogTit">
6 6
         <span @click="close()" class="iconfont">&#xe6e9;</span>
7 7
         <h1 class="name">透析处方</h1>
8
-        <botton @click="showmsgtip">{{patient.name}}  [透析号 {{patient.dialysis_no}} ]</botton>
8
+        <button @click="showmsgtip">{{patient.name}}  [透析号 {{patient.dialysis_no}} ]</button>
9 9
         <span @click="commitInfo" class="success" v-if="isPermission()">完成</span>
10 10
         <span @click="commitInfo" class="success" v-if="!isPermission()"></span>
11 11
 

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

@@ -19,7 +19,8 @@
19 19
         </div>
20 20
 
21 21
         <div class="item" v-if="isShow('实际超滤量')">
22
-          <label class="name" for="sjcll">实际超滤量(L)</label>
22
+          <label v-if="template_id == 6" class="name" for="sjcll">实际超滤量(ml)</label>
23
+          <label v-else class="name" for="sjcll">实际超滤量(L)</label>
23 24
           <div class="content">
24 25
             <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
25 26
 
@@ -411,7 +412,7 @@
411 412
         puncture_point_oozing_blood_state: false,
412 413
         puncture_point_haematoma_state: false,
413 414
         eat_state: false,
414
-
415
+        template_id: 0,
415 416
         isShowDialog: true,
416 417
         time: '00:00',
417 418
         puncture_point_oozing_bloods:[
@@ -1245,25 +1246,36 @@
1245 1246
       let initMinute = ''
1246 1247
       let tempHour = ''
1247 1248
       let tempMinute = ''
1249
+      this.template_id = this.$store.getters.user.template_info.template_id
1248 1250
 
1249 1251
       if (this.record != null && this.record.id != '' && this.record.assessment_doctor != 0) {
1250 1252
         for (const key in this.formValue) {
1251 1253
           // console.log(key, this.record[key]);
1252 1254
           this.formValue[key] = this.record[key];
1253 1255
         }
1254
-      }else if (this.last_record != null && this.last_record.id != "") {
1255
-        for (const key in this.formValue) {
1256
-          // console.log(key, this.record[key]);
1257
-          this.formValue[key] = this.last_record[key];
1258
-        }
1256
+      }else  {
1257
+        // if (this.last_record != null && this.last_record.id != ""){
1258
+        //   for (const key in this.formValue) {
1259
+        //     // console.log(key, this.record[key]);
1260
+        //     this.formValue[key] = this.last_record[key];
1261
+        //   }
1262
+        // }
1259 1263
         if (this.record != null && this.record.id != '' && this.record.assessment_doctor == 0){
1260 1264
           this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1261 1265
           this.$set(this.formValue, "weight_after", this.record.weight_after)
1262 1266
           this.$set(this.formValue, "weight_loss", this.record.weight_loss)
1267
+          this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1268
+          this.$set(this.formValue, "actual_displacement", this.record.actual_displacement)
1269
+          this.$set(this.formValue, "actual_treatment_hour", this.record.actual_treatment_hour)
1270
+          this.$set(this.formValue, "actual_treatment_minute", this.record.actual_treatment_minute)
1263 1271
         } else {
1264 1272
           this.$set(this.formValue, "actual_ultrafiltration", '')
1265 1273
           this.$set(this.formValue, "weight_after", '')
1266 1274
           this.$set(this.formValue, "weight_loss", '')
1275
+          this.$set(this.formValue, "actual_ultrafiltration", '')
1276
+          this.$set(this.formValue, "actual_displacement", '')
1277
+          this.$set(this.formValue, "actual_treatment_hour", '')
1278
+          this.$set(this.formValue, "actual_treatment_minute", '')
1267 1279
         }
1268 1280
       } 
1269 1281
   

+ 16 - 7
src/pages/main/today/TodayTab.vue View File

@@ -147,7 +147,7 @@
147 147
                        :device_numbers="device_numbers" :admin_map="admin_user_map"
148 148
                        :special_premission="special_premission"
149 149
                        :device_number_map="device_number_map" @did_start="closeDialysisComputer"
150
-                        @did_add_monitor="didAddMonitor" @close="closeDialysisComputer" ref="computer_dialog"></computer-dialog>
150
+                        @did_add_monitor="didAddMonitor" @close="closeDialysisComputerclose" ref="computer_dialog"></computer-dialog>
151 151
     </van-popup>
152 152
 
153 153
     <van-popup title="透析监测" v-model="menuList[6].showPopup" :overlay="true" :close-on-click-overlay="false">
@@ -161,7 +161,7 @@
161 161
     <van-popup title="透析下机" v-model="menuList[7].showPopup" :overlay="true" :close-on-click-overlay="false">
162 162
       <plane-dialog :patient_prop="patient" :record="dialysis_order" :last_monitor_record="last_monitor_record" :admins="admin_users" :admin_map="admin_user_map"
163 163
                     :special_premission="special_premission"
164
-                    @did_off="closeDialysisOff" @close="closeDialysisOff" ref="plane_dialog"></plane-dialog>
164
+                    @did_off="closeDialysisOff" @close="closeDialysisOffclose" ref="plane_dialog"></plane-dialog>
165 165
     </van-popup>
166 166
 
167 167
     <van-popup title="透后评估" v-model="menuList[8].showPopup" :overlay="true" :close-on-click-overlay="false">
@@ -684,10 +684,7 @@
684 684
             }
685 685
 
686 686
             this.double_check = double_check == null ? {id: ''} : double_check
687
-            this.assessment_after_dislysis =
688
-              assessment_after_dislysis == null
689
-                ? {id: ''}
690
-                : assessment_after_dislysis
687
+            this.assessment_after_dislysis = assessment_after_dislysis == null ? {id: ''} : assessment_after_dislysis
691 688
             this.last_assessment_after_dislysis =
692 689
               last_assessment_after_dislysis == null
693 690
                 ? {id: ''}
@@ -1192,6 +1189,12 @@
1192 1189
       ,
1193 1190
       closeDialysisComputer: function (dialysis_order) {
1194 1191
         this.closeDialog(0)
1192
+        this.dialysis_order = dialysis_order
1193
+        // this.scrollToView('dialysis_computer')
1194
+      },
1195
+       closeDialysisComputerclose: function (dialysis_order) {
1196
+        this.closeDialog(0)
1197
+        // this.dialysis_order = dialysis_order
1195 1198
         // this.scrollToView('dialysis_computer')
1196 1199
       }
1197 1200
       ,
@@ -1205,7 +1208,13 @@
1205 1208
         // this.scrollToView('monitoring')
1206 1209
       }
1207 1210
       ,
1208
-      closeDialysisOff: function () {
1211
+      closeDialysisOff: function (assessment_after_dislysis) {debugger
1212
+        this.closeDialog(7)
1213
+        if (assessment_after_dislysis != undefined) {
1214
+          this.assessment_after_dislysis = assessment_after_dislysis
1215
+        }
1216
+      },
1217
+      closeDialysisOffclose: function () {
1209 1218
         this.closeDialog(7)
1210 1219
         // this.scrollToView('dialysis_off')
1211 1220
       }

+ 15 - 1
src/pages/main/today/assessmentBefore.vue View File

@@ -31,6 +31,11 @@
31 31
           <span class="content">{{ catheter }}</span>
32 32
           <span class="unit"></span>
33 33
         </li>
34
+        <li v-if="isShow('衣物重')">
35
+          <label>衣物重 : </label>
36
+          <span class="content">{{ additional_weight?additional_weight:''}}</span>
37
+          <span class="unit">{{ additional_weight?'kg':''}}</span>
38
+        </li>
34 39
         <li v-if="isShow('干体重')">
35 40
           <label>干体重 : </label>
36 41
           <span class="content">{{ dry_weight?dry_weight:''}}</span>
@@ -201,7 +206,7 @@
201 206
     data () {
202 207
       return {
203 208
         title: '透前评估 ',
204
-
209
+        template_id: 0,
205 210
       }
206 211
     },
207 212
     props: {
@@ -209,6 +214,9 @@
209 214
         type: Object
210 215
       }
211 216
     },
217
+    created () {
218
+      this.template_id = this.$store.getters.user.template_info.template_id
219
+    },
212 220
     computed: {
213 221
       machine_type:function(){
214 222
         if (this.record == null || this.record.id == '') {
@@ -223,6 +231,12 @@
223 231
         }
224 232
         return this.record.weight_before
225 233
       },
234
+      additional_weight:function () {
235
+        if (this.record == null || this.record.id == '') {
236
+          return '-'
237
+        }
238
+        return this.record.additional_weight
239
+      },
226 240
       systolic_blood_pressure: function () {
227 241
         if (this.record == null || this.record.id == '') {
228 242
           return '-'

+ 7 - 1
src/pages/main/today/dialysisMonitoring.vue View File

@@ -12,11 +12,13 @@
12 12
           <th width="76px">静脉压/动脉压(mmHg)</th>
13 13
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
14 14
           <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
15
-          <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
15
+          <th v-if="isShow('超滤量') && template_id ==6" width="76px">超滤量(ml)</th>
16
+          <th v-if="isShow('超滤量') && template_id !=6" width="76px">超滤量(L)</th>
16 17
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
17 18
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
18 19
           <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
19 20
           <th v-if="isShow('置换量')"  width="92px">置换量(L)</th>
21
+          
20 22
           <th v-if="isShow('电导度')"  width="92px">电导度(mS/m)</th>
21 23
           <th v-if="isShow('置换液流量')"  width="92px">置换液流量(ml/h)</th>
22 24
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
@@ -59,9 +61,13 @@ export default {
59 61
   data() {
60 62
     return {
61 63
       title: "透析监测 ",
64
+      template_id: 0,
62 65
       tableDate: []
63 66
     };
64 67
   },
68
+   created () {
69
+    this.template_id = this.$store.getters.user.template_info.template_id
70
+   },
65 71
   methods: {
66 72
     isShow(name){
67 73
       var filedList = this.$store.getters.user.fileds

+ 0 - 71
src/router/index.js View File

@@ -1,71 +0,0 @@
1
-import Vue from 'vue'
2
-import Router from 'vue-router'
3
-
4
-Vue.use(Router)
5
-
6
-export default new Router({
7
-  routes: [
8
-    {
9
-      path: '/',
10
-      name: 'Home',
11
-      component: () => import('@/pages/home/login')
12
-    },
13
-    {
14
-      path: '/product',
15
-      name: 'Product',
16
-      component: () => import('@/pages/product/index')
17
-    },
18
-    {
19
-      path: '/main',
20
-      name: 'main',
21
-      component: () => import('@/pages/main/index')
22
-    },
23
-    {
24
-      path: '/details',
25
-      name: 'details',
26
-      component: () => import('@/pages/main/DetailsPage')
27
-    },
28
-    {
29
-      path: '/monitoring',
30
-      name: 'monitorPage',
31
-      component: () => import('@/pages/monitoring/index')
32
-
33
-    },
34
-    {
35
-      path: '/my',
36
-      name: 'my',
37
-      component: () => import('@/pages/personal/index')
38
-    },
39
-    {
40
-      path: '/advice',
41
-      name: 'doctorAdvice',
42
-      component: () => import('@/pages/advice/index')
43
-    },
44
-    {
45
-      path: '/EditPersonal',
46
-      name: 'EditPersonal',
47
-      component: () => import('@/pages/personal/EditPersonal')
48
-    },
49
-    {
50
-      path: '/ElectronicSignature',
51
-      name: 'ElectronicSignature',
52
-      component: () => import('@/pages/personal/ElectronicSignature')
53
-    },
54
-    {
55
-      path: '/Print',
56
-      name: 'Print',
57
-      component: () => import('@/pages/main/PrintIndex')
58
-    },
59
-    {
60
-      path: '/add_urgent_schedule',
61
-      name: 'AddUrgentSchedule',
62
-      component: () => import('@/pages/main/add_urgent_schedule')
63
-    },
64
-    {
65
-      path: '/Prints',
66
-      name: 'Prints',
67
-      component: () => import('@/pages/main/Print')
68
-    },
69
-
70
-  ]
71
-})