|
@@ -91,7 +91,7 @@
|
91
|
91
|
|
92
|
92
|
<script>
|
93
|
93
|
export default {
|
94
|
|
- name: "SelectAdviceTemplate",
|
|
94
|
+ name: 'SelectAdviceTemplate',
|
95
|
95
|
props: {
|
96
|
96
|
visibility: {
|
97
|
97
|
type: Boolean,
|
|
@@ -100,166 +100,166 @@ export default {
|
100
|
100
|
templates: {
|
101
|
101
|
type: Array,
|
102
|
102
|
default: () => {
|
103
|
|
- return [];
|
|
103
|
+ return []
|
104
|
104
|
}
|
105
|
105
|
}
|
106
|
106
|
},
|
107
|
|
- data() {
|
|
107
|
+ data () {
|
108
|
108
|
return {
|
109
|
109
|
fold_template_ids: [],
|
110
|
110
|
selecting_advice_ids: []
|
111
|
|
- };
|
|
111
|
+ }
|
112
|
112
|
},
|
113
|
113
|
methods: {
|
114
|
|
- backAction: function() {
|
115
|
|
- this.$emit("back");
|
|
114
|
+ backAction: function () {
|
|
115
|
+ this.$emit('back')
|
116
|
116
|
},
|
117
|
|
- foldTemplateAction: function(template_id) {
|
|
117
|
+ foldTemplateAction: function (template_id) {
|
118
|
118
|
for (let index = 0; index < this.fold_template_ids.length; index++) {
|
119
|
119
|
if (this.fold_template_ids[index] == template_id) {
|
120
|
|
- this.fold_template_ids.splice(index, 1);
|
121
|
|
- return;
|
|
120
|
+ this.fold_template_ids.splice(index, 1)
|
|
121
|
+ return
|
122
|
122
|
}
|
123
|
123
|
}
|
124
|
|
- this.fold_template_ids.push(template_id);
|
|
124
|
+ this.fold_template_ids.push(template_id)
|
125
|
125
|
},
|
126
|
|
- selectAdviceAction: function(template, advice) {
|
127
|
|
- var isCancelSelect = false;
|
|
126
|
+ selectAdviceAction: function (template, advice) {
|
|
127
|
+ var isCancelSelect = false
|
128
|
128
|
for (let index = 0; index < this.selecting_advice_ids.length; index++) {
|
129
|
129
|
if (this.selecting_advice_ids[index].advice_id == advice.id) {
|
130
|
|
- this.selecting_advice_ids.splice(index, 1);
|
131
|
|
- isCancelSelect = true;
|
132
|
|
- break;
|
|
130
|
+ this.selecting_advice_ids.splice(index, 1)
|
|
131
|
+ isCancelSelect = true
|
|
132
|
+ break
|
133
|
133
|
}
|
134
|
134
|
}
|
135
|
135
|
if (!isCancelSelect) {
|
136
|
136
|
this.selecting_advice_ids.push({
|
137
|
137
|
template_id: template.id,
|
138
|
138
|
advice_id: advice.id
|
139
|
|
- });
|
|
139
|
+ })
|
140
|
140
|
}
|
141
|
141
|
},
|
142
|
|
- selectTemplateAllAdviceAction: function(template) {
|
|
142
|
+ selectTemplateAllAdviceAction: function (template) {
|
143
|
143
|
for (
|
144
|
144
|
let index = 0;
|
145
|
145
|
index < template.DoctorAdviceTemplate.length;
|
146
|
146
|
index++
|
147
|
147
|
) {
|
148
|
|
- const advice = template.DoctorAdviceTemplate[index];
|
|
148
|
+ const advice = template.DoctorAdviceTemplate[index]
|
149
|
149
|
if (advice.parent_id > 0) {
|
150
|
|
- continue;
|
|
150
|
+ continue
|
151
|
151
|
}
|
152
|
|
- var didSelect = false;
|
|
152
|
+ var didSelect = false
|
153
|
153
|
for (
|
154
|
154
|
let s_a_index = 0;
|
155
|
155
|
s_a_index < this.selecting_advice_ids.length;
|
156
|
156
|
s_a_index++
|
157
|
157
|
) {
|
158
|
158
|
if (this.selecting_advice_ids[s_a_index].advice_id == advice.id) {
|
159
|
|
- didSelect = true;
|
160
|
|
- break;
|
|
159
|
+ didSelect = true
|
|
160
|
+ break
|
161
|
161
|
}
|
162
|
162
|
}
|
163
|
163
|
if (!didSelect) {
|
164
|
164
|
this.selecting_advice_ids.push({
|
165
|
165
|
template_id: template.id,
|
166
|
166
|
advice_id: advice.id
|
167
|
|
- });
|
|
167
|
+ })
|
168
|
168
|
}
|
169
|
169
|
}
|
170
|
170
|
},
|
171
|
|
- cancelSelectTemplateAllAdviceAction: function(template) {
|
|
171
|
+ cancelSelectTemplateAllAdviceAction: function (template) {
|
172
|
172
|
for (
|
173
|
173
|
let index = this.selecting_advice_ids.length - 1;
|
174
|
174
|
index >= 0;
|
175
|
175
|
index--
|
176
|
176
|
) {
|
177
|
177
|
if (this.selecting_advice_ids[index].template_id == template.id) {
|
178
|
|
- this.selecting_advice_ids.splice(index, 1);
|
|
178
|
+ this.selecting_advice_ids.splice(index, 1)
|
179
|
179
|
}
|
180
|
180
|
}
|
181
|
181
|
},
|
182
|
|
- submitAction: function() {
|
183
|
|
- var advices = [];
|
|
182
|
+ submitAction: function () {
|
|
183
|
+ var advices = []
|
184
|
184
|
// WAIN: 效率低,可以通过在 selecting_advice_ids 加上 template_index 和 advice_index 字段来消除 this.templates 的循环
|
185
|
185
|
for (let t_a_i = 0; t_a_i < this.selecting_advice_ids.length; t_a_i++) {
|
186
|
|
- const tpl_advice = this.selecting_advice_ids[t_a_i];
|
|
186
|
+ const tpl_advice = this.selecting_advice_ids[t_a_i]
|
187
|
187
|
for (let t_i = 0; t_i < this.templates.length; t_i++) {
|
188
|
|
- const tpl = this.templates[t_i];
|
|
188
|
+ const tpl = this.templates[t_i]
|
189
|
189
|
if (tpl.id == tpl_advice.template_id) {
|
190
|
|
- var child_begin = false;
|
|
190
|
+ var child_begin = false
|
191
|
191
|
for (let a_i = 0; a_i < tpl.DoctorAdviceTemplate.length; a_i++) {
|
192
|
|
- const adv = tpl.DoctorAdviceTemplate[a_i];
|
|
192
|
+ const adv = tpl.DoctorAdviceTemplate[a_i]
|
193
|
193
|
if (adv.id == tpl_advice.advice_id) {
|
194
|
|
- advices.push(adv);
|
195
|
|
- child_begin = true;
|
|
194
|
+ advices.push(adv)
|
|
195
|
+ child_begin = true
|
196
|
196
|
} else if (child_begin == true) {
|
197
|
197
|
if (adv.parent_id == tpl_advice.advice_id) {
|
198
|
|
- advices.push(adv);
|
|
198
|
+ advices.push(adv)
|
199
|
199
|
} else {
|
200
|
|
- break;
|
|
200
|
+ break
|
201
|
201
|
}
|
202
|
202
|
}
|
203
|
203
|
}
|
204
|
204
|
}
|
205
|
205
|
}
|
206
|
206
|
}
|
207
|
|
- this.$emit("finish", advices);
|
|
207
|
+ this.$emit('finish', advices)
|
208
|
208
|
|
209
|
209
|
this.$nextTick(() => {
|
210
|
|
- this.fold_template_ids = [];
|
211
|
|
- this.selecting_advice_ids = [];
|
212
|
|
- });
|
|
210
|
+ this.fold_template_ids = []
|
|
211
|
+ this.selecting_advice_ids = []
|
|
212
|
+ })
|
213
|
213
|
},
|
214
|
214
|
|
215
|
|
- isFold: function(template_id) {
|
|
215
|
+ isFold: function (template_id) {
|
216
|
216
|
for (let index = 0; index < this.fold_template_ids.length; index++) {
|
217
|
217
|
if (this.fold_template_ids[index] == template_id) {
|
218
|
|
- return true;
|
|
218
|
+ return true
|
219
|
219
|
}
|
220
|
220
|
}
|
221
|
|
- return false;
|
|
221
|
+ return false
|
222
|
222
|
},
|
223
|
|
- isAdviceSelecting: function(advice_id) {
|
|
223
|
+ isAdviceSelecting: function (advice_id) {
|
224
|
224
|
for (let index = 0; index < this.selecting_advice_ids.length; index++) {
|
225
|
225
|
if (this.selecting_advice_ids[index].advice_id == advice_id) {
|
226
|
|
- return true;
|
|
226
|
+ return true
|
227
|
227
|
}
|
228
|
228
|
}
|
229
|
|
- return false;
|
|
229
|
+ return false
|
230
|
230
|
},
|
231
|
|
- isTemplateSelectingAllAdvices: function(template) {
|
232
|
|
- var count = 0;
|
|
231
|
+ isTemplateSelectingAllAdvices: function (template) {
|
|
232
|
+ var count = 0
|
233
|
233
|
for (let t_a_i = 0; t_a_i < this.selecting_advice_ids.length; t_a_i++) {
|
234
|
234
|
if (this.selecting_advice_ids[t_a_i].template_id == template.id) {
|
235
|
|
- count++;
|
|
235
|
+ count++
|
236
|
236
|
}
|
237
|
237
|
}
|
238
|
238
|
|
239
|
|
- var p_advice_count = 0;
|
|
239
|
+ var p_advice_count = 0
|
240
|
240
|
for (
|
241
|
241
|
let index = 0;
|
242
|
242
|
index < template.DoctorAdviceTemplate.length;
|
243
|
243
|
index++
|
244
|
244
|
) {
|
245
|
245
|
if (template.DoctorAdviceTemplate[index].parent_id == 0) {
|
246
|
|
- p_advice_count++;
|
|
246
|
+ p_advice_count++
|
247
|
247
|
}
|
248
|
248
|
}
|
249
|
249
|
if (count < p_advice_count) {
|
250
|
|
- return false;
|
|
250
|
+ return false
|
251
|
251
|
} else {
|
252
|
|
- return true;
|
|
252
|
+ return true
|
253
|
253
|
}
|
254
|
254
|
}
|
255
|
255
|
}
|
256
|
|
-};
|
|
256
|
+}
|
257
|
257
|
</script>
|
258
|
258
|
|
259
|
259
|
<style style="stylesheet/scss" lang="scss" scoped>
|
260
|
260
|
.optionsBox {
|
261
|
261
|
background: #fff;
|
262
|
|
- max-height: 10.6rem;
|
|
262
|
+ max-height: 9.6rem;
|
263
|
263
|
min-height: 5rem;
|
264
|
264
|
overflow-y: scroll;
|
265
|
265
|
@media only screen and (max-width: 812px) {
|