|
@@ -2,7 +2,9 @@
|
2
|
2
|
<view class="quickCreateOrder">
|
3
|
3
|
<view class="qco_msg" v-html="dataObj.msg"></view>
|
4
|
4
|
<!-- 起点科室,终点科室 -->
|
5
|
|
- <block v-if="qucikCreateOrderType === 'other' && (dataObj.start || dataObj.end)">
|
|
5
|
+ <block
|
|
6
|
+ v-if="qucikCreateOrderType === 'other' && (dataObj.start || dataObj.end)"
|
|
7
|
+ >
|
6
|
8
|
<!-- 返回值的departmentStrategy是201 则是默认发起科室 -->
|
7
|
9
|
<!-- 返回值的departmentStrategy是202 则是固定科室范围 -->
|
8
|
10
|
<!-- 返回值的departmentStrategy是203 则是固定科室 -->
|
|
@@ -11,51 +13,105 @@
|
11
|
13
|
<!-- 100013 (护士端一键建单展示策略)取起点科室,和msg值展示 -->
|
12
|
14
|
<!-- <block v-if="dataObj.status == 100013"> -->
|
13
|
15
|
<view class="select_block">
|
14
|
|
- <text class="select_label"
|
15
|
|
- :class="{disableColor:(dataObj.start.start.departmentStrategy == 201 ||dataObj.start.start.departmentStrategy == 203)}">起点科室</text>
|
16
|
|
- <view class="select_placeholder"
|
17
|
|
- v-if="dataObj.start.start.departmentStrategy == 201||dataObj.start.start.departmentStrategy == 203">
|
18
|
|
- {{deptDisplay == 1?dataObj.start.start.list[0].dept:dataObj.start.start.list[0].deptalias}}
|
|
16
|
+ <text
|
|
17
|
+ class="select_label"
|
|
18
|
+ :class="{
|
|
19
|
+ disableColor:
|
|
20
|
+ dataObj.start.start.departmentStrategy == 201 ||
|
|
21
|
+ dataObj.start.start.departmentStrategy == 203,
|
|
22
|
+ }"
|
|
23
|
+ >起点科室</text
|
|
24
|
+ >
|
|
25
|
+ <view
|
|
26
|
+ class="select_placeholder"
|
|
27
|
+ v-if="
|
|
28
|
+ dataObj.start.start.departmentStrategy == 201 ||
|
|
29
|
+ dataObj.start.start.departmentStrategy == 203
|
|
30
|
+ "
|
|
31
|
+ >
|
|
32
|
+ {{
|
|
33
|
+ deptDisplay == 1
|
|
34
|
+ ? dataObj.start.start.list[0].dept
|
|
35
|
+ : dataObj.start.start.list[0].deptalias
|
|
36
|
+ }}
|
19
|
37
|
</view>
|
20
|
|
- <view class="select_placeholder" v-else>请选择起点科室<text class="pda pda-xiangyou"></text></view>
|
|
38
|
+ <view class="select_placeholder" v-else
|
|
39
|
+ >请选择起点科室<text class="pda pda-xiangyou"></text
|
|
40
|
+ ></view>
|
21
|
41
|
</view>
|
22
|
42
|
<view class="select_block">
|
23
|
|
- <text class="select_label"
|
24
|
|
- :class="{disableColor:(dataObj.end.end.departmentStrategy == 201||dataObj.end.end.departmentStrategy == 203)}">终点科室</text>
|
25
|
|
- <view class="select_placeholder"
|
26
|
|
- v-if="(dataObj.end.end.departmentStrategy == 201||dataObj.end.end.departmentStrategy == 203)">
|
27
|
|
- {{deptDisplay == 1?dataObj.end.end.list[0].dept:dataObj.end.end.list[0].deptalias}}
|
|
43
|
+ <text
|
|
44
|
+ class="select_label"
|
|
45
|
+ :class="{
|
|
46
|
+ disableColor:
|
|
47
|
+ dataObj.end.end.departmentStrategy == 201 ||
|
|
48
|
+ dataObj.end.end.departmentStrategy == 203,
|
|
49
|
+ }"
|
|
50
|
+ >终点科室</text
|
|
51
|
+ >
|
|
52
|
+ <view
|
|
53
|
+ class="select_placeholder"
|
|
54
|
+ v-if="
|
|
55
|
+ dataObj.end.end.departmentStrategy == 201 ||
|
|
56
|
+ dataObj.end.end.departmentStrategy == 203
|
|
57
|
+ "
|
|
58
|
+ >
|
|
59
|
+ {{
|
|
60
|
+ deptDisplay == 1
|
|
61
|
+ ? dataObj.end.end.list[0].dept
|
|
62
|
+ : dataObj.end.end.list[0].deptalias
|
|
63
|
+ }}
|
28
|
64
|
</view>
|
29
|
|
- <view class="select_placeholder" v-else>请选择终点科室<text class="pda pda-xiangyou"></text></view>
|
|
65
|
+ <view class="select_placeholder" v-else
|
|
66
|
+ >请选择终点科室<text class="pda pda-xiangyou"></text
|
|
67
|
+ ></view>
|
30
|
68
|
</view>
|
31
|
69
|
<!-- </block> -->
|
32
|
70
|
</block>
|
33
|
71
|
<!-- 备注 -->
|
34
|
72
|
<view class="remarks" v-if="dataObj.remarksSwitch == 1">
|
35
|
|
- <textarea :focus="remarksFocus" class="remarks_textarea" auto-height :maxlength="100"
|
36
|
|
- placeholder-style="color:#999" :placeholder="dataObj.remarksPrompts|| '请填写工单备注,不超过100个字符'"
|
37
|
|
- v-model="workOrderRemark" />
|
|
73
|
+ <textarea
|
|
74
|
+ :focus="remarksFocus"
|
|
75
|
+ class="remarks_textarea"
|
|
76
|
+ auto-height
|
|
77
|
+ :maxlength="100"
|
|
78
|
+ placeholder-style="color:#999"
|
|
79
|
+ :placeholder="
|
|
80
|
+ dataObj.remarksPrompts || '请填写工单备注,不超过100个字符'
|
|
81
|
+ "
|
|
82
|
+ v-model="workOrderRemark"
|
|
83
|
+ />
|
38
|
84
|
</view>
|
39
|
85
|
<!-- 快捷输入,历史输入 -->
|
40
|
|
- <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && dataObj.customRemarks.length">
|
41
|
|
- <view class="quickAndHistory_header">
|
42
|
|
- 快捷输入
|
43
|
|
- </view>
|
|
86
|
+ <view
|
|
87
|
+ class="quickAndHistory"
|
|
88
|
+ v-if="dataObj.remarksSwitch == 1 && dataObj.customRemarks.length"
|
|
89
|
+ >
|
|
90
|
+ <view class="quickAndHistory_header"> 快捷输入 </view>
|
44
|
91
|
<view class="quickAndHistory_container">
|
45
|
|
- <view class="quickAndHistory_item" @click="addRemarks(customRemark)"
|
46
|
|
- v-for="(customRemark,i) in dataObj.customRemarks" :key="i">
|
47
|
|
- {{customRemark}}
|
|
92
|
+ <view
|
|
93
|
+ class="quickAndHistory_item"
|
|
94
|
+ @click="addRemarks(customRemark)"
|
|
95
|
+ v-for="(customRemark, i) in dataObj.customRemarks"
|
|
96
|
+ :key="i"
|
|
97
|
+ >
|
|
98
|
+ {{ customRemark }}
|
48
|
99
|
</view>
|
49
|
100
|
</view>
|
50
|
101
|
</view>
|
51
|
|
- <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && historyCustomRemarks.length">
|
52
|
|
- <view class="quickAndHistory_header">
|
53
|
|
- 历史输入
|
54
|
|
- </view>
|
|
102
|
+ <view
|
|
103
|
+ class="quickAndHistory"
|
|
104
|
+ v-if="dataObj.remarksSwitch == 1 && historyCustomRemarks.length"
|
|
105
|
+ >
|
|
106
|
+ <view class="quickAndHistory_header"> 历史输入 </view>
|
55
|
107
|
<view class="quickAndHistory_container">
|
56
|
|
- <view class="quickAndHistory_item" @click="addRemarks(historyCustomRemark)"
|
57
|
|
- v-for="(historyCustomRemark,i) in historyCustomRemarks" :key="i">
|
58
|
|
- {{historyCustomRemark}}
|
|
108
|
+ <view
|
|
109
|
+ class="quickAndHistory_item"
|
|
110
|
+ @click="addRemarks(historyCustomRemark)"
|
|
111
|
+ v-for="(historyCustomRemark, i) in historyCustomRemarks"
|
|
112
|
+ :key="i"
|
|
113
|
+ >
|
|
114
|
+ {{ historyCustomRemark }}
|
59
|
115
|
</view>
|
60
|
116
|
</view>
|
61
|
117
|
</view>
|
|
@@ -66,289 +122,297 @@
|
66
|
122
|
</template>
|
67
|
123
|
|
68
|
124
|
<script>
|
69
|
|
- import {
|
70
|
|
- mapState
|
71
|
|
- } from 'vuex';
|
72
|
|
- import {
|
73
|
|
- reqBuildTrip,
|
74
|
|
- reqRecentRemarks,
|
75
|
|
- reqBuildOrder
|
76
|
|
- } from '../../request/api.js';
|
77
|
|
- import {
|
78
|
|
- SOURCEID
|
79
|
|
- } from '../../utils/enum.sourceid.js';
|
80
|
|
- export default {
|
81
|
|
- data() {
|
82
|
|
- return {
|
83
|
|
- // 工单备注是否获取焦点
|
84
|
|
- remarksFocus: true,
|
85
|
|
- // 工单备注
|
86
|
|
- workOrderRemark: '',
|
87
|
|
- // 获取到的数据集合对象(历史输入除外)
|
88
|
|
- dataObj: {},
|
89
|
|
- // 历史输入
|
90
|
|
- historyCustomRemarks: [],
|
91
|
|
- //底部按钮
|
92
|
|
- btns: [{
|
93
|
|
- name: '回到首页',
|
94
|
|
- type: 'default',
|
95
|
|
- click: () => {
|
96
|
|
- uni.navigateTo({
|
97
|
|
- url: '/pages/index/index'
|
98
|
|
- })
|
99
|
|
- }
|
|
125
|
+import { mapState } from "vuex";
|
|
126
|
+import {
|
|
127
|
+ reqBuildTrip,
|
|
128
|
+ reqRecentRemarks,
|
|
129
|
+ reqBuildOrder,
|
|
130
|
+} from "../../request/api.js";
|
|
131
|
+import { SOURCEID } from "../../utils/enum.sourceid.js";
|
|
132
|
+export default {
|
|
133
|
+ data() {
|
|
134
|
+ return {
|
|
135
|
+ // 工单备注是否获取焦点
|
|
136
|
+ remarksFocus: true,
|
|
137
|
+ // 工单备注
|
|
138
|
+ workOrderRemark: "",
|
|
139
|
+ // 获取到的数据集合对象(历史输入除外)
|
|
140
|
+ dataObj: {},
|
|
141
|
+ // 历史输入
|
|
142
|
+ historyCustomRemarks: [],
|
|
143
|
+ //底部按钮
|
|
144
|
+ btns: [
|
|
145
|
+ {
|
|
146
|
+ name: "回到首页",
|
|
147
|
+ type: "default",
|
|
148
|
+ click: () => {
|
|
149
|
+ uni.navigateTo({
|
|
150
|
+ url: "/pages/index/index",
|
|
151
|
+ });
|
100
|
152
|
},
|
101
|
|
- {
|
102
|
|
- name: '确认',
|
103
|
|
- type: 'primary',
|
104
|
|
- click: () => {
|
105
|
|
- this.submitData();
|
106
|
|
- }
|
107
|
|
- }
|
108
|
|
- ]
|
109
|
|
- };
|
110
|
|
- },
|
111
|
|
- computed: {
|
112
|
|
- ...mapState(['qucikCreateOrderType', 'qucikCreateOrderTypeId', 'deptDisplay']),
|
113
|
|
- ...mapState('user', ['loginInfoUserDeptId']),
|
|
153
|
+ },
|
|
154
|
+ {
|
|
155
|
+ name: "确认",
|
|
156
|
+ type: "primary",
|
|
157
|
+ click: () => {
|
|
158
|
+ this.submitData();
|
|
159
|
+ },
|
|
160
|
+ },
|
|
161
|
+ ],
|
|
162
|
+ };
|
|
163
|
+ },
|
|
164
|
+ computed: {
|
|
165
|
+ ...mapState([
|
|
166
|
+ "qucikCreateOrderType",
|
|
167
|
+ "qucikCreateOrderTypeId",
|
|
168
|
+ "deptDisplay",
|
|
169
|
+ ]),
|
|
170
|
+ },
|
|
171
|
+ methods: {
|
|
172
|
+ // 添加备注
|
|
173
|
+ addRemarks(customRemark) {
|
|
174
|
+ this.remarksFocus = false;
|
|
175
|
+ this.$nextTick(() => {
|
|
176
|
+ this.remarksFocus = true;
|
|
177
|
+ });
|
|
178
|
+ this.workOrderRemark += customRemark;
|
114
|
179
|
},
|
115
|
|
- methods: {
|
116
|
|
- // 添加备注
|
117
|
|
- addRemarks(customRemark) {
|
118
|
|
- this.remarksFocus = false;
|
119
|
|
- this.$nextTick(() => {
|
120
|
|
- this.remarksFocus = true;
|
121
|
|
- });
|
122
|
|
- this.workOrderRemark += customRemark;
|
123
|
|
- },
|
124
|
|
- //获取所有数据
|
125
|
|
- getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
|
126
|
|
- uni.showLoading({
|
127
|
|
- title: '加载中'
|
128
|
|
- });
|
129
|
|
- let postData1 = {};
|
130
|
|
- let postData2 = {
|
131
|
|
- "taskTypeId": qucikCreateOrderTypeId,
|
132
|
|
- "deptId": this.loginInfoUserDeptId,
|
|
180
|
+ //获取所有数据
|
|
181
|
+ getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
|
|
182
|
+ uni.showLoading({
|
|
183
|
+ title: "加载中",
|
|
184
|
+ });
|
|
185
|
+ let postData1 = {};
|
|
186
|
+ let postData2 = {
|
|
187
|
+ taskTypeId: qucikCreateOrderTypeId,
|
|
188
|
+ deptId: this.loginInfo.user.dept.id,
|
|
189
|
+ };
|
|
190
|
+ if (qucikCreateOrderType === "specimen") {
|
|
191
|
+ //标本快捷建单
|
|
192
|
+ postData1 = {
|
|
193
|
+ taskTypeId: qucikCreateOrderTypeId,
|
|
194
|
+ deptId: this.loginInfo.user.dept.id,
|
133
|
195
|
};
|
134
|
|
- if (qucikCreateOrderType === 'specimen') {
|
135
|
|
- //标本快捷建单
|
136
|
|
- postData1 = {
|
137
|
|
- "taskTypeId": qucikCreateOrderTypeId,
|
138
|
|
- "deptId": this.loginInfoUserDeptId,
|
139
|
|
- };
|
140
|
|
- } else if (qucikCreateOrderType === 'other') {
|
141
|
|
- //其他临床服务快捷建单
|
142
|
|
- postData1 = {
|
143
|
|
- "taskTypeId": qucikCreateOrderTypeId,
|
144
|
|
- };
|
145
|
|
- }
|
146
|
|
- Promise.all([
|
147
|
|
- reqBuildTrip(postData1),
|
148
|
|
- reqRecentRemarks(postData2)
|
149
|
|
- ]).then(values => {
|
|
196
|
+ } else if (qucikCreateOrderType === "other") {
|
|
197
|
+ //其他临床服务快捷建单
|
|
198
|
+ postData1 = {
|
|
199
|
+ taskTypeId: qucikCreateOrderTypeId,
|
|
200
|
+ };
|
|
201
|
+ }
|
|
202
|
+ Promise.all([reqBuildTrip(postData1), reqRecentRemarks(postData2)]).then(
|
|
203
|
+ (values) => {
|
150
|
204
|
uni.hideLoading();
|
151
|
205
|
this.getBuildTrip(values[0]);
|
152
|
206
|
this.getRecentRemarks(values[1]);
|
153
|
|
- })
|
154
|
|
- },
|
155
|
|
- // 获取数据(除历史输入)
|
156
|
|
- getBuildTrip(res) {
|
157
|
|
- if (res.status == 200 || res.status == 100012 || res.status == 100013 || res.status == 100014 || res.status ==
|
158
|
|
- 100015) {
|
159
|
|
- // 处理返回的数据
|
160
|
|
- if (res.customRemarks) {
|
161
|
|
- res.customRemarks = res.customRemarks.split('$');
|
162
|
|
- } else {
|
163
|
|
- res.customRemarks = []
|
164
|
|
- }
|
165
|
|
- // 处理msg
|
166
|
|
- if (res.msg.includes('<b>')) {
|
167
|
|
- res.msg = res.msg.replace(/<b>/g, '<text class="green">');
|
168
|
|
- res.msg = res.msg.replace(/<\/b>/g, '</text>');
|
169
|
|
- }
|
170
|
|
- this.dataObj = res;
|
171
|
207
|
}
|
172
|
|
- },
|
173
|
|
- // 获取历史输入
|
174
|
|
- getRecentRemarks(res) {
|
175
|
|
- if (res.state == 200) {
|
176
|
|
- this.historyCustomRemarks = res.data || [];
|
|
208
|
+ );
|
|
209
|
+ },
|
|
210
|
+ // 获取数据(除历史输入)
|
|
211
|
+ getBuildTrip(res) {
|
|
212
|
+ if (
|
|
213
|
+ res.status == 200 ||
|
|
214
|
+ res.status == 100012 ||
|
|
215
|
+ res.status == 100013 ||
|
|
216
|
+ res.status == 100014 ||
|
|
217
|
+ res.status == 100015
|
|
218
|
+ ) {
|
|
219
|
+ // 处理返回的数据
|
|
220
|
+ if (res.customRemarks) {
|
|
221
|
+ res.customRemarks = res.customRemarks.split("$");
|
|
222
|
+ } else {
|
|
223
|
+ res.customRemarks = [];
|
|
224
|
+ }
|
|
225
|
+ // 处理msg
|
|
226
|
+ if (res.msg.includes("<b>")) {
|
|
227
|
+ res.msg = res.msg.replace(/<b>/g, '<text class="green">');
|
|
228
|
+ res.msg = res.msg.replace(/<\/b>/g, "</text>");
|
177
|
229
|
}
|
178
|
|
- },
|
179
|
|
- // 提交数据,建单
|
180
|
|
- submitData() {
|
181
|
|
- let postData = {};
|
182
|
|
- uni.showLoading({
|
183
|
|
- title: '加载中',
|
184
|
|
- mask: true
|
185
|
|
- })
|
186
|
|
- if (this.qucikCreateOrderType === 'specimen') {
|
187
|
|
- //标本建单
|
188
|
|
- postData = {
|
189
|
|
- urgent: 0,
|
190
|
|
- workOrder: {
|
191
|
|
- sourceId: SOURCEID['护士端'],
|
192
|
|
- workOrderRemark: this.workOrderRemark,
|
193
|
|
- taskType: {
|
194
|
|
- id: this.qucikCreateOrderTypeId
|
195
|
|
- },
|
196
|
|
- createDept: this.loginInfoUserDeptId,
|
197
|
|
- startDept: {
|
198
|
|
- id: this.loginInfoUserDeptId
|
199
|
|
- },
|
|
230
|
+ this.dataObj = res;
|
|
231
|
+ }
|
|
232
|
+ },
|
|
233
|
+ // 获取历史输入
|
|
234
|
+ getRecentRemarks(res) {
|
|
235
|
+ if (res.state == 200) {
|
|
236
|
+ this.historyCustomRemarks = res.data || [];
|
|
237
|
+ }
|
|
238
|
+ },
|
|
239
|
+ // 提交数据,建单
|
|
240
|
+ submitData() {
|
|
241
|
+ let postData = {};
|
|
242
|
+ uni.showLoading({
|
|
243
|
+ title: "加载中",
|
|
244
|
+ mask: true,
|
|
245
|
+ });
|
|
246
|
+ if (this.qucikCreateOrderType === "specimen") {
|
|
247
|
+ //标本建单
|
|
248
|
+ postData = {
|
|
249
|
+ urgent: 0,
|
|
250
|
+ workOrder: {
|
|
251
|
+ sourceId: SOURCEID["护士端"],
|
|
252
|
+ workOrderRemark: this.workOrderRemark,
|
|
253
|
+ taskType: {
|
|
254
|
+ id: this.qucikCreateOrderTypeId,
|
200
|
255
|
},
|
201
|
|
- };
|
202
|
|
- } else if (this.qucikCreateOrderType === 'other') {
|
203
|
|
- let startDept = {}; //起点科室
|
204
|
|
- let endDepts = []; //终点科室
|
205
|
|
- // 其他服务建单
|
206
|
|
- // 起点科室---- start
|
207
|
|
- if (this.dataObj.start.start.departmentStrategy == 201) {
|
208
|
|
- startDept = {
|
209
|
|
- id: this.dataObj.start.start.list[0].id
|
210
|
|
- };
|
211
|
|
- }
|
212
|
|
- // 起点科室---- end
|
213
|
|
- // 终点科室---- start
|
214
|
|
- if (this.dataObj.start.start.departmentStrategy == 201) {
|
215
|
|
- endDepts = [{
|
216
|
|
- id: this.dataObj.end.end.list[0].id
|
217
|
|
- }];
|
218
|
|
- }
|
219
|
|
- // 终点科室---- end
|
220
|
|
- //请求参数
|
221
|
|
- postData = {
|
222
|
|
- workOrder: {
|
223
|
|
- sourceId: SOURCEID['护士端'],
|
224
|
|
- workOrderRemark: this.workOrderRemark,
|
225
|
|
- taskType: {
|
226
|
|
- id: this.qucikCreateOrderTypeId
|
227
|
|
- },
|
228
|
|
- createDept: this.loginInfoUserDeptId,
|
229
|
|
- startDept,
|
230
|
|
- endDepts,
|
|
256
|
+ createDept: this.loginInfo.user.dept.id,
|
|
257
|
+ startDept: {
|
|
258
|
+ id: this.loginInfo.user.dept.id,
|
231
|
259
|
},
|
|
260
|
+ },
|
|
261
|
+ };
|
|
262
|
+ } else if (this.qucikCreateOrderType === "other") {
|
|
263
|
+ let startDept = {}; //起点科室
|
|
264
|
+ let endDepts = []; //终点科室
|
|
265
|
+ // 其他服务建单
|
|
266
|
+ // 起点科室---- start
|
|
267
|
+ if (this.dataObj.start.start.departmentStrategy == 201) {
|
|
268
|
+ startDept = {
|
|
269
|
+ id: this.dataObj.start.start.list[0].id,
|
232
|
270
|
};
|
233
|
271
|
}
|
|
272
|
+ // 起点科室---- end
|
|
273
|
+ // 终点科室---- start
|
|
274
|
+ if (this.dataObj.start.start.departmentStrategy == 201) {
|
|
275
|
+ endDepts = [
|
|
276
|
+ {
|
|
277
|
+ id: this.dataObj.end.end.list[0].id,
|
|
278
|
+ },
|
|
279
|
+ ];
|
|
280
|
+ }
|
|
281
|
+ // 终点科室---- end
|
|
282
|
+ //请求参数
|
|
283
|
+ postData = {
|
|
284
|
+ workOrder: {
|
|
285
|
+ sourceId: SOURCEID["护士端"],
|
|
286
|
+ workOrderRemark: this.workOrderRemark,
|
|
287
|
+ taskType: {
|
|
288
|
+ id: this.qucikCreateOrderTypeId,
|
|
289
|
+ },
|
|
290
|
+ createDept: this.loginInfo.user.dept.id,
|
|
291
|
+ startDept,
|
|
292
|
+ endDepts,
|
|
293
|
+ },
|
|
294
|
+ };
|
|
295
|
+ }
|
234
|
296
|
|
235
|
|
- reqBuildOrder(postData).then(res => {
|
236
|
|
- uni.hideLoading();
|
237
|
|
- if (res.status == 200) {
|
238
|
|
- this.$refs.seiminModel.showChangeDept({
|
239
|
|
- skin: "toast",
|
240
|
|
- content: '创建成功',
|
241
|
|
- btns: [{
|
|
297
|
+ reqBuildOrder(postData).then((res) => {
|
|
298
|
+ uni.hideLoading();
|
|
299
|
+ if (res.status == 200) {
|
|
300
|
+ this.$refs.seiminModel.showChangeDept({
|
|
301
|
+ skin: "toast",
|
|
302
|
+ content: "创建成功",
|
|
303
|
+ btns: [
|
|
304
|
+ {
|
242
|
305
|
name: "知道了",
|
243
|
306
|
textColor: "#49B856",
|
244
|
307
|
flex: 1,
|
245
|
308
|
click() {
|
246
|
309
|
uni.navigateTo({
|
247
|
|
- url: '/pages/index/index'
|
248
|
|
- })
|
249
|
|
- }
|
250
|
|
- }]
|
251
|
|
- });
|
252
|
|
- } else {
|
253
|
|
- this.$refs.seiminModel.showChangeDept({
|
254
|
|
- skin: "toast",
|
255
|
|
- icon: 'error',
|
256
|
|
- content: res.msg || '操作失败'
|
257
|
|
- });
|
258
|
|
- }
|
259
|
|
- })
|
260
|
|
- }
|
|
310
|
+ url: "/pages/index/index",
|
|
311
|
+ });
|
|
312
|
+ },
|
|
313
|
+ },
|
|
314
|
+ ],
|
|
315
|
+ });
|
|
316
|
+ } else {
|
|
317
|
+ this.$refs.seiminModel.showChangeDept({
|
|
318
|
+ skin: "toast",
|
|
319
|
+ icon: "error",
|
|
320
|
+ content: res.msg || "操作失败",
|
|
321
|
+ });
|
|
322
|
+ }
|
|
323
|
+ });
|
261
|
324
|
},
|
262
|
|
- onLoad() {
|
263
|
|
- console.log(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
|
264
|
|
- this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
|
265
|
|
- }
|
266
|
|
- }
|
|
325
|
+ },
|
|
326
|
+ onLoad() {
|
|
327
|
+ console.log(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
|
|
328
|
+ this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
|
|
329
|
+ },
|
|
330
|
+};
|
267
|
331
|
</script>
|
268
|
332
|
|
269
|
333
|
<style lang="scss" scoped>
|
270
|
|
- .quickCreateOrder {
|
271
|
|
- margin-bottom: 100rpx;
|
|
334
|
+.quickCreateOrder {
|
|
335
|
+ margin-bottom: 100rpx;
|
272
|
336
|
|
273
|
|
- .qco_msg {
|
274
|
|
- min-height: 144rpx;
|
275
|
|
- padding: 32rpx 160rpx;
|
276
|
|
- color: #999;
|
277
|
|
- line-height: 40rpx;
|
278
|
|
- font-size: 28rpx;
|
279
|
|
- text-align: center;
|
280
|
|
- }
|
|
337
|
+ .qco_msg {
|
|
338
|
+ min-height: 144rpx;
|
|
339
|
+ padding: 32rpx 160rpx;
|
|
340
|
+ color: #999;
|
|
341
|
+ line-height: 40rpx;
|
|
342
|
+ font-size: 28rpx;
|
|
343
|
+ text-align: center;
|
|
344
|
+ }
|
281
|
345
|
|
282
|
|
- // 起点科室,终点科室
|
283
|
|
- .select_block {
|
284
|
|
- padding: 0 30rpx;
|
285
|
|
- height: 88rpx;
|
286
|
|
- font-size: 34rpx;
|
287
|
|
- border-top: 1px solid #E5E5E5;
|
288
|
|
- background-color: #fff;
|
289
|
|
- @include flex(space-between, center);
|
|
346
|
+ // 起点科室,终点科室
|
|
347
|
+ .select_block {
|
|
348
|
+ padding: 0 30rpx;
|
|
349
|
+ height: 88rpx;
|
|
350
|
+ font-size: 34rpx;
|
|
351
|
+ border-top: 1px solid #e5e5e5;
|
|
352
|
+ background-color: #fff;
|
|
353
|
+ @include flex(space-between, center);
|
290
|
354
|
|
291
|
|
- .select_label {
|
292
|
|
- color: #000;
|
|
355
|
+ .select_label {
|
|
356
|
+ color: #000;
|
293
|
357
|
|
294
|
|
- &.disableColor {
|
295
|
|
- color: #999;
|
296
|
|
- }
|
|
358
|
+ &.disableColor {
|
|
359
|
+ color: #999;
|
297
|
360
|
}
|
|
361
|
+ }
|
298
|
362
|
|
299
|
|
- .select_placeholder {
|
300
|
|
- color: #888;
|
301
|
|
- @include flex(flex-start, center);
|
|
363
|
+ .select_placeholder {
|
|
364
|
+ color: #888;
|
|
365
|
+ @include flex(flex-start, center);
|
302
|
366
|
|
303
|
|
- .pda-xiangyou {
|
304
|
|
- font-size: 24rpx;
|
305
|
|
- margin-left: 30rpx;
|
306
|
|
- }
|
|
367
|
+ .pda-xiangyou {
|
|
368
|
+ font-size: 24rpx;
|
|
369
|
+ margin-left: 30rpx;
|
307
|
370
|
}
|
308
|
371
|
}
|
|
372
|
+ }
|
309
|
373
|
|
310
|
|
- // 备注
|
311
|
|
- .remarks {
|
312
|
|
- min-height: 150rpx;
|
313
|
|
- background-color: #fff;
|
314
|
|
- border-top: 1px solid #E5E5E5;
|
315
|
|
- border-bottom: 1px solid #E5E5E5;
|
316
|
|
- padding: 22rpx 25rpx;
|
|
374
|
+ // 备注
|
|
375
|
+ .remarks {
|
|
376
|
+ min-height: 150rpx;
|
|
377
|
+ background-color: #fff;
|
|
378
|
+ border-top: 1px solid #e5e5e5;
|
|
379
|
+ border-bottom: 1px solid #e5e5e5;
|
|
380
|
+ padding: 22rpx 25rpx;
|
317
|
381
|
|
318
|
|
- .remarks_textarea {
|
319
|
|
- width: 100%;
|
320
|
|
- min-height: 100rpx;
|
321
|
|
- }
|
|
382
|
+ .remarks_textarea {
|
|
383
|
+ width: 100%;
|
|
384
|
+ min-height: 100rpx;
|
322
|
385
|
}
|
|
386
|
+ }
|
323
|
387
|
|
324
|
|
- // 快捷输入,历史输入
|
325
|
|
- .quickAndHistory {
|
326
|
|
- padding: 43rpx 25rpx 0;
|
|
388
|
+ // 快捷输入,历史输入
|
|
389
|
+ .quickAndHistory {
|
|
390
|
+ padding: 43rpx 25rpx 0;
|
327
|
391
|
|
328
|
|
- .quickAndHistory_header {
|
329
|
|
- font-weight: bold;
|
330
|
|
- font-size: 34rpx;
|
331
|
|
- padding-bottom: 24rpx;
|
332
|
|
- color: #333;
|
333
|
|
- }
|
|
392
|
+ .quickAndHistory_header {
|
|
393
|
+ font-weight: bold;
|
|
394
|
+ font-size: 34rpx;
|
|
395
|
+ padding-bottom: 24rpx;
|
|
396
|
+ color: #333;
|
|
397
|
+ }
|
334
|
398
|
|
335
|
|
- .quickAndHistory_container {
|
336
|
|
- @include flex;
|
337
|
|
- flex-wrap: wrap;
|
|
399
|
+ .quickAndHistory_container {
|
|
400
|
+ @include flex;
|
|
401
|
+ flex-wrap: wrap;
|
338
|
402
|
|
339
|
|
- .quickAndHistory_item {
|
340
|
|
- height: 66rpx;
|
341
|
|
- font-size: 28rpx;
|
342
|
|
- border-radius: 33rpx;
|
343
|
|
- background-color: #fff;
|
344
|
|
- line-height: 66rpx;
|
345
|
|
- padding: 0 24rpx;
|
346
|
|
- color: #666;
|
347
|
|
- margin-bottom: 11rpx;
|
348
|
|
- margin-right: 24rpx;
|
349
|
|
- @include clamp;
|
350
|
|
- }
|
|
403
|
+ .quickAndHistory_item {
|
|
404
|
+ height: 66rpx;
|
|
405
|
+ font-size: 28rpx;
|
|
406
|
+ border-radius: 33rpx;
|
|
407
|
+ background-color: #fff;
|
|
408
|
+ line-height: 66rpx;
|
|
409
|
+ padding: 0 24rpx;
|
|
410
|
+ color: #666;
|
|
411
|
+ margin-bottom: 11rpx;
|
|
412
|
+ margin-right: 24rpx;
|
|
413
|
+ @include clamp;
|
351
|
414
|
}
|
352
|
415
|
}
|
353
|
416
|
}
|
|
417
|
+}
|
354
|
418
|
</style>
|