陈少旭 1 anno fa
parent
commit
b3e6420112

+ 25 - 0
src/api/inspection.js Vedi File

@@ -78,6 +78,31 @@ export function editPatientPICInspection(id, data) {
78 78
 }
79 79
 
80 80
 
81
+export function setRemind(params) {
82
+  return request({
83
+    url: '/api/patient/inspection_remind/set',
84
+    method: 'get',
85
+    params: params
86
+
87
+  })
88
+}
89
+
90
+export function setRemindDialog(id,is_open) {
91
+  return request({
92
+    url: '/api/checkremind/config/commit?is_open='+is_open+"&id="+id,
93
+    method: 'post'
94
+  })
95
+}
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
81 106
 
82 107
 
83 108
 

+ 15 - 21
src/xt_pages/user/inspection.vue Vedi File

@@ -238,12 +238,6 @@
238 238
               </el-radio-group>
239 239
             </el-form-item>
240 240
           </el-col>
241
-
242
-          <el-col :span="24">
243
-            <p style="margin-top:20px;">是否弹窗提醒:
244
-              <el-switch v-model="is_open"></el-switch>
245
-            </p>
246
-          </el-col>
247 241
         </el-row>
248 242
       </el-form>
249 243
       <div slot="footer" class="dialog-footer">
