浏览代码

患者建单-未完

seimin 2 年之前
父节点
当前提交
51082ce837

+ 1 - 1
components/seiminFooterNav/seiminFooterNav.vue

@@ -124,7 +124,7 @@
124 124
         background: linear-gradient(180deg, #74c271 0%, #39b199 100%);
125 125
         border-radius: 50%;
126 126
         position: relative;
127
-        top: -10rpx;
127
+        top: -16rpx;
128 128
         color: #fff;
129 129
       }
130 130
 

+ 47 - 0
pages.json

@@ -2,12 +2,18 @@
2 2
   "pages": [{
3 3
       "path": "pages/login/login",
4 4
       "style": {
5
+        "h5": {
6
+          "titleNView": false
7
+        },
5 8
         "navigationBarTitleText": "登录"
6 9
       }
7 10
     },
8 11
     {
9 12
       "path": "pages/index/index",
10 13
       "style": {
14
+        "h5": {
15
+          "titleNView": false
16
+        },
11 17
         "navigationBarTitleText": "首页",
12 18
         "navigationBarBackgroundColor": "#49B856",
13 19
         "enablePullDownRefresh": true
@@ -15,6 +21,9 @@
15 21
     }, {
16 22
       "path": "pages/quickCreateOrder/quickCreateOrder",
17 23
       "style": {
24
+        "h5": {
25
+          "titleNView": false
26
+        },
18 27
         "navigationBarTitleText": "快捷建单",
19 28
         "navigationBarBackgroundColor": "#2C2D31"
20 29
       }
@@ -22,6 +31,9 @@
22 31
     }, {
23 32
       "path": "pages/searchDept/searchDept",
24 33
       "style": {
34
+        "h5": {
35
+          "titleNView": false
36
+        },
25 37
         "navigationBarTitleText": "选择科室",
26 38
         "navigationBarBackgroundColor": "#2C2D31"
27 39
       }
@@ -29,6 +41,9 @@
29 41
     }, {
30 42
       "path": "pages/orderList/orderList",
31 43
       "style": {
44
+        "h5": {
45
+          "titleNView": false
46
+        },
32 47
         "navigationBarTitleText": "工单列表",
33 48
         "navigationBarBackgroundColor": "#2C2D31",
34 49
         "enablePullDownRefresh": true
@@ -36,6 +51,9 @@
36 51
     }, {
37 52
       "path": "pages/orderDetail/orderDetail",
38 53
       "style": {
54
+        "h5": {
55
+          "titleNView": false
56
+        },
39 57
         "navigationBarTitleText": "工单详情",
40 58
         "navigationBarBackgroundColor": "#2C2D31"
41 59
       }
@@ -43,6 +61,9 @@
43 61
     }, {
44 62
       "path": "pages/detail/detail",
45 63
       "style": {
64
+        "h5": {
65
+          "titleNView": false
66
+        },
46 67
         "navigationBarTitleText": "详情",
47 68
         "navigationBarBackgroundColor": "#2C2D31"
48 69
       }
@@ -50,6 +71,9 @@
50 71
     }, {
51 72
       "path": "pages/patientList/patientList",
52 73
       "style": {
74
+        "h5": {
75
+          "titleNView": false
76
+        },
53 77
         "navigationBarTitleText": "患者列表",
54 78
         "navigationBarBackgroundColor": "#2C2D31"
55 79
       }
@@ -57,10 +81,33 @@
57 81
     }, {
58 82
       "path": "pages/patientDetail/patientDetail",
59 83
       "style": {
84
+        "h5": {
85
+          "titleNView": false
86
+        },
60 87
         "navigationBarTitleText": "患者详情",
61 88
         "navigationBarBackgroundColor": "#2C2D31"
62 89
       }
63 90
 
91
+    }, {
92
+      "path": "pages/patientBuild/patientBuild",
93
+      "style": {
94
+        "h5": {
95
+          "titleNView": false
96
+        },
97
+        "navigationBarTitleText": "建单",
98
+        "navigationBarBackgroundColor": "#2C2D31"
99
+      }
100
+
101
+    }, {
102
+      "path": "pages/appointmentInspect/appointmentInspect",
103
+      "style": {
104
+        "h5": {
105
+          "titleNView": false
106
+        },
107
+        "navigationBarTitleText": "预约检查",
108
+        "navigationBarBackgroundColor": "#2C2D31"
109
+      }
110
+
64 111
     }
65 112
   ],
66 113
   "globalStyle": {

+ 248 - 0
pages/appointmentInspect/appointmentInspect.vue

@@ -0,0 +1,248 @@
1
+<template>
2
+  <view class="appointmentInspect">
3
+    <view class="qco_msg" v-html="patientMsg"></view>
4
+    <view class="select_block_wrap">
5
+      <view class="uni-list">
6
+        <checkbox-group @change="checkboxChange">
7
+          <scroll-view scroll-y class="scrollHeight">
8
+            <label class="inspect_listItem" v-for="inspect in inspects" :key="inspect.value">
9
+              <view class="inspect_listItem_header">
10
+                <view class="inspect_listItem_header_title">
11
+                  <checkbox color="#09BB07" :value="inspect.value" :checked="inspect.checked" />
12
+                  <view class="inspectInfo">
13
+                    <text class="info">
14
+                      <text v-if="inspect.yyTime">{{inspect.yyTime|formatDate('MM-dd HH:mm')}}</text>
15
+                      <text class="dept" v-if="inspect.execDept">
16
+                        {{deptDisplay == 2?inspect.execDept.deptalias:inspect.execDept.dept}}
17
+                      </text>
18
+                    </text>
19
+                  </view>
20
+                </view>
21
+              </view>
22
+              <view class="inspect_listItem_item">
23
+                <view class="inspect_listItem_item_content">
24
+                  <text class="inspect_listItem_item_name">进行 {{inspect.inspectName || "检查"}}</text>
25
+                </view>
26
+              </view>
27
+            </label>
28
+          </scroll-view>
29
+        </checkbox-group>
30
+      </view>
31
+    </view>
32
+    <!-- 底部 -->
33
+    <seiminFooterBtn :btns="btns"></seiminFooterBtn>
34
+    <seiminModel ref="seiminModel"></seiminModel>
35
+  </view>
36
+</template>
37
+
38
+<script>
39
+  import cloneDeep from 'lodash/cloneDeep';
40
+  import {
41
+    mapState
42
+  } from "vuex";
43
+  import {
44
+    ASSOCIATION_TYPES
45
+  } from "../../utils/enum.association_types.js";
46
+  export default {
47
+    data() {
48
+      return {
49
+        ASSOCIATION_TYPES,
50
+        // 检查列表
51
+        inspects: [],
52
+        // 是否加急
53
+        isUrgent: false,
54
+        // 设备
55
+        goods: [],
56
+        //患者建单信息展示
57
+        patientMsg: '',
58
+        // 传递过来的参数
59
+        queryParams: {},
60
+        //底部按钮
61
+        btns: [{
62
+          name: "上一步",
63
+          type: "primary",
64
+          click: () => {
65
+            uni.navigateBack();
66
+          },
67
+        }, {
68
+          name: "下一步",
69
+          type: "primary",
70
+          click: () => {
71
+            uni.navigateTo({
72
+              url: '/pages/patientBuild/patientBuild'
73
+            })
74
+          },
75
+        }, ],
76
+      };
77
+    },
78
+    computed: {
79
+      ...mapState('login', ['loginInfo']),
80
+      ...mapState('other', [
81
+        "deptDisplay",
82
+        'patientBuildTrip',
83
+        'selectedPatient'
84
+      ]),
85
+    },
86
+    methods: {
87
+      // 切换是否加急
88
+      switchChange(e) {
89
+        this.isUrgent = e.detail.value;
90
+        this.urgentRemark = '';
91
+      },
92
+      // 选择检查
93
+      checkboxChange: function(e) {
94
+        console.log(e, this.inspects);
95
+        var inspects = this.inspects,
96
+          values = e.detail.value;
97
+        for (var i = 0, lenI = inspects.length; i < lenI; ++i) {
98
+          const item = inspects[i]
99
+          if (values.includes(item.value)) {
100
+            this.$set(item, 'checked', true)
101
+          } else {
102
+            this.$set(item, 'checked', false)
103
+          }
104
+        }
105
+      },
106
+      // 立即建单
107
+      buildOrder() {
108
+        console.log(this.urgentRemark)
109
+        console.log(this.isUrgent)
110
+        console.log(this.goods)
111
+        // 加急原因非空
112
+        if (this.isUrgent && !this.urgentRemark) {
113
+          this.$refs.seiminModel.show({
114
+            skin: 'toast',
115
+            icon: 'warn',
116
+            content: '请填写加急原因',
117
+          })
118
+          return;
119
+        }
120
+      }
121
+    },
122
+    onLoad(queryParams) {
123
+      this.patientMsg = `以下是患者<b class="green">${this.selectedPatient.patientName}</b>当天预约的检查,请选择本次服务的检查项`;
124
+      let inspects = this.patientBuildTrip.data || [];
125
+      inspects.map(v => {
126
+        v.label = v.inspectName;
127
+        v.value = v.id.toString();
128
+      });
129
+      this.inspects = inspects
130
+      this.queryParams = queryParams;
131
+    },
132
+  };
133
+</script>
134
+
135
+<style lang="scss" scoped>
136
+  .appointmentInspect {
137
+    padding-bottom: 108rpx;
138
+
139
+    ::v-deep uni-checkbox .uni-checkbox-input {
140
+      width: 40rpx;
141
+      height: 40rpx;
142
+    }
143
+
144
+    ::v-deep .uni-checkbox-input-checked {
145
+      background-color: #09BB07;
146
+
147
+      &:before {
148
+        color: #fff;
149
+      }
150
+    }
151
+
152
+    ::v-deep uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
153
+      border-color: #09BB07;
154
+    }
155
+
156
+    .qco_msg {
157
+      background-color: #f9fafb;
158
+      position: fixed;
159
+      width: 100%;
160
+      z-index: 99;
161
+      height: 144rpx;
162
+      padding: 32rpx;
163
+      color: #999;
164
+      line-height: 40rpx;
165
+      font-size: 28rpx;
166
+      text-align: center;
167
+    }
168
+
169
+    .select_block_wrap {
170
+      padding: 144rpx 24rpx 0;
171
+
172
+      .scrollHeight {
173
+        height: 100%;
174
+      }
175
+
176
+      .inspect_listItem {
177
+        width: 702rpx;
178
+        background-color: #fff;
179
+        margin-top: 8rpx;
180
+        border-radius: 8rpx;
181
+        position: relative;
182
+        padding: 0 24rpx;
183
+        font-size: 32rpx;
184
+        @include border;
185
+        @include semicircle(#f9fafb, 82rpx);
186
+        @include flex(flex-start, stretch, column);
187
+
188
+        .inspect_listItem_header {
189
+          height: 86rpx;
190
+          @include border($directive:bottom, $style:dashed);
191
+          @include flex(space-between, center);
192
+
193
+          .inspect_listItem_header_title {
194
+            color: #333;
195
+            flex: 1;
196
+            @include flex(flex-start, center);
197
+
198
+            .inspectInfo {
199
+              flex: 1;
200
+              @include flex;
201
+
202
+              .info {
203
+                color: #333;
204
+                font-size: 36rpx;
205
+                font-weight: bold;
206
+                @include clamp;
207
+
208
+                .dept {
209
+                  margin-left: 8rpx;
210
+                }
211
+              }
212
+
213
+              .workerName {
214
+                flex: 1;
215
+                @include clamp;
216
+              }
217
+            }
218
+          }
219
+        }
220
+
221
+        .inspect_listItem_item {
222
+          height: 88rpx;
223
+          color: #333;
224
+          font-size: 30rpx;
225
+          flex: 1;
226
+          @include border(bottom);
227
+          @include flex(flex-start, stretch, column);
228
+
229
+          &:last-of-type {
230
+            border-bottom: none;
231
+          }
232
+
233
+          .inspect_listItem_item_content {
234
+            flex: 1;
235
+            @include flex(space-between, center);
236
+
237
+            .inspect_listItem_item_name {
238
+              color: #333;
239
+              font-size: 36rpx;
240
+              text-indent: 1.5em;
241
+              @include clamp;
242
+            }
243
+          }
244
+        }
245
+      }
246
+    }
247
+  }
248
+</style>

+ 1 - 1
pages/index/index.vue

@@ -505,7 +505,7 @@
505 505
 
506 506
     // 弧形背景
507 507
     .arc_edge {
508
-      @include arc_edge;
508
+      @include arc_edge(220rpx);
509 509
     }
510 510
 
511 511
     .index_container {

+ 1 - 1
pages/orderList/orderList.vue

@@ -102,7 +102,7 @@
102 102
     GDSTATE
103 103
   } from "../../utils/enum.gdstate.js";
104 104
   import {
105
-    WORKORDEREVALUATION
105
+    WORKORDER_EVALUATION
106 106
   } from "../../utils/enum.workorderEvaluation.js";
107 107
   import {
108 108
     showAppraise,

+ 260 - 0
pages/patientBuild/patientBuild.vue

@@ -0,0 +1,260 @@
1
+<template>
2
+  <view class="patientBuild">
3
+    <view class="qco_msg" v-html="patientMsg"></view>
4
+    <view class="select_block_wrap">
5
+      <view class="uni-list">
6
+        <checkbox-group @change="checkboxChange">
7
+          <label class="select_block" v-for="good in goods" :key="good.value">
8
+            <checkbox color="#09BB07" :value="good.value" :checked="good.checked" />
9
+            <view>{{good.name}}</view>
10
+          </label>
11
+        </checkbox-group>
12
+      </view>
13
+    </view>
14
+    <!-- 加急 -->
15
+    <view class="remarks" v-if="patientTaskType.allowUrgent == 1">
16
+      <view class="remarks_nav">
17
+        是否加急
18
+      </view>
19
+      <view class="remarks_btn">
20
+        <text class="remarks_btn_name">加急</text>
21
+        <switch class="remarks_btn_value" color="#09BB07" @change="switchChange" />
22
+      </view>
23
+      <textarea v-if="isUrgent" class="remarks_textarea" auto-height :maxlength="100" placeholder-style="color:#999;"
24
+        placeholder="请填写加急原因" v-model.trim="urgentRemark" />
25
+      <view class="remarks_tips"
26
+        v-if="(patientTaskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务'] && patientTaskType.appointmentOtherSwitch == 1) ||(patientTaskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务'] && patientTaskType.appointmentSwitch == 1)">
27
+        <view class="tips">系统支持提前预约送检服务,您是否需要!</view>
28
+        <view class="tips">我不需要预约,希望送检人员立即上门,点击立即建单;</view>
29
+        <view class="tips">我需要提前预约送检服务,点击预约建单;</view>
30
+      </view>
31
+    </view>
32
+    <!-- 底部 -->
33
+    <seiminFooterBtn :btns="btns"></seiminFooterBtn>
34
+    <seiminModel ref="seiminModel"></seiminModel>
35
+  </view>
36
+</template>
37
+
38
+<script>
39
+  import cloneDeep from 'lodash/cloneDeep';
40
+  import {
41
+    mapState,
42
+  } from "vuex";
43
+  import {
44
+    ASSOCIATION_TYPES
45
+  } from "../../utils/enum.association_types.js";
46
+  export default {
47
+    data() {
48
+      return {
49
+        ASSOCIATION_TYPES,
50
+        // 是否加急
51
+        isUrgent: false,
52
+        // 设备
53
+        goods: [],
54
+        //患者建单信息展示
55
+        patientMsg: '',
56
+        // 传递过来的参数
57
+        queryParams: {},
58
+        // 加急原因
59
+        urgentRemark: "",
60
+        //底部按钮
61
+        btns: [],
62
+      };
63
+    },
64
+    computed: {
65
+      ...mapState('other', [
66
+        'patientBuildTrip',
67
+        'patientTaskType',
68
+        'selectedPatient'
69
+      ]),
70
+    },
71
+    methods: {
72
+      // 切换是否加急
73
+      switchChange(e) {
74
+        this.isUrgent = e.detail.value;
75
+        this.urgentRemark = '';
76
+      },
77
+      // 选择设备
78
+      checkboxChange: function(e) {
79
+        console.log(e, this.goods);
80
+        var goods = this.goods,
81
+          values = e.detail.value;
82
+        for (var i = 0, lenI = goods.length; i < lenI; ++i) {
83
+          const item = goods[i]
84
+          if (values.includes(item.value)) {
85
+            this.$set(item, 'checked', true)
86
+          } else {
87
+            this.$set(item, 'checked', false)
88
+          }
89
+        }
90
+      },
91
+      // 立即建单
92
+      buildOrder() {
93
+        console.log(this.urgentRemark)
94
+        console.log(this.isUrgent)
95
+        console.log(this.goods)
96
+        // 加急原因非空
97
+        if (this.isUrgent && !this.urgentRemark) {
98
+          this.$refs.seiminModel.show({
99
+            skin: 'toast',
100
+            icon: 'warn',
101
+            content: '请填写加急原因',
102
+          })
103
+          return;
104
+        }
105
+      }
106
+    },
107
+    onLoad(queryParams) {
108
+      this.patientMsg = `患者<b class="green">${this.selectedPatient.patientName}</b>即将出科,请您选择送检人员需携带哪些设备!`;
109
+      let goods = this.patientBuildTrip.goods || [];
110
+      this.goods = goods;
111
+      this.queryParams = queryParams;
112
+      if (
113
+        (this.patientTaskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务'] && this.patientTaskType
114
+          .appointmentOtherSwitch == 1) ||
115
+        (this.patientTaskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务'] && this.patientTaskType
116
+          .appointmentSwitch == 1)
117
+      ) {
118
+        //患者陪检业务或患者其他服务业务,并且预约建单开关打开的情况下
119
+        this.btns = [{
120
+          name: "上一步",
121
+          type: "primary",
122
+          click: () => {
123
+            uni.navigateBack();
124
+          },
125
+        }, {
126
+          name: "预约建单",
127
+          type: "primary",
128
+          click: () => {
129
+            alert('预约建单');
130
+          },
131
+        }, {
132
+          name: "立即建单",
133
+          type: "primary",
134
+          click: () => {
135
+            this.buildOrder();
136
+          },
137
+        }, ];
138
+      } else {
139
+        this.btns = [{
140
+          name: "上一步",
141
+          type: "primary",
142
+          click: () => {
143
+            uni.navigateBack();
144
+          },
145
+        }, {
146
+          name: "立即建单",
147
+          type: "primary",
148
+          click: () => {
149
+            this.buildOrder();
150
+          },
151
+        }, ];
152
+      }
153
+    },
154
+  };
155
+</script>
156
+
157
+<style lang="scss" scoped>
158
+  .patientBuild {
159
+    margin-bottom: 100rpx;
160
+
161
+    ::v-deep .uni-checkbox-input {
162
+      border-radius: 50%;
163
+    }
164
+
165
+    ::v-deep .uni-checkbox-input-checked {
166
+      background-color: #09BB07;
167
+
168
+      &:before {
169
+        color: #fff;
170
+      }
171
+    }
172
+
173
+    ::v-deep uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
174
+      border-color: #09BB07;
175
+    }
176
+
177
+    .qco_msg {
178
+      min-height: 144rpx;
179
+      padding: 32rpx;
180
+      color: #999;
181
+      line-height: 40rpx;
182
+      font-size: 28rpx;
183
+      text-align: center;
184
+    }
185
+
186
+    .select_block_wrap {
187
+      @include border(top);
188
+
189
+      // 设备
190
+      .select_block {
191
+        padding: 0 30rpx;
192
+        height: 88rpx;
193
+        font-size: 34rpx;
194
+        background-color: #fff;
195
+        position: relative;
196
+        @include flex(flex-start, center);
197
+
198
+        &:last-of-type {
199
+          &::after {
200
+            opacity: 0;
201
+          }
202
+        }
203
+
204
+        &::after {
205
+          content: '';
206
+          height: 1px;
207
+          width: calc(100vw - 30rpx);
208
+          background-color: #E5E5E5;
209
+          position: absolute;
210
+          right: 0;
211
+          bottom: 0;
212
+        }
213
+
214
+        .select_label {
215
+          color: #000;
216
+        }
217
+      }
218
+    }
219
+
220
+    // 备注
221
+    .remarks {
222
+      min-height: 150rpx;
223
+      background-color: #f9fafb;
224
+      @include border(top);
225
+
226
+      .remarks_nav {
227
+        padding: 0 25rpx;
228
+        height: 66rpx;
229
+        font-size: 28rpx;
230
+        color: #666;
231
+        @include flex(flex-start, center);
232
+        @include border(bottom);
233
+      }
234
+
235
+      .remarks_btn {
236
+        padding: 0 25rpx;
237
+        font-size: 34rpx;
238
+        height: 88rpx;
239
+        background-color: #fff;
240
+        @include border(bottom);
241
+        @include flex(space-between, center);
242
+      }
243
+
244
+      .remarks_textarea {
245
+        padding: 22rpx 25rpx;
246
+        width: 100%;
247
+        min-height: 150rpx;
248
+        background-color: #fff;
249
+        @include border(bottom);
250
+      }
251
+
252
+      .remarks_tips {
253
+        padding: 32rpx 25rpx;
254
+        color: #999;
255
+        font-size: 28rpx;
256
+        line-height: 40rpx;
257
+      }
258
+    }
259
+  }
260
+</style>

+ 68 - 47
pages/patientList/patientList.vue

@@ -58,11 +58,16 @@
58 58
     mapState,
59 59
     mapMutations,
60 60
   } from "vuex";
61
+  import {
62
+    ASSOCIATION_TYPES
63
+  } from '../../utils/enum.association_types.js';
61 64
   export default {
62 65
     data() {
63 66
       return {
67
+        ASSOCIATION_TYPES,
64 68
         checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
65 69
         selectedPatient: {}, //当前选中的患者
70
+        taskTypeListResource: [], //任务类型列表(请求的原始数据)
66 71
         taskTypeList: [], //任务类型列表
67 72
         pickerTitle: "", //一键建单picker的title
68 73
         debounceInp: null,
@@ -100,53 +105,68 @@
100 105
         })
101 106
         reqBuildTrip(postData).then(res => {
102 107
           uni.hideLoading();
103
-          let taskType = this.taskTypeList.find(v => v.value == checkedObj.value);
104
-          let patientTaskTypeName = taskType ? taskType.label : '';
105
-          if (res.status == 100015) {
106
-            this.checkedShowMsg = res.data;
107
-            //需要选择起点科室和目标科室
108
-            uni.navigateTo({
109
-              url: "/pages/quickCreateOrder/quickCreateOrder",
110
-            });
111
-            this.changeQucikCreateOrderType({
112
-              type: "patient",
113
-              taskTypeId: checkedObj.value,
114
-              patientTaskTypeName,
115
-              patientBuildTrip: res,
116
-            });
117
-          } else if (res.status == 100013) {
118
-            this.checkedShowMsg = res.data;
119
-            //需要选择起点科室
120
-            uni.navigateTo({
121
-              url: "/pages/quickCreateOrder/quickCreateOrder",
122
-            });
123
-            this.changeQucikCreateOrderType({
124
-              type: "patient",
125
-              taskTypeId: checkedObj.value,
126
-              patientTaskTypeName,
127
-              patientBuildTrip: res,
128
-            });
129
-          } else if (res.status == 100014) {
130
-            this.checkedShowMsg = res.data;
131
-            //需要选择目标科室
132
-            uni.navigateTo({
133
-              url: "/pages/quickCreateOrder/quickCreateOrder",
134
-            });
135
-            this.changeQucikCreateOrderType({
136
-              type: "patient",
137
-              taskTypeId: checkedObj.value,
138
-              patientTaskTypeName,
139
-              patientBuildTrip: res,
140
-            });
141
-          } else {
142
-            //无需选择科室
143
-            this.checkedShowMsg = res.data;
144
-            this.changeQucikCreateOrderType({
145
-              type: "patient",
146
-              taskTypeId: checkedObj.value,
147
-              patientTaskTypeName,
148
-              patientBuildTrip: res,
149
-            });
108
+          let taskType = this.taskTypeListResource.find(v => v.id == checkedObj.value);
109
+          let patientTaskType = taskType || {};
110
+          if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者其他服务业务']) {
111
+            // 患者其他服务业务--无法用status判断,运输过程“默认患者所在科室”没有返回status==200,估计是后端漏掉了这种情况,如果后期后端可以返回status,则可以根据status判断。
112
+            if (res.start && res.end) {
113
+              if (res.status == 100013 || res.status == 100014 || res.status == 100015) {
114
+                this.checkedShowMsg = res.data;
115
+                //需要选择起点科室和目标科室
116
+                this.changeQucikCreateOrderType({
117
+                  type: "patient",
118
+                  taskTypeId: checkedObj.value,
119
+                  patientTaskType,
120
+                  selectedPatient: this.selectedPatient,
121
+                  patientBuildTrip: res,
122
+                });
123
+                uni.navigateTo({
124
+                  url: "/pages/quickCreateOrder/quickCreateOrder",
125
+                });
126
+              } else {
127
+                //无需选择科室
128
+                this.checkedShowMsg = res.data;
129
+                this.changeQucikCreateOrderType({
130
+                  type: "patient",
131
+                  taskTypeId: checkedObj.value,
132
+                  patientTaskType,
133
+                  selectedPatient: this.selectedPatient,
134
+                  patientBuildTrip: res,
135
+                });
136
+                uni.navigateTo({
137
+                  url: "/pages/patientBuild/patientBuild",
138
+                });
139
+              }
140
+            } else {
141
+              this.$refs.seiminModel.show({
142
+                skin: "toast",
143
+                icon: "error",
144
+                content: res.msg || "获取数据失败",
145
+              });
146
+              throw new Error(res.msg || '获取数据失败');
147
+            }
148
+          } else if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
149
+            // 患者陪检业务
150
+            if (res.status == 200) {
151
+              this.checkedShowMsg = res.data;
152
+              this.changeQucikCreateOrderType({
153
+                type: "patient",
154
+                taskTypeId: checkedObj.value,
155
+                patientTaskType,
156
+                selectedPatient: this.selectedPatient,
157
+                patientBuildTrip: res,
158
+              });
159
+              uni.navigateTo({
160
+                url: "/pages/appointmentInspect/appointmentInspect",
161
+              });
162
+            } else {
163
+              this.$refs.seiminModel.show({
164
+                skin: "toast",
165
+                icon: "error",
166
+                content: res.msg || "获取数据失败",
167
+              });
168
+              throw new Error(res.msg || '获取数据失败');
169
+            }
150 170
           }
151 171
         })
152 172
       },
@@ -162,6 +182,7 @@
162 182
           uni.hideLoading();
163 183
           if (res.status == 200) {
164 184
             res.data = res.data || [];
185
+            this.taskTypeListResource = res.data;
165 186
             this.taskTypeList = res.data.map((v) => ({
166 187
               value: v.id,
167 188
               label: v.taskName,

+ 31 - 33
pages/quickCreateOrder/quickCreateOrder.vue

@@ -5,19 +5,13 @@
5 5
     <!-- 起点科室,终点科室 -->
6 6
     <block
7 7
       v-if="(qucikCreateOrderType === 'other' || qucikCreateOrderType === 'patient') && (dataObj.start || dataObj.end)">
8
-      <!-- 返回值的departmentStrategy是201 则是默认发起科室 -->
9
-      <!-- 返回值的departmentStrategy是202 则是固定科室范围 -->
10
-      <!-- 返回值的departmentStrategy是203 则是固定科室 -->
11
-      <!-- 返回值的departmentStrategy是204 则是自主填写 -->
12
-      <!-- 返回值的departmentStrategy是205 则是固定科室类型 -->
13
-      <!-- 100013 (护士端一键建单展示策略)取起点科室,和msg值展示 -->
14 8
       <view class="select_block" @click="selectDept('start')"
15
-        v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.start.start.departmentStrategy == 201 || dataObj.start.start.departmentStrategy == 203))">
9
+        v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']))">
16 10
         <!-- 默认科室和固定科室 -->
17 11
         <text class="select_label"
18
-          :class="{disableColor:dataObj.start.start.departmentStrategy == 201 || dataObj.start.start.departmentStrategy == 203}">起点科室</text>
12
+          :class="{disableColor:dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']}">起点科室</text>
19 13
         <view class="select_placeholder"
20
-          v-if="dataObj.start.start.departmentStrategy == 201 || dataObj.start.start.departmentStrategy == 203">
14
+          v-if="dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']">
21 15
           {{deptDisplay == 1? startDept.dept: startDept.deptalias}}
22 16
         </view>
23 17
         <!-- 固定科室范围,固定科室类型,自主选择 -->
@@ -27,12 +21,12 @@
27 21
         </view>
28 22
       </view>
29 23
       <view class="select_block" @click="selectDept('end')"
30
-        v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.end.end.departmentStrategy == 201 || dataObj.end.end.departmentStrategy == 203))">
24
+        v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']))">
31 25
         <!-- 默认科室和固定科室 -->
32 26
         <text class="select_label"
33
-          :class="{disableColor:dataObj.end.end.departmentStrategy == 201 || dataObj.end.end.departmentStrategy == 203}">终点科室</text>
27
+          :class="{disableColor:dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']}">终点科室</text>
34 28
         <view class="select_placeholder"
35
-          v-if="dataObj.end.end.departmentStrategy == 201 || dataObj.end.end.departmentStrategy == 203">
29
+          v-if="dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']">
36 30
           {{deptDisplay == 1? endDept.dept: endDept.deptalias}}
37 31
         </view>
38 32
         <!-- 固定科室范围,固定科室类型,自主选择 -->
@@ -92,9 +86,13 @@
92 86
   import {
93 87
     SOURCEID
94 88
   } from "../../utils/enum.sourceid.js";
89
+  import {
90
+    DEPARTMENT_STRATEGY
91
+  } from "../../utils/enum.departmentStrategy.js";
95 92
   export default {
96 93
     data() {
97 94
       return {
95
+        DEPARTMENT_STRATEGY,
98 96
         //患者建单信息展示
99 97
         patientMsg: '',
100 98
         // 传递过来的参数
@@ -130,7 +128,7 @@
130 128
         'searchDeptParams',
131 129
         'searchDeptResultList',
132 130
         'patientBuildTrip',
133
-        'patientTaskTypeName'
131
+        'patientTaskType'
134 132
       ]),
135 133
       isWriteDept() {
136 134
         return {
@@ -160,7 +158,7 @@
160 158
               type: "primary",
161 159
               click: () => {
162 160
                 uni.navigateTo({
163
-                  url: "/pages/index/index",
161
+                  url: "/pages/patientBuild/patientBuild",
164 162
                 });
165 163
               },
166 164
             },
@@ -248,15 +246,15 @@
248 246
           if (res.start) {
249 247
             //其他服务建单
250 248
             if (
251
-              res.start.start.departmentStrategy == 201 ||
252
-              res.start.start.departmentStrategy == 203) {
249
+              res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
250
+              res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
253 251
               this.startDept = res.start.start.list[0];
254 252
             }
255 253
 
256 254
             if (
257
-              res.start.start.departmentStrategy == 202 ||
258
-              res.start.start.departmentStrategy == 204 ||
259
-              res.start.start.departmentStrategy == 205
255
+              res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
256
+              res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
257
+              res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
260 258
             ) {
261 259
               if (this.queryParams.isShow) {
262 260
                 this.startDept = this.searchDeptResultList.start || {};
@@ -268,15 +266,15 @@
268 266
           if (res.end) {
269 267
             //其他服务建单
270 268
             if (
271
-              res.end.end.departmentStrategy == 201 ||
272
-              res.end.end.departmentStrategy == 203) {
269
+              res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
270
+              res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
273 271
               this.endDept = res.end.end.list[0];
274 272
             }
275 273
 
276 274
             if (
277
-              res.end.end.departmentStrategy == 202 ||
278
-              res.end.end.departmentStrategy == 204 ||
279
-              res.end.end.departmentStrategy == 205
275
+              res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
276
+              res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
277
+              res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
280 278
             ) {
281 279
               if (this.queryParams.isShow) {
282 280
                 this.endDept = this.searchDeptResultList.end || {};
@@ -428,20 +426,20 @@
428 426
       selectDept(type) {
429 427
         this.selectdDeptType = type; //存储类型
430 428
         if (
431
-          (this.dataObj.start.start.departmentStrategy == 201 ||
432
-            this.dataObj.start.start.departmentStrategy == 203) &&
429
+          (this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
430
+            this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
433 431
           type === 'start') {
434 432
           //默认科室和固定科室不能选科室
435 433
           return;
436 434
         }
437 435
         if (
438
-          (this.dataObj.end.end.departmentStrategy == 201 ||
439
-            this.dataObj.end.end.departmentStrategy == 203) &&
436
+          (this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
437
+            this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
440 438
           type === 'end') {
441 439
           //默认科室和固定科室不能选科室
442 440
           return;
443 441
         }
444
-        if (this.dataObj[type][type].departmentStrategy == 202) {
442
+        if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围']) {
445 443
           // 固定科室范围
446 444
           this.pickerTitle = type === 'start' ? '请选择起点科室' : '请选择终点科室';
447 445
           this.deptList = this.dataObj[type][type].list.map(v => ({
@@ -451,8 +449,8 @@
451 449
           }))
452 450
           console.log(this.deptList, this.pickerTitle)
453 451
           this.openPicker();
454
-        } else if (this.dataObj[type][type].departmentStrategy == 204 || this.dataObj[type][type].departmentStrategy ==
455
-          205) {
452
+        } else if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] || this.dataObj[type][type].departmentStrategy ==
453
+          this.DEPARTMENT_STRATEGY['固定科室类型']) {
456 454
           // 固定科室类型,自主选择
457 455
           let params = {
458 456
             backUrl: "/pages/quickCreateOrder/quickCreateOrder?isShow=true", //返回的url
@@ -460,7 +458,7 @@
460 458
             ids: this.dataObj[type].deptIds || '',
461 459
             departmentStrategy: this.dataObj[type][type].departmentStrategy, //固定科室类型,自主选择
462 460
           };
463
-          if (this.dataObj[type][type].departmentStrategy == 205) {
461
+          if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']) {
464 462
             //固定科室类型
465 463
             params.deptType = this.dataObj[type][type][type + 'TypeId']; //科室类型
466 464
           }
@@ -472,7 +470,7 @@
472 470
       }
473 471
     },
474 472
     onLoad(queryParams) {
475
-      this.patientMsg = `您选择类型为<b class="green">${this.patientTaskTypeName}</b>,需要填写科室,选择完成后点击下一步`;
473
+      this.patientMsg = `您选择类型为<b class="green">${this.patientTaskType.taskName}</b>,需要填写科室,选择完成后点击下一步`;
476 474
       this.queryParams = queryParams;
477 475
       if (this.qucikCreateOrderType === 'patient') {
478 476
         //患者建单选科室

+ 5 - 1
pages/searchDept/searchDept.vue

@@ -47,9 +47,13 @@
47 47
     mapState,
48 48
     mapMutations
49 49
   } from "vuex";
50
+  import {
51
+    DEPARTMENT_STRATEGY
52
+  } from "../../utils/enum.departmentStrategy.js";
50 53
   export default {
51 54
     data() {
52 55
       return {
56
+        DEPARTMENT_STRATEGY,
53 57
         keyword: "",
54 58
         oldKeywordList: [],
55 59
         keywordList: [],
@@ -145,7 +149,7 @@
145 149
           postData.department.ids = this.searchDeptParams.ids;
146 150
           postData.department.keyWord = keyword;
147 151
           postData.department.nurseSign = 1;
148
-          if (this.searchDeptParams.departmentStrategy == 205) {
152
+          if (this.searchDeptParams.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']) {
149 153
             // 固定科室类型
150 154
             postData.department.type = {
151 155
               id: this.searchDeptParams.deptType,

+ 2 - 1
request/config.js

@@ -11,7 +11,8 @@ const config = {
11 11
 };
12 12
 // 后端服务地址
13 13
 const baseUrls = {
14
-  development: "http://192.168.3.108/service", //开发环境
14
+  // development: "http://192.168.3.108/service", //开发环境
15
+  development: "http://192.168.3.69/service", //开发环境
15 16
   production: "http://192.168.3.108/service", //生产环境
16 17
 };
17 18
 config.baseUrl = baseUrls[process.env.NODE_ENV];

+ 6 - 4
store/modules/other.js

@@ -6,7 +6,8 @@ const stateReset = {
6 6
   qucikCreateOrderTypeId: "", //快捷建单类型id
7 7
   patientBuildTrip: {}, //患者建单的buildTrip
8 8
   patientBuildData: {}, //患者建单的请求参数数据
9
-  patientTaskTypeName: '', //患者建单的任务类型名称
9
+  patientTaskType: '', //患者建单的任务类型
10
+  selectedPatient: {}, //患者建单的选中的患者
10 11
   deptDisplay: 1, //护士端科室显示选择(名称还是别名)1是名称,2是别名
11 12
   updateTipsForNurses: "", //护士端更新提示
12 13
   specimenButton: "", //标本按钮文字
@@ -26,8 +27,8 @@ const state = cloneDeep(stateReset);
26 27
 const getters = {};
27 28
 const mutations = {
28 29
   // 重置数据
29
-  resetVxOther(state,args = {}) {
30
-    Object.assign(state, cloneDeep(stateReset),pick(args,Object.keys(cloneDeep(stateReset))));
30
+  resetVxOther(state, args = {}) {
31
+    Object.assign(state, cloneDeep(stateReset), pick(args, Object.keys(cloneDeep(stateReset))));
31 32
   },
32 33
   //是否显示切换科室弹窗
33 34
   changeSeiminModel(state, args) {
@@ -38,7 +39,8 @@ const mutations = {
38 39
     state.qucikCreateOrderType = args.type;
39 40
     state.qucikCreateOrderTypeId = args.taskTypeId;
40 41
     state.patientBuildTrip = args.patientBuildTrip;
41
-    state.patientTaskTypeName = args.patientTaskTypeName;
42
+    state.patientTaskType = args.patientTaskType;
43
+    state.selectedPatient = args.selectedPatient;
42 44
   },
43 45
   //护士端科室显示选择(名称还是别名)1是名称,2是别名
44 46
   changeDeptDisplay(state, args) {

+ 1 - 0
uni.scss

@@ -55,6 +55,7 @@ $textColorYellow: #F5A623;
55 55
 }
56 56
 //底部凹弧形边
57 57
 @mixin arc_edge($height:200rpx) {
58
+  overflow: hidden;
58 59
   height: $height;
59 60
   position: relative;
60 61
   background: $defaultColor;

+ 29 - 0
utils/enum.departmentStrategy.js

@@ -0,0 +1,29 @@
1
+import {
2
+  createEnum
3
+} from './index.js';
4
+let data = [{
5
+    name: '默认发起科室',
6
+    value: '201'
7
+  },
8
+  {
9
+    name: '固定科室范围',
10
+    value: '202'
11
+  },
12
+  {
13
+    name: '固定科室',
14
+    value: '203'
15
+  },
16
+  {
17
+    name: '自主填写',
18
+    value: '204'
19
+  },
20
+  {
21
+    name: '固定科室类型',
22
+    value: '205'
23
+  },
24
+  {
25
+    name: '默认患者所在科室',
26
+    value: '206'
27
+  },
28
+]
29
+export const DEPARTMENT_STRATEGY = createEnum(data); //运送过程科室策略

+ 1 - 1
utils/enum.workorderEvaluation.js

@@ -22,4 +22,4 @@ let data = [{
22 22
     value: '358'
23 23
   },
24 24
 ]
25
-export const WORKORDEREVALUATION = createEnum(data); //工单评价
25
+export const WORKORDER_EVALUATION = createEnum(data); //工单评价

+ 6 - 6
utils/index.js

@@ -5,7 +5,7 @@ import {
5 5
   enc
6 6
 } from "crypto-js";
7 7
 import {
8
-  WORKORDEREVALUATION
8
+  WORKORDER_EVALUATION
9 9
 } from "./enum.workorderEvaluation.js";
10 10
 import {
11 11
   reqDelWorkOrder,
@@ -73,23 +73,23 @@ export function showAppraise(id, callBack) {
73 73
           switch (this.$refs.seiminModel.stars.indexOf('pda-haoping1')) {
74 74
             case -1:
75 75
               //五星
76
-              serviceEvaluationId = WORKORDEREVALUATION['非常好评'];
76
+              serviceEvaluationId = WORKORDER_EVALUATION['非常好评'];
77 77
               break;
78 78
             case 1:
79 79
               //一星
80
-              serviceEvaluationId = WORKORDEREVALUATION['极差'];
80
+              serviceEvaluationId = WORKORDER_EVALUATION['极差'];
81 81
               break;
82 82
             case 2:
83 83
               //二星
84
-              serviceEvaluationId = WORKORDEREVALUATION['差'];
84
+              serviceEvaluationId = WORKORDER_EVALUATION['差'];
85 85
               break;
86 86
             case 3:
87 87
               //三星
88
-              serviceEvaluationId = WORKORDEREVALUATION['一般'];
88
+              serviceEvaluationId = WORKORDER_EVALUATION['一般'];
89 89
               break;
90 90
             case 4:
91 91
               //四星
92
-              serviceEvaluationId = WORKORDEREVALUATION['好评'];
92
+              serviceEvaluationId = WORKORDER_EVALUATION['好评'];
93 93
               break;
94 94
           }
95 95
           let postData = {