|
@@ -156,288 +156,289 @@
|
156
|
156
|
</template>
|
157
|
157
|
|
158
|
158
|
<script>
|
159
|
|
- import {getDataConfig} from '@/utils/data';
|
|
159
|
+import {getDataConfig} from '@/utils/data'
|
160
|
160
|
export default {
|
161
|
|
- name: "DialysisPrescription",
|
162
|
|
- data() {
|
|
161
|
+ name: 'DialysisPrescription',
|
|
162
|
+ data () {
|
163
|
163
|
return {
|
164
|
|
- title: "透析处方",
|
|
164
|
+ title: '透析处方',
|
165
|
165
|
perfusion_apparatus_map: {},
|
166
|
|
- dialysateFormulationMap:{},
|
167
|
|
- };
|
|
166
|
+ dialysateFormulationMap: {}
|
|
167
|
+ }
|
168
|
168
|
},
|
169
|
169
|
props: {
|
170
|
170
|
prescription: {
|
171
|
|
- type: Object,
|
|
171
|
+ type: Object
|
172
|
172
|
},
|
173
|
173
|
solution: {
|
174
|
|
- type: Object,
|
|
174
|
+ type: Object
|
175
|
175
|
},
|
176
|
176
|
device_number_map: {
|
177
|
|
- type: Object,
|
|
177
|
+ type: Object
|
178
|
178
|
}
|
179
|
179
|
},
|
180
|
180
|
computed: {
|
181
|
|
- target_ultrafiltration:function(){
|
182
|
|
- var v = this.getValueStr("target_ultrafiltration", "target_ultrafiltration")
|
|
181
|
+ target_ultrafiltration: function () {
|
|
182
|
+ var v = this.getValueStr('target_ultrafiltration', 'target_ultrafiltration')
|
183
|
183
|
v = this.getFloat(v)
|
184
|
|
- return v.length == 0 ? "0" : v
|
|
184
|
+ return v.length == 0 ? '0' : v
|
185
|
185
|
},
|
186
|
|
- dialysis_mode: function() {
|
187
|
|
- var mode = this.getValueStr("mode_id", "mode_id")
|
|
186
|
+ dialysis_mode: function () {
|
|
187
|
+ var mode = this.getValueStr('mode_id', 'mode_id')
|
188
|
188
|
if (mode.length == 0) {
|
189
|
|
- return ""
|
|
189
|
+ return ''
|
190
|
190
|
}
|
191
|
191
|
if (this.$store.getters.treatment_mode[mode] != undefined) {
|
192
|
192
|
return this.$store.getters.treatment_mode[mode].name
|
193
|
193
|
}
|
194
|
|
- return ""
|
|
194
|
+ return ''
|
195
|
195
|
},
|
196
|
|
- perfusion_apparatus: function() {
|
197
|
|
- var v = this.getValueStr("perfusion_apparatus", "perfusion_apparatus")
|
|
196
|
+ perfusion_apparatus: function () {
|
|
197
|
+ var v = this.getValueStr('perfusion_apparatus', 'perfusion_apparatus')
|
198
|
198
|
if (v.length == 0) {
|
199
|
|
- return ""
|
|
199
|
+ return ''
|
200
|
200
|
}
|
201
|
201
|
if (this.perfusion_apparatus_map[v] != undefined) {
|
202
|
202
|
return this.perfusion_apparatus_map[v].name
|
203
|
203
|
}
|
204
|
|
- return ""
|
|
204
|
+ return ''
|
205
|
205
|
},
|
206
|
|
- displace_liqui: function() {
|
207
|
|
- var v = this.getValueStr("displace_liqui", "displace_liqui")
|
208
|
|
- return v.length == 0 ? "0" : v
|
|
206
|
+ displace_liqui: function () {
|
|
207
|
+ var v = this.getValueStr('displace_liqui', 'displace_liqui')
|
|
208
|
+ return v.length == 0 ? '0' : v
|
209
|
209
|
},
|
210
|
|
- anticoagulant_shouji: function() {
|
211
|
|
- var v = this.getValueStr("anticoagulant_shouji", "anticoagulant_shouji")
|
212
|
|
- return v.length == 0 ? "0" : v
|
|
210
|
+ anticoagulant_shouji: function () {
|
|
211
|
+ var v = this.getValueStr('anticoagulant_shouji', 'anticoagulant_shouji')
|
|
212
|
+ return v.length == 0 ? '0' : v
|
213
|
213
|
},
|
214
|
|
- kalium: function() {
|
215
|
|
- var v = this.getValueStr("kalium", "kalium")
|
|
214
|
+ kalium: function () {
|
|
215
|
+ var v = this.getValueStr('kalium', 'kalium')
|
216
|
216
|
v = this.getFloat(v)
|
217
|
|
- return v == 0 ? "0":v
|
218
|
|
- },
|
219
|
|
- replacement_total:function(){
|
220
|
|
- var v = this.getValueStr("replacement_total", "replacement_total")
|
221
|
|
- return v.length == 0 ? "0" : v
|
222
|
|
- },
|
223
|
|
- bicarbonate: function() {
|
224
|
|
- var v = this.getValueStr("bicarbonate", "bicarbonate")
|
225
|
|
- return v.length == 0 ? "0" : v
|
226
|
|
- },
|
227
|
|
- dialysate_flow: function() {
|
228
|
|
- var v = this.getValueStr("dialysate_flow", "dialysate_flow")
|
229
|
|
- return v.length == 0 ? "0" : v
|
230
|
|
- },
|
231
|
|
- dialysis_duration: function() {
|
232
|
|
- var dialysis_duration_hour = (this.getValueStr("dialysis_duration_hour", "dialysis_duration_hour"))
|
233
|
|
- var dialysis_duration_minute = (this.getValueStr("dialysis_duration_minute", "dialysis_duration_minute"))
|
234
|
|
- if(dialysis_duration_hour.length == 0 && dialysis_duration_minute.length == 0){
|
235
|
|
- return "0"
|
236
|
|
- }else{
|
237
|
|
- var time = dialysis_duration_hour+"h"+dialysis_duration_minute+"min"
|
238
|
|
- return time.length == 0 ? "0" : time
|
|
217
|
+ return v == 0 ? '0' : v
|
|
218
|
+ },
|
|
219
|
+ replacement_total: function () {
|
|
220
|
+ var v = this.getValueStr('replacement_total', 'replacement_total')
|
|
221
|
+ return v.length == 0 ? '0' : v
|
|
222
|
+ },
|
|
223
|
+ bicarbonate: function () {
|
|
224
|
+ var v = this.getValueStr('bicarbonate', 'bicarbonate')
|
|
225
|
+ return v.length == 0 ? '0' : v
|
|
226
|
+ },
|
|
227
|
+ dialysate_flow: function () {
|
|
228
|
+ var v = this.getValueStr('dialysate_flow', 'dialysate_flow')
|
|
229
|
+ return v.length == 0 ? '0' : v
|
|
230
|
+ },
|
|
231
|
+ dialysis_duration: function () {
|
|
232
|
+ var dialysis_duration_hour = (this.getValueStr('dialysis_duration_hour', 'dialysis_duration_hour'))
|
|
233
|
+ var dialysis_duration_minute = (this.getValueStr('dialysis_duration_minute', 'dialysis_duration_minute'))
|
|
234
|
+ if (dialysis_duration_hour.length == 0 && dialysis_duration_minute.length == 0) {
|
|
235
|
+ return '0'
|
|
236
|
+ } else {
|
|
237
|
+ var time = dialysis_duration_hour + 'h' + dialysis_duration_minute + 'min'
|
|
238
|
+ return time.length == 0 ? '0' : time
|
239
|
239
|
}
|
240
|
|
-
|
241
|
240
|
},
|
242
|
|
- blood_flow_volume: function() {
|
243
|
|
- var v = this.getValueStr("blood_flow_volume", "blood_flow_volume")
|
244
|
|
- return v.length == 0 ? "0" : v
|
|
241
|
+ blood_flow_volume: function () {
|
|
242
|
+ var v = this.getValueStr('blood_flow_volume', 'blood_flow_volume')
|
|
243
|
+ return v.length == 0 ? '0' : v
|
245
|
244
|
},
|
246
|
|
- replacement_way: function() {
|
247
|
|
- return this.getValueStr("replacement_way", "replacement_way")
|
|
245
|
+ replacement_way: function () {
|
|
246
|
+ return this.getValueStr('replacement_way', 'replacement_way')
|
248
|
247
|
},
|
249
|
|
- anticoagulant_weichi: function() {
|
250
|
|
- var v = this.getValueStr("anticoagulant_weichi", "anticoagulant_weichi")
|
251
|
|
- return v.length == 0 ? "0" : v
|
|
248
|
+ anticoagulant_weichi: function () {
|
|
249
|
+ var v = this.getValueStr('anticoagulant_weichi', 'anticoagulant_weichi')
|
|
250
|
+ return v.length == 0 ? '0' : v
|
252
|
251
|
},
|
253
|
|
- sodium: function() {
|
254
|
|
- var v = this.getValueStr("sodium", "sodium")
|
|
252
|
+ sodium: function () {
|
|
253
|
+ var v = this.getValueStr('sodium', 'sodium')
|
255
|
254
|
console.log(v)
|
256
|
255
|
v = this.getFloat(v)
|
257
|
256
|
console.log(v)
|
258
|
|
- return v == 0 ? "0":v
|
|
257
|
+ return v == 0 ? '0' : v
|
259
|
258
|
},
|
260
|
|
- glucose: function() {
|
261
|
|
- var v = this.getValueStr("glucose", "glucose")
|
262
|
|
- return v.length == 0 ? "0" : v
|
|
259
|
+ glucose: function () {
|
|
260
|
+ var v = this.getValueStr('glucose', 'glucose')
|
|
261
|
+ return v.length == 0 ? '0' : v
|
263
|
262
|
},
|
264
|
|
- dialysate_temperature: function() {
|
265
|
|
- var v = this.getValueStr("dialysate_temperature", "dialysate_temperature")
|
266
|
|
- return v.length == 0 ? "0" : v
|
|
263
|
+ dialysate_temperature: function () {
|
|
264
|
+ var v = this.getValueStr('dialysate_temperature', 'dialysate_temperature')
|
|
265
|
+ return v.length == 0 ? '0' : v
|
267
|
266
|
},
|
268
|
|
- dialyzer: function() {
|
269
|
|
- var v = this.getValueStr("dialyzer", "hemodialysis_machine")
|
|
267
|
+ dialyzer: function () {
|
|
268
|
+ var v = this.getValueStr('dialyzer', 'hemodialysis_machine')
|
270
|
269
|
if (v.length == 0) {
|
271
|
|
- return ""
|
|
270
|
+ return ''
|
272
|
271
|
}
|
273
|
272
|
if (this.device_number_map[v] != undefined) {
|
274
|
273
|
return this.device_number_map[v].name
|
275
|
274
|
}
|
276
|
|
- return ""
|
|
275
|
+ return ''
|
277
|
276
|
},
|
278
|
|
- dialysate_formulation: function(){
|
279
|
|
- var v = this.getValueStr("dialysate_formulation", "dialysate_formulation")
|
|
277
|
+ dialysate_formulation: function () {
|
|
278
|
+ var v = this.getValueStr('dialysate_formulation', 'dialysate_formulation')
|
280
|
279
|
if (v.length == 0) {
|
281
|
|
- return ""
|
|
280
|
+ return ''
|
282
|
281
|
}
|
283
|
|
- if(v in this.dialysateFormulationMap) {
|
284
|
|
- return this.dialysateFormulationMap[v].name;
|
|
282
|
+ if (v in this.dialysateFormulationMap) {
|
|
283
|
+ return this.dialysateFormulationMap[v].name
|
285
|
284
|
}
|
286
|
|
- return ""
|
|
285
|
+ return ''
|
287
|
286
|
},
|
288
|
|
- prescription_dewatering: function() {
|
289
|
|
- var v = this.getValueStr("prescription_dewatering", "dewater")
|
290
|
|
- return v.length == 0 ? "0" : v
|
|
287
|
+ prescription_dewatering: function () {
|
|
288
|
+ var v = this.getValueStr('prescription_dewatering', 'dewater')
|
|
289
|
+ return v.length == 0 ? '0' : v
|
291
|
290
|
},
|
292
|
|
- anticoagulant: function() {
|
293
|
|
- var v = this.getValueStr("anticoagulant", "anticoagulant")
|
|
291
|
+ anticoagulant: function () {
|
|
292
|
+ var v = this.getValueStr('anticoagulant', 'anticoagulant')
|
294
|
293
|
if (v.length == 0) {
|
295
|
|
- return ""
|
|
294
|
+ return ''
|
296
|
295
|
}
|
297
|
296
|
if (this.$store.getters.anticoagulants_confit[v] != undefined) {
|
298
|
297
|
return this.$store.getters.anticoagulants_confit[v].name
|
299
|
298
|
}
|
300
|
|
- return ""
|
|
299
|
+ return ''
|
301
|
300
|
},
|
302
|
|
- anticoagulant_zongliang: function() {
|
303
|
|
- var v = this.getValueStr("anticoagulant_zongliang", "anticoagulant_zongliang")
|
304
|
|
- return v.length == 0 ? "0" : v
|
|
301
|
+ anticoagulant_zongliang: function () {
|
|
302
|
+ var v = this.getValueStr('anticoagulant_zongliang', 'anticoagulant_zongliang')
|
|
303
|
+ return v.length == 0 ? '0' : v
|
305
|
304
|
},
|
306
|
|
- calcium: function() {
|
307
|
|
-
|
308
|
|
- var v = this.getValueStr("calcium", "calcium")
|
|
305
|
+ calcium: function () {
|
|
306
|
+ var v = this.getValueStr('calcium', 'calcium')
|
309
|
307
|
v = this.getFloat(v)
|
310
|
|
- return v == 0 ? "0":v
|
311
|
|
-
|
312
|
|
-
|
|
308
|
+ return v == 0 ? '0' : v
|
313
|
309
|
},
|
314
|
310
|
|
315
|
|
- conductivity: function() {
|
316
|
|
- var v = this.getValueStr("conductivity", "conductivity")
|
317
|
|
- return v.length == 0 ? "0" : v
|
318
|
|
- },
|
319
|
|
- dialyzer_perfusion_apparatus: function() {
|
320
|
|
- return this.getValueStr("dialyzer_perfusion_apparatus", "dialyzer_perfusion_apparatus")
|
321
|
|
- },
|
322
|
|
- note: function() {
|
323
|
|
- return this.getValueStr("remark", "remark")
|
324
|
|
- },body_fluid:function () {
|
325
|
|
- var id = this.getValueStr("body_fluid", "body_fluid")
|
326
|
|
- if(id == 0){
|
327
|
|
- return ""
|
|
311
|
+ conductivity: function () {
|
|
312
|
+ var v = this.getValueStr('conductivity', 'conductivity')
|
|
313
|
+ return v.length == 0 ? '0' : v
|
|
314
|
+ },
|
|
315
|
+ dialyzer_perfusion_apparatus: function () {
|
|
316
|
+ return this.getValueStr('dialyzer_perfusion_apparatus', 'dialyzer_perfusion_apparatus')
|
|
317
|
+ },
|
|
318
|
+ note: function () {
|
|
319
|
+ return this.getValueStr('remark', 'remark')
|
|
320
|
+ },
|
|
321
|
+ body_fluid: function () {
|
|
322
|
+ var id = this.getValueStr('body_fluid', 'body_fluid')
|
|
323
|
+ if (id == 0) {
|
|
324
|
+ return ''
|
328
|
325
|
}
|
329
|
|
- var bodyFluidOptions = this.$store.getters.body_fluid;
|
330
|
|
- for (let i = 0; i <bodyFluidOptions.length; i++){
|
331
|
|
- if(bodyFluidOptions[i].id == id){
|
|
326
|
+ var bodyFluidOptions = this.$store.getters.body_fluid
|
|
327
|
+ for (let i = 0; i < bodyFluidOptions.length; i++) {
|
|
328
|
+ if (bodyFluidOptions[i].id == id) {
|
332
|
329
|
return bodyFluidOptions[i].name
|
333
|
330
|
}
|
334
|
331
|
}
|
335
|
|
- },special_medicine:function () {
|
336
|
|
- var id = this.getValueStr("special_medicine", "special_medicine")
|
337
|
|
- if(id == 0){
|
338
|
|
- return ""
|
|
332
|
+ },
|
|
333
|
+ special_medicine: function () {
|
|
334
|
+ var id = this.getValueStr('special_medicine', 'special_medicine')
|
|
335
|
+ if (id == 0) {
|
|
336
|
+ return ''
|
339
|
337
|
}
|
340
|
|
- var special_medicine = this.$store.getters.special_medicine;
|
341
|
|
- for (let i = 0; i <special_medicine.length; i++){
|
342
|
|
- if(special_medicine[i].id == id){
|
|
338
|
+ var special_medicine = this.$store.getters.special_medicine
|
|
339
|
+ for (let i = 0; i < special_medicine.length; i++) {
|
|
340
|
+ if (special_medicine[i].id == id) {
|
343
|
341
|
return special_medicine[i].name
|
344
|
342
|
}
|
345
|
343
|
}
|
346
|
|
- },special_medicine_other:function () {
|
347
|
|
- return this.getValueStr("special_medicine_other", "special_medicine_other")
|
348
|
|
- },blood_access:function () {
|
349
|
|
- var id = this.getValueStr("blood_access", "blood_access")
|
350
|
|
- if(id == 0){
|
351
|
|
- return ""
|
|
344
|
+ },
|
|
345
|
+ special_medicine_other: function () {
|
|
346
|
+ return this.getValueStr('special_medicine_other', 'special_medicine_other')
|
|
347
|
+ },
|
|
348
|
+ blood_access: function () {
|
|
349
|
+ var id = this.getValueStr('blood_access', 'blood_access')
|
|
350
|
+ if (id == 0) {
|
|
351
|
+ return ''
|
352
|
352
|
}
|
353
|
|
- var blood_access = this.$store.getters.blood_access;
|
354
|
|
- for (let i = 0; i <blood_access.length; i++){
|
355
|
|
- if(blood_access[i].id == id){
|
|
353
|
+ var blood_access = this.$store.getters.blood_access
|
|
354
|
+ console.log('blood_access', blood_access)
|
|
355
|
+ for (let i = 0; i < blood_access.length; i++) {
|
|
356
|
+ if (blood_access[i].id == id) {
|
356
|
357
|
return blood_access[i].name
|
357
|
358
|
}
|
358
|
359
|
}
|
359
|
|
- },displace_liqui:function () {
|
360
|
|
- var id = this.getValueStr("displace_liqui_part", "displace_liqui_part")
|
361
|
|
- var displace_liqui_value = this.getValueStr("displace_liqui_value", "displace_liqui_value")
|
362
|
|
- var displace_liqui_part = ""
|
363
|
|
- var displace_liqui = this.$store.getters.displace_liqui;
|
364
|
|
- for (let i = 0; i <displace_liqui.length; i++){
|
365
|
|
- if(displace_liqui[i].id == id){
|
366
|
|
- displace_liqui_part = displace_liqui[i].name
|
|
360
|
+ },
|
|
361
|
+ displace_liqui: function () {
|
|
362
|
+ var id = this.getValueStr('displace_liqui_part', 'displace_liqui_part')
|
|
363
|
+ var displace_liqui_value = this.getValueStr('displace_liqui_value', 'displace_liqui_value')
|
|
364
|
+ var displace_liqui_part = ''
|
|
365
|
+ var displace_liqui = this.$store.getters.displace_liqui
|
|
366
|
+ for (let i = 0; i < displace_liqui.length; i++) {
|
|
367
|
+ if (displace_liqui[i].id == id) {
|
|
368
|
+ displace_liqui_part = displace_liqui[i].name
|
367
|
369
|
}
|
368
|
370
|
}
|
369
|
|
- return displace_liqui_part + displace_liqui_value+"L"
|
370
|
|
- },ultrafiltration:function () {
|
371
|
|
- var v = this.getValueStr("ultrafiltration", "ultrafiltration")
|
|
371
|
+ return displace_liqui_part + displace_liqui_value + 'L'
|
|
372
|
+ },
|
|
373
|
+ ultrafiltration: function () {
|
|
374
|
+ var v = this.getValueStr('ultrafiltration', 'ultrafiltration')
|
372
|
375
|
v = this.getFloat(v)
|
373
|
|
- return v.length == 0 ? "0" : v
|
374
|
|
- },target_ktv:function () {
|
375
|
|
- var v = this.getValueStr("target_ktv", "target_ktv")
|
376
|
|
- return v.length == 0 ? "0" : v
|
|
376
|
+ return v.length == 0 ? '0' : v
|
|
377
|
+ },
|
|
378
|
+ target_ktv: function () {
|
|
379
|
+ var v = this.getValueStr('target_ktv', 'target_ktv')
|
|
380
|
+ return v.length == 0 ? '0' : v
|
377
|
381
|
}
|
378
|
382
|
},
|
379
|
|
- created() {
|
|
383
|
+ created () {
|
380
|
384
|
var perfusion_apparatus = this.$store.getters.perfusion_apparatus
|
381
|
385
|
var map = {}
|
382
|
386
|
for (let index = 0; index < perfusion_apparatus.length; index++) {
|
383
|
|
- const p = perfusion_apparatus[index];
|
|
387
|
+ const p = perfusion_apparatus[index]
|
384
|
388
|
map[p.id] = p
|
385
|
389
|
}
|
386
|
390
|
this.perfusion_apparatus_map = map
|
387
|
391
|
|
388
|
|
- var dialysateFormulationOptions = getDataConfig('hemodialysis','dialysate_formulation');
|
389
|
|
- for(var index in dialysateFormulationOptions){
|
390
|
|
- this.dialysateFormulationMap[dialysateFormulationOptions[index].id] = dialysateFormulationOptions[index];
|
|
392
|
+ var dialysateFormulationOptions = getDataConfig('hemodialysis', 'dialysate_formulation')
|
|
393
|
+ for (var index in dialysateFormulationOptions) {
|
|
394
|
+ this.dialysateFormulationMap[dialysateFormulationOptions[index].id] = dialysateFormulationOptions[index]
|
391
|
395
|
}
|
392
|
396
|
},
|
393
|
397
|
methods: {
|
394
|
|
- isShow(name){
|
|
398
|
+ isShow (name) {
|
395
|
399
|
var filedList = this.$store.getters.user.fileds
|
396
|
|
- for (let i = 0; i < filedList.length; i++){
|
397
|
|
- if(filedList[i].module == 1 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
|
|
400
|
+ for (let i = 0; i < filedList.length; i++) {
|
|
401
|
+ if (filedList[i].module == 1 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
|
398
|
402
|
return true
|
399
|
403
|
}
|
400
|
404
|
}
|
401
|
405
|
return false
|
402
|
406
|
},
|
403
|
|
- getValueStr(pkey, skey) {
|
404
|
|
- if ((this.prescription == null || this.prescription.id == "") && (this.solution == null || this.solution.id == "")) {
|
405
|
|
- return ""
|
406
|
|
- } else if (this.prescription != null && this.prescription.id != "") {
|
|
407
|
+ getValueStr (pkey, skey) {
|
|
408
|
+ if ((this.prescription == null || this.prescription.id == '') && (this.solution == null || this.solution.id == '')) {
|
|
409
|
+ return ''
|
|
410
|
+ } else if (this.prescription != null && this.prescription.id != '') {
|
407
|
411
|
if (this.prescription[pkey] == null || this.prescription[pkey] == undefined) {
|
408
|
|
- return ""
|
|
412
|
+ return ''
|
409
|
413
|
}
|
410
|
|
- return this.prescription[pkey] + ""
|
|
414
|
+ return this.prescription[pkey] + ''
|
411
|
415
|
} else {
|
412
|
416
|
if (this.solution[skey] == null || this.solution[skey] == undefined) {
|
413
|
|
- return ""
|
|
417
|
+ return ''
|
414
|
418
|
}
|
415
|
|
- return this.solution[skey] + ""
|
|
419
|
+ return this.solution[skey] + ''
|
416
|
420
|
}
|
417
|
|
- }, getFloat: function(x) {
|
|
421
|
+ },
|
|
422
|
+ getFloat: function (x) {
|
418
|
423
|
if (x != '.') {
|
419
|
|
- var f = Math.round(x * 100) / 100;
|
420
|
|
- var s = f.toString();
|
421
|
|
- var rs = s.indexOf('.');
|
|
424
|
+ var f = Math.round(x * 100) / 100
|
|
425
|
+ var s = f.toString()
|
|
426
|
+ var rs = s.indexOf('.')
|
422
|
427
|
if (rs <= 0) {
|
423
|
|
- rs = s.length;
|
424
|
|
- s += '.';
|
|
428
|
+ rs = s.length
|
|
429
|
+ s += '.'
|
425
|
430
|
}
|
426
|
431
|
while (s.length <= rs + 1) {
|
427
|
|
- s += '0';
|
|
432
|
+ s += '0'
|
428
|
433
|
}
|
429
|
|
- return s;
|
|
434
|
+ return s
|
430
|
435
|
} else {
|
431
|
|
- return '0.0';
|
|
436
|
+ return '0.0'
|
432
|
437
|
}
|
433
|
|
-
|
434
|
438
|
}
|
435
|
439
|
}
|
436
|
|
-};
|
|
440
|
+}
|
437
|
441
|
</script>
|
438
|
442
|
|
439
|
443
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
440
|
444
|
</style>
|
441
|
|
-
|
442
|
|
-
|
443
|
|
-
|