@@ -888,8 +882,8 @@ export default {
888 882
               this.itemDate = this.form.inspect_date
889 883
               this.items = []
890 884
               var inspections = response.data.data.inspections
891
-             
892
-              
885
+
886
+
893 887
               this.inspections = response.data.data.inspections
894 888
               if (inspections == null) {
895 889
                 this.inspections = []
@@ -903,7 +897,7 @@ export default {
903 897
                 this.inspectionsMap[inspections[index].item_id] =
904 898
                   inspections[index]
905 899
               }
906
-             
900
+
907 901
               var items = this.project.inspection_reference
908 902
               console.log('itmes', items)
909 903
               for (var index in items) {
@@ -1166,7 +1160,7 @@ export default {
1166 1160
       fetchInspectionReference(this.patientID).then(response => {
1167 1161
           if (response.data.state == 1) {
1168 1162
             var reference = response.data.data.reference
1169
-           
1163
+
1170 1164
             var patient_info = response.data.data.patient_info
1171 1165
             this.projects = reference
1172 1166
             this.patient_info = patient_info
@@ -1223,7 +1217,7 @@ export default {
1223 1217
             console.log("inspections=========",inspections)
1224 1218
             console.log("时间",this.project.inspection_reference)
1225 1219
             var obj = {created_time:0,inspect_date:0,inspect_desc:"",inspect_tips:"",inspect_type:1,inspect_value:"",item_id:11063,item_name:"",org_id:0,patient_id:"",project_id:4,project_name:"",updated_time:"",status:1}
1226
-           
1220
+
1227 1221
             this.total = response.data.data.total
1228 1222
             this.itemDate = response.data.data.date
1229 1223
             let remind = response.data.data.remind
@@ -1257,22 +1251,22 @@ export default {
1257 1251
             var inspectionsMap = {}
1258 1252
             this.inspectionsMap = {}
1259 1253
             for (var index in inspections) {
1260
-             
1254
+
1261 1255
               inspectionsMap[inspections[index].item_id] = inspections[index]
1262 1256
               this.inspectionsMap[inspections[index].item_id] = inspections[index]
1263 1257
             }
1264
-           
1258
+
1265 1259
             var items = this.project.inspection_reference
1266
-           
1260
+
1267 1261
             for (var index in items) {
1268 1262
               var item = {}
1269 1263
               for (var key in items[index]) {
1270
-               
1264
+
1271 1265
                 item[key] = items[index][key]
1272 1266
               }
1273
-             
1267
+
1274 1268
               if (item.item_id > 0) {
1275
-                
1269
+
1276 1270
                 if (inspectionsMap[items[index].item_id] == undefined) {
1277 1271
                   item.value = inspectionsMap[items[index].id].inspect_value
1278 1272
                   item.item_name = inspectionsMap[items[index].id].item_name
@@ -1283,14 +1277,14 @@ export default {
1283 1277
 
1284 1278
                 }
1285 1279
               } else {
1286
-              
1280
+
1287 1281
                 item.value = inspectionsMap[items[index].id].inspect_value
1288 1282
                 item.item_name = inspectionsMap[items[index].id].item_name
1289 1283
 
1290 1284
               }
1291
-              
1285
+
1292 1286
               item.value_direction = ''
1293
-           
1287
+
1294 1288
               if (item.range_type == 1) {
1295 1289
                 var value = parseFloat(item.value)
1296 1290
                 var range_min = parseFloat(item.range_min)
@@ -1301,7 +1295,7 @@ export default {
1301 1295
                   item.value_direction = '↑'
1302 1296
                 }
1303 1297
               }
1304
-            
1298
+
1305 1299
               this.items.push(item)
1306 1300
               console.log("item233333333333wo",this.items)
1307 1301
 

+ 72 - 2
src/xt_pages/user/inspectionCheck.vue Vedi File

@@ -40,6 +40,16 @@
40 40
         </el-col>
41 41
         <el-col :span="17" v-loading="itemLoading">
42 42
           <div class="filter-container" style="float:right">
43
+            <el-button
44
+              size="small"
45
+              class="filter-item"
46
+              type="primary"
47
+              @click="setRemind()"
48
+              v-if="project && project.project_id != 14"
49
+              icon="el-icon-circle-plus-outline"
50
+              :disabled="project ? false : true"
51
+            >设置提醒周期
52
+            </el-button>
43 53
             <el-button
44 54
               size="small"
45 55
               class="filter-item"
@@ -280,6 +290,39 @@
280 290
         </el-button>
281 291
       </div>
282 292
     </el-dialog>
293
+
294
+    <el-dialog
295
+      :title="formTitle"
296
+      :visible.sync="dialogRemindFormVisible"
297
+      width="1000px"
298
+      id="user-inspection-form"
299
+    >
300
+      <el-form :model="form" ref="form" label-position="top">
301
+        <el-row>
302
+          <el-col :span="24">
303
+            <el-form-item label="周期提醒: ">
304
+              <el-radio-group v-model="temp_remind_cycle">
305
+                <el-radio :label="1">一月一次</el-radio>
306
+                <el-radio :label="2">两月一次</el-radio>
307
+                <el-radio :label="3">三月一次</el-radio>
308
+                <el-radio :label="4">半年一次</el-radio>
309
+                <el-radio :label="5">一年一次</el-radio>
310
+              </el-radio-group>
311
+            </el-form-item>
312
+          </el-col>
313
+        </el-row>
314
+      </el-form>
315
+      <div slot="footer" class="dialog-footer">
316
+        <el-button @click="dialogRemindFormVisible = false">取 消</el-button>
317
+        <el-button
318
+          type="primary"
319
+          @click="submitNewRemind()"
320
+        >保 存
321
+        </el-button
322
+        >
323
+      </div>
324
+    </el-dialog>
325
+
283 326
   </div>
284 327
 
285 328
 </template>
@@ -295,7 +338,8 @@ import {
295 338
   DeletePatientInspection,
296 339
   EditPatientInspection,
297 340
   fetchInspectionReference,
298
-  fetchPatientInspections
341
+  fetchPatientInspections,
342
+  setRemind
299 343
 } from '@/api/inspection'
300 344
 import { getFileExtension, uParseTime } from '@/utils/tools'
301 345
 
@@ -304,6 +348,7 @@ export default {
304 348
   components: { PatientSidebar },
305 349
   data() {
306 350
     return {
351
+      temp_remind_cycle:"",
307 352
       total: 0,
308 353
       check_content:"",
309 354
       qiniuDomain: 'https://images.shengws.com/',
@@ -322,6 +367,7 @@ export default {
322 367
       formTitle: '',
323 368
       dialogPicFormVisible: false,
324 369
       dialogFormVisible: false,
370
+      dialogRemindFormVisible:false,
325 371
       patient_info: null,
326 372
 
327 373
       form: {
@@ -411,6 +457,26 @@ export default {
411 457
       this.$message.error(err)
412 458
       this.loading.close()
413 459
       return false
460
+    },submitNewRemind(){
461
+      var params = {
462
+        patient: this.patientID,
463
+        project_id: this.project.project_id,
464
+        remind_cycle: this.temp_remind_cycle
465
+      }
466
+      setRemind(params).then(response => {
467
+        if (response.data.state == 0) {
468
+          this.$message.error(response.data.msg)
469
+          return false
470
+        } else {
471
+          this.$notify({
472
+            title: '成功',
473
+            message: '设置成功',
474
+            type: 'success',
475
+            duration: 2000
476
+          })
477
+          this.dialogRemindFormVisible = false
478
+        }
479
+      })
414 480
     },
415 481
     handleAvatarSuccess(res, file) {
416 482
       this.form.imgs.push({
@@ -539,7 +605,11 @@ export default {
539 605
 
540 606
       }
541 607
 
542
-    }, openPic() {
608
+    }, setRemind(){
609
+      this.dialogRemindFormVisible = true
610
+      // this.temp_remind_cycle = this.
611
+
612
+    },openPic() {
543 613
       if (this.project == null) {
544 614
         this.$message.error('请先选择项目')
545 615
         return false