|
@@ -9,10 +9,10 @@
|
9
|
9
|
<scroll-view class="keyword-list-box" v-show="isShowKeywordList" scroll-y>
|
10
|
10
|
<block v-for="(row, index) in keywordList" :key="index">
|
11
|
11
|
<view class="keyword-entry" hover-class="keyword-entry-tap">
|
12
|
|
- <view class="keyword-text" @tap.stop="doSearch(keywordList[index].keyword)">
|
|
12
|
+ <view class="keyword-text" @tap.stop="doSearch(row)">
|
13
|
13
|
<rich-text :nodes="row.htmlStr"></rich-text>
|
14
|
14
|
</view>
|
15
|
|
- <view class="keyword-img" @tap.stop="doSearch(keywordList[index].keyword)">
|
|
15
|
+ <view class="keyword-img" @tap.stop="doSearch(row)">
|
16
|
16
|
<image src="/static/HM-search/back.png"></image>
|
17
|
17
|
</view>
|
18
|
18
|
</view>
|
|
@@ -73,6 +73,7 @@
|
73
|
73
|
uniName: '',
|
74
|
74
|
queryDept: '',
|
75
|
75
|
queryDeptId: '',
|
|
76
|
+ sourceQr: '',
|
76
|
77
|
qrCode: '',
|
77
|
78
|
// 设置科室二维码 end
|
78
|
79
|
// 选择血制品送达科室 start
|
|
@@ -115,6 +116,7 @@
|
115
|
116
|
this.uniName = options.uniName;
|
116
|
117
|
this.queryDept = options.queryDept;
|
117
|
118
|
this.queryDeptId = options.queryDeptId;
|
|
119
|
+ this.sourceQr = options.sourceQr;
|
118
|
120
|
this.qrCode = options.qrCode;
|
119
|
121
|
this.sysDeptType = -1;
|
120
|
122
|
} else if (this.type == "pharmacy") { //药房切换科室
|
|
@@ -224,15 +226,34 @@
|
224
|
226
|
}
|
225
|
227
|
}
|
226
|
228
|
}
|
|
229
|
+
|
|
230
|
+ // 设置二维码
|
|
231
|
+ if(this.type == "settingCode"){
|
|
232
|
+ postData = {
|
|
233
|
+ hosId: this.hosId,
|
|
234
|
+ searchKey: keyword,
|
|
235
|
+ }
|
|
236
|
+ }
|
|
237
|
+
|
227
|
238
|
uni.showLoading({
|
228
|
239
|
title: "加载中",
|
229
|
240
|
});
|
230
|
|
- post("/data/fetchDataList/department", postData).then((res) => {
|
231
|
|
- if (res.status == 200) {
|
232
|
|
- this.searchData.push({
|
233
|
|
- name: keyword,
|
234
|
|
- list: res.list
|
235
|
|
- });
|
|
241
|
+
|
|
242
|
+ post(this.type == "settingCode" ? "/dept/queryChangeDept" : "/data/fetchDataList/department", postData).then((res) => {
|
|
243
|
+ if (res.status == 200 || res.state == 200) {
|
|
244
|
+ if(this.type == "settingCode"){
|
|
245
|
+ let deptList = res.deptList.map(v => ({...v, sign: 'dept'}));
|
|
246
|
+ let qrList = res.qrList.map(v => ({...v.deptDTO, sign: 'qr', qrId: v.id}));
|
|
247
|
+ this.searchData.push({
|
|
248
|
+ name: keyword,
|
|
249
|
+ list: deptList.concat(qrList)
|
|
250
|
+ });
|
|
251
|
+ }else{
|
|
252
|
+ this.searchData.push({
|
|
253
|
+ name: keyword,
|
|
254
|
+ list: res.list
|
|
255
|
+ });
|
|
256
|
+ }
|
236
|
257
|
let searchText = this.searchText.detail ? this.searchText.detail.value : this.searchText;
|
237
|
258
|
let index = this.searchData.findIndex(item => item.name === searchText);
|
238
|
259
|
this.deptList = index >= 0 ? this.searchData[index].list : [];
|
|
@@ -256,10 +277,12 @@
|
256
|
277
|
//定义高亮#9f9f9f
|
257
|
278
|
var html = row.dept.replace(
|
258
|
279
|
keyword,
|
259
|
|
- "<span style='color: #9f9f9f;'>" + keyword + "</span>"
|
|
280
|
+ "<span style='color: #9f9f9f;'>" + keyword + "</span>" + (row.sign == 'qr' ? '<span class="red">(配置)</span>' : '')
|
260
|
281
|
);
|
261
|
282
|
html = "<div>" + html + "</div>";
|
262
|
283
|
var tmpObj = {
|
|
284
|
+ id: row.id,
|
|
285
|
+ qrId: row.qrId,
|
263
|
286
|
keyword: row.dept,
|
264
|
287
|
htmlStr: html,
|
265
|
288
|
};
|
|
@@ -321,11 +344,12 @@
|
321
|
344
|
});
|
322
|
345
|
},
|
323
|
346
|
//执行搜索
|
324
|
|
- doSearch(keyword) {
|
325
|
|
- keyword = keyword === false ? this.keyword : keyword;
|
|
347
|
+ doSearch(data) {
|
|
348
|
+ console.log(data);
|
|
349
|
+ let keyword = keyword === false ? this.keyword : data.keyword;
|
326
|
350
|
this.keyword = keyword;
|
327
|
351
|
this.saveKeyword(keyword); //保存为历史
|
328
|
|
- let arr = this.deptList.filter((item) => item.dept === keyword);
|
|
352
|
+ let arr = this.deptList.filter((item) => data.qrId ? (item.qrId === data.qrId) : (item.dept === keyword));
|
329
|
353
|
if (arr.length) {
|
330
|
354
|
let msg = "";
|
331
|
355
|
if (this.type == "patientInformationList" || this.type == "inspectList" || this.type == "pharmacy") {
|
|
@@ -388,12 +412,13 @@
|
388
|
412
|
});
|
389
|
413
|
} else if (this.type == "settingCode") {
|
390
|
414
|
if (this.queryDept) { //替换
|
|
415
|
+ console.log(arr);
|
391
|
416
|
uni.navigateTo({
|
392
|
|
- url: `../settingCode/settingCode?targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&queryDept=${this.queryDept}&queryDeptId=${this.queryDeptId}&qrCode=${this.qrCode}`,
|
|
417
|
+ url: `../settingCode/settingCode?destQr=${arr[0].qrId || ''}&targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&queryDept=${this.queryDept}&queryDeptId=${this.queryDeptId}&sourceQr=${this.sourceQr || ''}&qrCode=${this.qrCode}`,
|
393
|
418
|
});
|
394
|
419
|
} else { //设置
|
395
|
420
|
uni.navigateTo({
|
396
|
|
- url: `../settingCode/settingCode?targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&qrCode=${this.qrCode}`,
|
|
421
|
+ url: `../settingCode/settingCode?qrId=${arr[0].qrId || ''}&targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&qrCode=${this.qrCode}`,
|
397
|
422
|
});
|
398
|
423
|
}
|
399
|
424
|
}
|