|
|
@@ -224,7 +224,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
type: "edit",
|
|
|
- caseItem: null,
|
|
|
+ caseItem: {},
|
|
|
radio: 0,
|
|
|
current: 0,
|
|
|
suitData: {},
|
|
|
@@ -257,6 +257,7 @@ export default {
|
|
|
methods: {
|
|
|
// 切换药方
|
|
|
changeTab(item, index) {
|
|
|
+ if (this.current === index) return;
|
|
|
if (item.type == 0) {
|
|
|
this._getChinesePadDetail(item.pid);
|
|
|
}
|
|
|
@@ -384,7 +385,7 @@ export default {
|
|
|
item.detail.forEach(item1 => {
|
|
|
arr.push(item1.platformdrugid);
|
|
|
});
|
|
|
- this.getMedForRecipeA(arr.join(","), item.pid);
|
|
|
+ // this.getMedForRecipeA(arr.join(","), item.pid);
|
|
|
});
|
|
|
|
|
|
// this.msg.patientprescription.filter(item => {
|