|
@@ -1,8 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<view class="quickCreateOrder">
|
3
|
|
- <view class="qco_msg">
|
4
|
|
- 支助人员将去<b>7东-泌尿外科I病区</b>执行<b>调药</b>,请选择起点科室;
|
5
|
|
- </view>
|
|
3
|
+ <view class="qco_msg" v-html="dataObj.msg"></view>
|
6
|
4
|
<!-- 起点科室,终点科室 -->
|
7
|
5
|
<block v-if="qucikCreateOrderType === 'other'">
|
8
|
6
|
<view class="select_block">
|
|
@@ -15,57 +13,37 @@
|
15
|
13
|
</view>
|
16
|
14
|
</block>
|
17
|
15
|
<!-- 备注 -->
|
18
|
|
- <view class="remarks">
|
19
|
|
- <textarea class="remarks_textarea" auto-height :maxlength="100" placeholder-style="color:#999"
|
20
|
|
- placeholder="备注信息:请您填写微生物和数量" />
|
|
16
|
+ <view class="remarks" v-if="dataObj.remarksSwitch == 1">
|
|
17
|
+ <textarea :focus="remarksFocus" class="remarks_textarea" auto-height :maxlength="100"
|
|
18
|
+ placeholder-style="color:#999" :placeholder="dataObj.remarksPrompts|| '请填写工单备注,不超过100个字符'"
|
|
19
|
+ v-model="workOrderRemark" />
|
21
|
20
|
</view>
|
22
|
21
|
<!-- 快捷输入,历史输入 -->
|
23
|
|
- <view class="quickAndHistory">
|
|
22
|
+ <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && dataObj.customRemarks.length">
|
24
|
23
|
<view class="quickAndHistory_header">
|
25
|
24
|
快捷输入
|
26
|
25
|
</view>
|
27
|
26
|
<view class="quickAndHistory_container">
|
28
|
|
- <view class="quickAndHistory_item">
|
29
|
|
- 我是一只小青蛙
|
30
|
|
- </view>
|
31
|
|
- <view class="quickAndHistory_item">
|
32
|
|
- 我是一只小青蛙
|
33
|
|
- </view>
|
34
|
|
- <view class="quickAndHistory_item">
|
35
|
|
- 我是一只小青蛙
|
36
|
|
- </view>
|
37
|
|
- <view class="quickAndHistory_item">
|
38
|
|
- 我是一只小青蛙
|
39
|
|
- </view>
|
40
|
|
- <view class="quickAndHistory_item">
|
41
|
|
- 我是一只小青蛙
|
|
27
|
+ <view class="quickAndHistory_item" @click="addRemarks(customRemark)"
|
|
28
|
+ v-for="(customRemark,i) in dataObj.customRemarks" :key="i">
|
|
29
|
+ {{customRemark}}
|
42
|
30
|
</view>
|
43
|
31
|
</view>
|
44
|
32
|
</view>
|
45
|
|
- <view class="quickAndHistory">
|
|
33
|
+ <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1">
|
46
|
34
|
<view class="quickAndHistory_header">
|
47
|
35
|
历史输入
|
48
|
36
|
</view>
|
49
|
37
|
<view class="quickAndHistory_container">
|
50
|
|
- <view class="quickAndHistory_item">
|
51
|
|
- 我是一只小青蛙
|
52
|
|
- </view>
|
53
|
|
- <view class="quickAndHistory_item">
|
54
|
|
- 我是一只小青蛙
|
55
|
|
- </view>
|
56
|
|
- <view class="quickAndHistory_item">
|
57
|
|
- 我是一只小青蛙
|
58
|
|
- </view>
|
59
|
|
- <view class="quickAndHistory_item">
|
60
|
|
- 我是一只小青蛙
|
61
|
|
- </view>
|
62
|
|
- <view class="quickAndHistory_item">
|
63
|
|
- 我是一只小青蛙
|
|
38
|
+ <view class="quickAndHistory_item" @click="addRemarks(historyCustomRemark)"
|
|
39
|
+ v-for="(historyCustomRemark,i) in historyCustomRemarks" :key="i">
|
|
40
|
+ {{historyCustomRemark}}
|
64
|
41
|
</view>
|
65
|
42
|
</view>
|
66
|
43
|
</view>
|
67
|
44
|
<!-- 底部 -->
|
68
|
45
|
<seiminFooterBtn :btns="btns"></seiminFooterBtn>
|
|
46
|
+ <seiminModel ref="seiminModel"></seiminModel>
|
69
|
47
|
</view>
|
70
|
48
|
</template>
|
71
|
49
|
|
|
@@ -73,9 +51,26 @@
|
73
|
51
|
import {
|
74
|
52
|
mapState
|
75
|
53
|
} from 'vuex';
|
|
54
|
+ import {
|
|
55
|
+ reqBuildTrip,
|
|
56
|
+ reqRecentRemarks,
|
|
57
|
+ reqBuildOrder
|
|
58
|
+ } from '../../request/api.js';
|
|
59
|
+ import {
|
|
60
|
+ SOURCEID
|
|
61
|
+ } from '../../utils/enum.sourceid.js';
|
76
|
62
|
export default {
|
77
|
63
|
data() {
|
78
|
64
|
return {
|
|
65
|
+ // 工单备注是否获取焦点
|
|
66
|
+ remarksFocus: true,
|
|
67
|
+ // 工单备注
|
|
68
|
+ workOrderRemark: '',
|
|
69
|
+ // 获取到的数据集合对象(历史输入除外)
|
|
70
|
+ dataObj: {},
|
|
71
|
+ // 历史输入
|
|
72
|
+ historyCustomRemarks: [],
|
|
73
|
+ //底部按钮
|
79
|
74
|
btns: [{
|
80
|
75
|
name: '回到首页',
|
81
|
76
|
type: 'default',
|
|
@@ -89,17 +84,112 @@
|
89
|
84
|
name: '确认',
|
90
|
85
|
type: 'primary',
|
91
|
86
|
click: () => {
|
92
|
|
- console.log('确认');
|
|
87
|
+ this.submitData();
|
93
|
88
|
}
|
94
|
89
|
}
|
95
|
90
|
]
|
96
|
91
|
};
|
97
|
92
|
},
|
98
|
93
|
computed: {
|
99
|
|
- ...mapState(['qucikCreateOrderType']),
|
|
94
|
+ ...mapState(['qucikCreateOrderType', 'qucikCreateOrderTypeId']),
|
|
95
|
+ ...mapState('user', ['loginInfoUserDeptId']),
|
|
96
|
+ },
|
|
97
|
+ methods: {
|
|
98
|
+ // 添加备注
|
|
99
|
+ addRemarks(customRemark) {
|
|
100
|
+ this.remarksFocus = false;
|
|
101
|
+ this.$nextTick(() => {
|
|
102
|
+ this.remarksFocus = true;
|
|
103
|
+ });
|
|
104
|
+ this.workOrderRemark += customRemark;
|
|
105
|
+ },
|
|
106
|
+ //获取所有数据
|
|
107
|
+ getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
|
|
108
|
+ uni.showLoading({
|
|
109
|
+ title: '加载中'
|
|
110
|
+ });
|
|
111
|
+ let postData = {
|
|
112
|
+ "taskTypeId": qucikCreateOrderTypeId,
|
|
113
|
+ "deptId": this.loginInfoUserDeptId,
|
|
114
|
+ };
|
|
115
|
+ if (qucikCreateOrderType === 'specimen') {
|
|
116
|
+ Promise.all([
|
|
117
|
+ reqBuildTrip(postData),
|
|
118
|
+ reqRecentRemarks(postData)
|
|
119
|
+ ]).then(values => {
|
|
120
|
+ uni.hideLoading();
|
|
121
|
+ this.getBuildTrip(values[0]);
|
|
122
|
+ this.getRecentRemarks(values[1]);
|
|
123
|
+ })
|
|
124
|
+ }
|
|
125
|
+ },
|
|
126
|
+ // 获取其他数据
|
|
127
|
+ getBuildTrip(res) {
|
|
128
|
+ if (res.status == 200) {
|
|
129
|
+ // 处理返回的数据
|
|
130
|
+ if (res.customRemarks) {
|
|
131
|
+ res.customRemarks = res.customRemarks.split('$');
|
|
132
|
+ } else {
|
|
133
|
+ res.customRemarks = []
|
|
134
|
+ }
|
|
135
|
+ this.dataObj = res;
|
|
136
|
+ }
|
|
137
|
+ },
|
|
138
|
+ // 获取历史输入
|
|
139
|
+ getRecentRemarks(res) {
|
|
140
|
+ if (res.state == 200) {
|
|
141
|
+ this.historyCustomRemarks = res.data || [];
|
|
142
|
+ }
|
|
143
|
+ },
|
|
144
|
+ // 提交数据,建单
|
|
145
|
+ submitData() {
|
|
146
|
+ uni.showLoading({
|
|
147
|
+ title: '加载中',
|
|
148
|
+ mask: true
|
|
149
|
+ })
|
|
150
|
+ let postData = {
|
|
151
|
+ urgent: 0,
|
|
152
|
+ workOrder: {
|
|
153
|
+ sourceId: SOURCEID['护士端'],
|
|
154
|
+ workOrderRemark: this.workOrderRemark,
|
|
155
|
+ taskType: {
|
|
156
|
+ id: this.qucikCreateOrderTypeId
|
|
157
|
+ },
|
|
158
|
+ createDept: this.loginInfoUserDeptId,
|
|
159
|
+ startDept: {
|
|
160
|
+ id: this.loginInfoUserDeptId
|
|
161
|
+ },
|
|
162
|
+ },
|
|
163
|
+ };
|
|
164
|
+ reqBuildOrder(postData).then(res => {
|
|
165
|
+ uni.hideLoading();
|
|
166
|
+ if (res.status == 200) {
|
|
167
|
+ this.$refs.seiminModel.showChangeDept({
|
|
168
|
+ skin: "toast",
|
|
169
|
+ content: '创建成功',
|
|
170
|
+ btns: [{
|
|
171
|
+ name: "知道了",
|
|
172
|
+ textColor: "#49B856",
|
|
173
|
+ flex: 1,
|
|
174
|
+ click() {
|
|
175
|
+ uni.navigateTo({
|
|
176
|
+ url: '/pages/index/index'
|
|
177
|
+ })
|
|
178
|
+ }
|
|
179
|
+ }]
|
|
180
|
+ });
|
|
181
|
+ } else {
|
|
182
|
+ this.$refs.seiminModel.showChangeDept({
|
|
183
|
+ skin: "toast",
|
|
184
|
+ icon: 'error',
|
|
185
|
+ content: res.msg || '操作失败'
|
|
186
|
+ });
|
|
187
|
+ }
|
|
188
|
+ })
|
|
189
|
+ }
|
100
|
190
|
},
|
101
|
191
|
onLoad() {
|
102
|
|
-
|
|
192
|
+ this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
|
103
|
193
|
}
|
104
|
194
|
}
|
105
|
195
|
</script>
|
|
@@ -156,6 +246,7 @@
|
156
|
246
|
|
157
|
247
|
.remarks_textarea {
|
158
|
248
|
width: 100%;
|
|
249
|
+ min-height: 100rpx;
|
159
|
250
|
}
|
160
|
251
|
}
|
161
|
252
|
|