|
@@ -0,0 +1,374 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="content">
|
|
3
|
+ <view class="search-keyword">
|
|
4
|
+ <scroll-view class="keyword-list-box" scroll-y>
|
|
5
|
+ <checkbox-group @change="checkboxChange">
|
|
6
|
+ <label v-for="(row, index) in dataList" :key="row.id">
|
|
7
|
+ <view class="keyword-entry" hover-class="keyword-entry-tap">
|
|
8
|
+ <view class="keyword-text">
|
|
9
|
+ <checkbox color="#42b983" :value="row.id" :checked="row.checked" />
|
|
10
|
+ <rich-text :nodes="row.buildingName"></rich-text>
|
|
11
|
+ </view>
|
|
12
|
+ <view class="keyword-img">
|
|
13
|
+ <image src="/static/HM-search/back.png"></image>
|
|
14
|
+ </view>
|
|
15
|
+ </view>
|
|
16
|
+ </label>
|
|
17
|
+ </checkbox-group>
|
|
18
|
+ </scroll-view>
|
|
19
|
+ </view>
|
|
20
|
+ <view class="toolbar" @click="determine()" hover-class="seimin-btn-hover">
|
|
21
|
+ <text class="toolbar-sao">确定</text>
|
|
22
|
+ </view>
|
|
23
|
+ <!-- 弹窗 -->
|
|
24
|
+ <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content" @know="know" :operate="models.operate"></showModel>
|
|
25
|
+ </view>
|
|
26
|
+</template>
|
|
27
|
+
|
|
28
|
+<script>
|
|
29
|
+ import {
|
|
30
|
+ post,
|
|
31
|
+ webHandle
|
|
32
|
+ } from "../../http/http.js";
|
|
33
|
+ export default {
|
|
34
|
+ data() {
|
|
35
|
+ return {
|
|
36
|
+ type: "", //进入该页面的类型
|
|
37
|
+ configName: "", //快速组合名称
|
|
38
|
+ id: "", //快速组合id
|
|
39
|
+ changedept: 0, //是否从列表过来的切换负责科室
|
|
40
|
+ hosId: "",
|
|
41
|
+ dataList: [],
|
|
42
|
+ //系统设置的科室类型
|
|
43
|
+ sysDeptType: 0,
|
|
44
|
+ // 弹窗model
|
|
45
|
+ models: {
|
|
46
|
+ disjunctor: false,
|
|
47
|
+ },
|
|
48
|
+ };
|
|
49
|
+ },
|
|
50
|
+ onLoad(options) {
|
|
51
|
+ this.hosId = uni.getStorageSync("userData").user.currentHospital.id;
|
|
52
|
+ console.log(options, 'options');
|
|
53
|
+ this.type = options.type;
|
|
54
|
+ if (this.type == "setBuilding") {
|
|
55
|
+ this.configName = options.configName;
|
|
56
|
+ this.id = options.id;
|
|
57
|
+ this.changedept = options.changedept;
|
|
58
|
+ this.getSysDeptType();
|
|
59
|
+ } else {
|
|
60
|
+ this.getSysDeptType();
|
|
61
|
+ }
|
|
62
|
+ // this.init();
|
|
63
|
+ // #ifdef APP-PLUS
|
|
64
|
+ webHandle("no", "app");
|
|
65
|
+ // #endif
|
|
66
|
+ // #ifdef H5
|
|
67
|
+ webHandle("no", "wx");
|
|
68
|
+ // #endif
|
|
69
|
+ },
|
|
70
|
+ methods: {
|
|
71
|
+ //知道了
|
|
72
|
+ know() {
|
|
73
|
+ this.models.disjunctor = false;
|
|
74
|
+ },
|
|
75
|
+ // 确认
|
|
76
|
+ determine() {
|
|
77
|
+ console.log(this.dataList);
|
|
78
|
+ const dataList = this.dataList.filter(v => v.checked);
|
|
79
|
+ if (dataList.length === 0) {
|
|
80
|
+ this.models = {
|
|
81
|
+ disjunctor: true,
|
|
82
|
+ title: "提示",
|
|
83
|
+ content: "请选择至少一个楼栋",
|
|
84
|
+ icon: "warn",
|
|
85
|
+ operate: {
|
|
86
|
+ know: "知道了",
|
|
87
|
+ },
|
|
88
|
+ };
|
|
89
|
+ } else {
|
|
90
|
+ let postData = {
|
|
91
|
+ "idx": 0,
|
|
92
|
+ "sum": 1000,
|
|
93
|
+ department: {
|
|
94
|
+ hospital: {id: this.hosId},
|
|
95
|
+ type: {id: this.sysDeptType},
|
|
96
|
+ buildIds: dataList.map(v => v.id).toString()
|
|
97
|
+ }
|
|
98
|
+ }
|
|
99
|
+ uni.showLoading({
|
|
100
|
+ title: "加载中",
|
|
101
|
+ });
|
|
102
|
+ post("/data/fetchDataList/department", postData).then((res) => {
|
|
103
|
+ uni.hideLoading();
|
|
104
|
+ if (res.status == 200) {
|
|
105
|
+ let obj = uni.getStorageSync("setDepts");
|
|
106
|
+ console.log(res.list,obj)
|
|
107
|
+ if (obj) {
|
|
108
|
+ let list = [...res.list, ...obj];
|
|
109
|
+ let newArr = [];
|
|
110
|
+ let obj1 = {};
|
|
111
|
+ for (let i = 0; i < list.length; i++) {
|
|
112
|
+ if (!obj1[list[i].id]) {
|
|
113
|
+ newArr.push(list[i]);
|
|
114
|
+ obj1[list[i].id] = true;
|
|
115
|
+ }
|
|
116
|
+ }
|
|
117
|
+ console.log(newArr);
|
|
118
|
+ uni.setStorageSync("setDepts", newArr);
|
|
119
|
+ } else {
|
|
120
|
+ uni.setStorageSync("setDepts", res.list);
|
|
121
|
+ }
|
|
122
|
+ uni.navigateTo({
|
|
123
|
+ url: `../setDept/setDept?configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,//不知道
|
|
124
|
+ });
|
|
125
|
+ } else {
|
|
126
|
+ uni.showToast({
|
|
127
|
+ icon: "none",
|
|
128
|
+ title: "请求失败!",
|
|
129
|
+ });
|
|
130
|
+ }
|
|
131
|
+ })
|
|
132
|
+ }
|
|
133
|
+ },
|
|
134
|
+ // 选择楼栋
|
|
135
|
+ checkboxChange: function(e) {
|
|
136
|
+ var dataList = this.dataList,
|
|
137
|
+ values = e.detail.value;
|
|
138
|
+ for (var i = 0, lenI = dataList.length; i < lenI; ++i) {
|
|
139
|
+ const item = dataList[i]
|
|
140
|
+ if (values.includes(item.id)) {
|
|
141
|
+ this.$set(item, 'checked', true)
|
|
142
|
+ } else {
|
|
143
|
+ this.$set(item, 'checked', false)
|
|
144
|
+ }
|
|
145
|
+ }
|
|
146
|
+ },
|
|
147
|
+ //获取系统设置的科室类型
|
|
148
|
+ getSysDeptType() {
|
|
149
|
+ uni.showLoading({
|
|
150
|
+ title: "加载中",
|
|
151
|
+ });
|
|
152
|
+ let postData = {
|
|
153
|
+ "idx": 0,
|
|
154
|
+ "sum": 1,
|
|
155
|
+ systemConfiguration: {
|
|
156
|
+ keyconfig: "busiViewDeptId"
|
|
157
|
+ }
|
|
158
|
+ }
|
|
159
|
+ post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
|
|
160
|
+ this.getBuildings();
|
|
161
|
+ if (res.status == 200) {
|
|
162
|
+ this.sysDeptType = res.list[0].valueconfig
|
|
163
|
+ } else {
|
|
164
|
+ uni.showToast({
|
|
165
|
+ icon: "none",
|
|
166
|
+ title: "请求失败!",
|
|
167
|
+ });
|
|
168
|
+ }
|
|
169
|
+ })
|
|
170
|
+ },
|
|
171
|
+ //获取楼栋列表
|
|
172
|
+ getBuildings() {
|
|
173
|
+ let postData = {
|
|
174
|
+ "idx": 0,
|
|
175
|
+ "sum": 100,
|
|
176
|
+ building: {
|
|
177
|
+ hosId: this.hosId
|
|
178
|
+ }
|
|
179
|
+ }
|
|
180
|
+ post("/simple/data/fetchDataList/building", postData).then((res) => {
|
|
181
|
+ uni.hideLoading();
|
|
182
|
+ if (res.status == 200) {
|
|
183
|
+ this.dataList = res.list || [];
|
|
184
|
+ } else {
|
|
185
|
+ uni.showToast({
|
|
186
|
+ icon: "none",
|
|
187
|
+ title: "请求失败!",
|
|
188
|
+ });
|
|
189
|
+ }
|
|
190
|
+ })
|
|
191
|
+ },
|
|
192
|
+ },
|
|
193
|
+ };
|
|
194
|
+</script>
|
|
195
|
+<style scoped lang="less">
|
|
196
|
+ view {
|
|
197
|
+ display: block;
|
|
198
|
+ }
|
|
199
|
+ // 底部
|
|
200
|
+ .toolbar {
|
|
201
|
+ position: fixed;
|
|
202
|
+ left: 0;
|
|
203
|
+ right: 0;
|
|
204
|
+ bottom: 0;
|
|
205
|
+ z-index: 9999;
|
|
206
|
+ height: 88rpx;
|
|
207
|
+ display: flex;
|
|
208
|
+ justify-content: center;
|
|
209
|
+ align-items: center;
|
|
210
|
+ box-sizing: border-box;
|
|
211
|
+ border-radius: 4rpx;
|
|
212
|
+ box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
|
|
213
|
+ background-color: #e5e9ed;
|
|
214
|
+
|
|
215
|
+ .toolbar-sao {
|
|
216
|
+ font-size: 36rpx;
|
|
217
|
+ color: #49b856;
|
|
218
|
+ }
|
|
219
|
+ }
|
|
220
|
+
|
|
221
|
+ .search-box {
|
|
222
|
+ width: 95%;
|
|
223
|
+ background-color: rgb(242, 242, 242);
|
|
224
|
+ padding: 15upx 2.5%;
|
|
225
|
+ display: flex;
|
|
226
|
+ justify-content: space-between;
|
|
227
|
+ position: sticky;
|
|
228
|
+ top: 0;
|
|
229
|
+ }
|
|
230
|
+
|
|
231
|
+ .search-box .mSearch-input-box {
|
|
232
|
+ width: 100%;
|
|
233
|
+ }
|
|
234
|
+
|
|
235
|
+ .search-box .input-box {
|
|
236
|
+ width: 85%;
|
|
237
|
+ flex-shrink: 1;
|
|
238
|
+ display: flex;
|
|
239
|
+ justify-content: center;
|
|
240
|
+ align-items: center;
|
|
241
|
+ }
|
|
242
|
+
|
|
243
|
+ .search-box .search-btn {
|
|
244
|
+ width: 15%;
|
|
245
|
+ margin: 0 0 0 2%;
|
|
246
|
+ display: flex;
|
|
247
|
+ justify-content: center;
|
|
248
|
+ align-items: center;
|
|
249
|
+ flex-shrink: 0;
|
|
250
|
+ font-size: 28upx;
|
|
251
|
+ color: #fff;
|
|
252
|
+ background: linear-gradient(to right, #ff9801, #ff570a);
|
|
253
|
+ border-radius: 60upx;
|
|
254
|
+ }
|
|
255
|
+
|
|
256
|
+ .search-box .input-box>input {
|
|
257
|
+ width: 100%;
|
|
258
|
+ height: 60upx;
|
|
259
|
+ font-size: 32upx;
|
|
260
|
+ border: 0;
|
|
261
|
+ border-radius: 60upx;
|
|
262
|
+ -webkit-appearance: none;
|
|
263
|
+ -moz-appearance: none;
|
|
264
|
+ appearance: none;
|
|
265
|
+ padding: 0 3%;
|
|
266
|
+ margin: 0;
|
|
267
|
+ background-color: #ffffff;
|
|
268
|
+ }
|
|
269
|
+
|
|
270
|
+ .placeholder-class {
|
|
271
|
+ color: #9e9e9e;
|
|
272
|
+ }
|
|
273
|
+
|
|
274
|
+ .search-keyword {
|
|
275
|
+ width: 100%;
|
|
276
|
+ background-color: rgb(242, 242, 242);
|
|
277
|
+ }
|
|
278
|
+
|
|
279
|
+ .keyword-list-box {
|
|
280
|
+ height: calc(100vh - 110upx);
|
|
281
|
+ padding-top: 10upx;
|
|
282
|
+ border-radius: 20upx 20upx 0 0;
|
|
283
|
+ background-color: #fff;
|
|
284
|
+ }
|
|
285
|
+
|
|
286
|
+ .keyword-entry-tap {
|
|
287
|
+ background-color: #eee;
|
|
288
|
+ }
|
|
289
|
+
|
|
290
|
+ .keyword-entry {
|
|
291
|
+ width: 94%;
|
|
292
|
+ height: 80upx;
|
|
293
|
+ margin: 0 3%;
|
|
294
|
+ font-size: 30upx;
|
|
295
|
+ color: #333;
|
|
296
|
+ display: flex;
|
|
297
|
+ justify-content: space-between;
|
|
298
|
+ align-items: center;
|
|
299
|
+ border-bottom: solid 1upx #e7e7e7;
|
|
300
|
+ }
|
|
301
|
+
|
|
302
|
+ .keyword-entry image {
|
|
303
|
+ width: 60upx;
|
|
304
|
+ height: 60upx;
|
|
305
|
+ }
|
|
306
|
+
|
|
307
|
+ .keyword-entry .keyword-text,
|
|
308
|
+ .keyword-entry .keyword-img {
|
|
309
|
+ height: 80upx;
|
|
310
|
+ display: flex;
|
|
311
|
+ align-items: center;
|
|
312
|
+ }
|
|
313
|
+
|
|
314
|
+ .keyword-entry .keyword-text {
|
|
315
|
+ width: 90%;
|
|
316
|
+ }
|
|
317
|
+
|
|
318
|
+ .keyword-entry .keyword-img {
|
|
319
|
+ width: 10%;
|
|
320
|
+ justify-content: center;
|
|
321
|
+ }
|
|
322
|
+
|
|
323
|
+ .keyword-box {
|
|
324
|
+ height: calc(100vh - 110upx);
|
|
325
|
+ border-radius: 20upx 20upx 0 0;
|
|
326
|
+ background-color: #fff;
|
|
327
|
+ }
|
|
328
|
+
|
|
329
|
+ .keyword-box .keyword-block {
|
|
330
|
+ padding: 10upx 0;
|
|
331
|
+ }
|
|
332
|
+
|
|
333
|
+ .keyword-box .keyword-block .keyword-list-header {
|
|
334
|
+ width: 94%;
|
|
335
|
+ padding: 10upx 3%;
|
|
336
|
+ font-size: 27upx;
|
|
337
|
+ color: #333;
|
|
338
|
+ display: flex;
|
|
339
|
+ justify-content: space-between;
|
|
340
|
+ }
|
|
341
|
+
|
|
342
|
+ .keyword-box .keyword-block .keyword-list-header image {
|
|
343
|
+ width: 40upx;
|
|
344
|
+ height: 40upx;
|
|
345
|
+ }
|
|
346
|
+
|
|
347
|
+ .keyword-box .keyword-block .keyword {
|
|
348
|
+ width: 94%;
|
|
349
|
+ padding: 3px 3%;
|
|
350
|
+ display: flex;
|
|
351
|
+ flex-flow: wrap;
|
|
352
|
+ justify-content: flex-start;
|
|
353
|
+ }
|
|
354
|
+
|
|
355
|
+ .keyword-box .keyword-block .hide-hot-tis {
|
|
356
|
+ display: flex;
|
|
357
|
+ justify-content: center;
|
|
358
|
+ font-size: 28upx;
|
|
359
|
+ color: #6b6b6b;
|
|
360
|
+ }
|
|
361
|
+
|
|
362
|
+ .keyword-box .keyword-block .keyword>view {
|
|
363
|
+ display: flex;
|
|
364
|
+ justify-content: center;
|
|
365
|
+ align-items: center;
|
|
366
|
+ border-radius: 60upx;
|
|
367
|
+ padding: 0 20upx;
|
|
368
|
+ margin: 10upx 20upx 10upx 0;
|
|
369
|
+ height: 60upx;
|
|
370
|
+ font-size: 28upx;
|
|
371
|
+ background-color: rgb(242, 242, 242);
|
|
372
|
+ color: #6b6b6b;
|
|
373
|
+ }
|
|
374
|
+</style>
|