|
@@ -817,6 +817,7 @@ public class CallingBedActivity extends BaseActivity implements ISerialPortBedOn
|
|
//对于rv 的初始化
|
|
//对于rv 的初始化
|
|
costArrayList = new ArrayList<>();
|
|
costArrayList = new ArrayList<>();
|
|
costAdapter = new CostAdapter(costArrayList);
|
|
costAdapter = new CostAdapter(costArrayList);
|
|
|
|
+ rvCost.setAdapter(costAdapter);
|
|
rvCost.setLayoutManager(new FullyLinearLayoutManager(this));
|
|
rvCost.setLayoutManager(new FullyLinearLayoutManager(this));
|
|
rvCost.setOnTouchListener(new View.OnTouchListener() {
|
|
rvCost.setOnTouchListener(new View.OnTouchListener() {
|
|
@Override
|
|
@Override
|
|
@@ -856,6 +857,7 @@ public class CallingBedActivity extends BaseActivity implements ISerialPortBedOn
|
|
|
|
|
|
doctorChargeArrayList = new ArrayList<>();
|
|
doctorChargeArrayList = new ArrayList<>();
|
|
doctorAdapter = new DoctorAdapter(doctorChargeArrayList);
|
|
doctorAdapter = new DoctorAdapter(doctorChargeArrayList);
|
|
|
|
+ rvDoctor.setAdapter(doctorAdapter);
|
|
rvDoctor.setLayoutManager(new FullyLinearLayoutManager(this));
|
|
rvDoctor.setLayoutManager(new FullyLinearLayoutManager(this));
|
|
rvDoctor.setOnTouchListener(new View.OnTouchListener() {
|
|
rvDoctor.setOnTouchListener(new View.OnTouchListener() {
|
|
@Override
|
|
@Override
|
|
@@ -1499,7 +1501,6 @@ public class CallingBedActivity extends BaseActivity implements ISerialPortBedOn
|
|
doctorChargeArrayList = doctorDataEntity.getDoctorChargeArray();
|
|
doctorChargeArrayList = doctorDataEntity.getDoctorChargeArray();
|
|
}
|
|
}
|
|
doctorAdapter.upDateList(doctorChargeArrayList);
|
|
doctorAdapter.upDateList(doctorChargeArrayList);
|
|
- rvDoctor.setAdapter(doctorAdapter);
|
|
|
|
|
|
|
|
tvDoctorPageName.setText("姓名: " + doctorDataEntity.getName());
|
|
tvDoctorPageName.setText("姓名: " + doctorDataEntity.getName());
|
|
tvDoctorPageInpatientNum.setText("住院号: " + doctorDataEntity.getInpatientNum());
|
|
tvDoctorPageInpatientNum.setText("住院号: " + doctorDataEntity.getInpatientNum());
|
|
@@ -1515,7 +1516,6 @@ public class CallingBedActivity extends BaseActivity implements ISerialPortBedOn
|
|
costArrayList = costDataEntity.getCostArray();
|
|
costArrayList = costDataEntity.getCostArray();
|
|
}
|
|
}
|
|
costAdapter.upDateList(costArrayList);
|
|
costAdapter.upDateList(costArrayList);
|
|
- rvCost.setAdapter(costAdapter);
|
|
|
|
|
|
|
|
tvCostPageName.setText("姓名: " + costDataEntity.getName());
|
|
tvCostPageName.setText("姓名: " + costDataEntity.getName());
|
|
tvCostPageInpatientNum.setText("住院号: " + costDataEntity.getInpatientNum());
|
|
tvCostPageInpatientNum.setText("住院号: " + costDataEntity.getInpatientNum());
|