|
@@ -466,6 +466,7 @@
|
466
|
466
|
@changeInspect="changeInspect"
|
467
|
467
|
@changeDiagnosis="changeDiagnosis"
|
468
|
468
|
@changeTreatmentPlanning="changeTreatmentPlanning"
|
|
469
|
+ @changeImageingInspect="changeImageingInspect"
|
469
|
470
|
@changeDispose="changeDispose"
|
470
|
471
|
@changeNote="changeNote"
|
471
|
472
|
:widthSize="widthSize"
|
|
@@ -483,6 +484,9 @@
|
483
|
484
|
:treatmentPlanningContent="treatmentPlanningContent"
|
484
|
485
|
:treatmentPlanningStr="treatmentPlanningStr"
|
485
|
486
|
:treatmentPlanningOptions="treatmentPlanningOptions"
|
|
487
|
+ :imageInspectContent="imageInspectContent"
|
|
488
|
+ :imageInspectStr="imageInspectStr"
|
|
489
|
+ :imageInspectOption="imageInspectOption"
|
486
|
490
|
:disposeContent="disposeContent"
|
487
|
491
|
:disposeStr="disposeStr"
|
488
|
492
|
:disposeOptions="disposeOptions"
|
|
@@ -753,6 +757,11 @@ export default {
|
753
|
757
|
treatmentPlanningOptions:{}, //治疗计划的下拉对应内容
|
754
|
758
|
treatmentPlanningMap: new Map(), //治疗计划的map
|
755
|
759
|
|
|
760
|
+ imageInspectContent:"", //影像检查的合并内容
|
|
761
|
+ imageInspectStr:[], //影像检查的合并一句话的格式
|
|
762
|
+ imageInspectOption:{}, //影像检查的下拉对应内容
|
|
763
|
+ imageInspectMap: new Map(), //影像检查的map
|
|
764
|
+
|
756
|
765
|
disposeContent:"", //处置的合并内容
|
757
|
766
|
disposeStr:[], //处置的合并一句话的格式
|
758
|
767
|
disposeOptions:{}, //处置的下拉对应内容
|
|
@@ -1087,6 +1096,14 @@ export default {
|
1087
|
1096
|
}
|
1088
|
1097
|
]
|
1089
|
1098
|
|
|
1099
|
+ this.imageInspectContent = obj.imageInspectContent
|
|
1100
|
+ this.imageInspectStr = [
|
|
1101
|
+ {
|
|
1102
|
+ type: 'string',
|
|
1103
|
+ value: obj.imageInspectContent
|
|
1104
|
+ }
|
|
1105
|
+ ]
|
|
1106
|
+
|
1090
|
1107
|
this.disposeContent = obj.disposeContent
|
1091
|
1108
|
this.disposeStr = [
|
1092
|
1109
|
{
|
|
@@ -1205,6 +1222,25 @@ export default {
|
1205
|
1222
|
this.treatmentPlanningOptions = Object.assign(this.treatmentPlanningOptions, list.treatmentPlanningOption.dic_data);
|
1206
|
1223
|
}
|
1207
|
1224
|
|
|
1225
|
+ // 判断是否有相同的合并内容 如果相同则直接合并如果不同加新的合并内容 //影像检查
|
|
1226
|
+ if(this.imageInspectMap.has("_" + list.imageInspectContent)){
|
|
1227
|
+ let imageInspectOptionStr = this.imageInspectMap.get("_" + list.imageInspectContent) // 老牙位
|
|
1228
|
+ let str = this.initToothPosition(this.yaKey) + imageInspectOptionStr // 老新结合 牙位
|
|
1229
|
+ this.imageInspectMap.set("_" + list.imageInspectContent,str)
|
|
1230
|
+ this.imageInspectContent = this.imageInspectContent.replace(imageInspectOptionStr,str)
|
|
1231
|
+ this.imageInspectStr = this.imageInspectStr.map(item=>{
|
|
1232
|
+ if(item.value == imageInspectOptionsStr){
|
|
1233
|
+ item.value = str
|
|
1234
|
+ }
|
|
1235
|
+ return item
|
|
1236
|
+ })
|
|
1237
|
+ }else {
|
|
1238
|
+ this.imageInspectMap.set("_" + list.imageInspectContent,this.initToothPosition(this.yaKey))
|
|
1239
|
+ this.imageInspectContent = this.imageInspectContent + this.initToothPosition(this.yaKey) + list.imageInspectContent
|
|
1240
|
+ this.imageInspectStr = [...this.imageInspectStr,{type:'string',value:this.initToothPosition(this.yaKey)},...list.imageInspectOption.str]
|
|
1241
|
+ this.imageInspectOptions = Object.assign(this.imageInspectOption, list.imageInspectOption.dic_data);
|
|
1242
|
+ }
|
|
1243
|
+
|
1208
|
1244
|
// 判断是否有相同的合并内容 如果相同则直接合并如果不同加新的合并内容 //处置
|
1209
|
1245
|
if(this.disposeMap.has("_" + list.disposeContent)){
|
1210
|
1246
|
let disposeOptionsStr = this.disposeMap.get("_" + list.disposeContent) // 老牙位
|
|
@@ -1297,6 +1333,11 @@ export default {
|
1297
|
1333
|
this.treatmentPlanningOptions={}
|
1298
|
1334
|
this.treatmentPlanningMap= new Map()
|
1299
|
1335
|
|
|
1336
|
+ this.imageInspectContent=""
|
|
1337
|
+ this.imageInspectStr=[]
|
|
1338
|
+ this.imageInspectOption={}
|
|
1339
|
+ this.imageInspectMap= new Map()
|
|
1340
|
+
|
1300
|
1341
|
this.disposeContent=""
|
1301
|
1342
|
this.disposeStr=[]
|
1302
|
1343
|
this.disposeOptions={}
|
|
@@ -1401,6 +1442,9 @@ export default {
|
1401
|
1442
|
changeTreatmentPlanning(name){
|
1402
|
1443
|
this.treatmentPlanningContent = name;
|
1403
|
1444
|
},
|
|
1445
|
+ changeImageingInspect(name){
|
|
1446
|
+ this.imageInspectContent = name;
|
|
1447
|
+ },
|
1404
|
1448
|
changeDispose(name){
|
1405
|
1449
|
this.disposeContent = name;
|
1406
|
1450
|
},
|