Browse Source

item

master
pengjun 2 years ago
parent
commit
92e2f052a9
  1. 46
      src/views/fee-settings/Item.vue

46
src/views/fee-settings/Item.vue

@ -1823,15 +1823,28 @@ export default {
created() {
// this.getlist();
this.getmedicalconclusionlist();
this.dictInit() //
},
mounted() {
this.rowDrop();
this.typeid();
},
computed: {
...mapState(["window","dict"]),
},
methods: {
dictInit(){
//
postapi("/api/app/Diagnosis/GetSimpleList").then((res) => {
if (res.code != -1) {
this.diagnosisId = res.data;
this.quickAsb = res.data;
}
});
},
//
enablediagnostics(v) {
if (v == "N") {
@ -2002,8 +2015,7 @@ export default {
this.diagnosticediting = true;
if (this.$refs.editdigoisceditingform !== undefined) {
this.$refs.editdigoisceditingform.resetFields();
}
this.diageoisaddId();
}
}
},
deleteDiagnosis() {
@ -2043,18 +2055,9 @@ export default {
}
});
},
//Id
diageoisaddId() {
postapi("/api/app/Diagnosis/GetSimpleList").then((res) => {
if (res.code != -1) {
this.editdigoisceDiagnosisId = res.data;
this.quckeDitd = res.data;
}
});
},
//
adddiagnosis() {
this.diageoisaddId();
adddiagnosis() {
this.diagnostiele = 1;
this.diagnosticediting = true;
if (this.$refs.editdigoisceditingform !== undefined) {
@ -2071,8 +2074,7 @@ export default {
diagnosticmatching() {
this.form = { ...this.curRow };
this.diagnosdialogVisible = true;
this.putDiagnosis();
this.diageoisaddId();
this.putDiagnosis();
this.$nextTick(() => {
this.rowDropes();
});
@ -2278,12 +2280,7 @@ export default {
this.itemId = res.data;
}
});
postapi("/api/app/diagnosis/getlistinsuggestion").then((res) => {
if (res.code != -1) {
this.diagnosisId = res.data;
this.quickAsb = res.data;
}
});
},
//
increase() {
@ -2415,12 +2412,7 @@ export default {
this.resultStatusId = res.data;
}
});
postapi("/api/app/diagnosis/getlistinsuggestion").then((res) => {
if (res.code != -1) {
this.diagnosisId = res.data;
this.quickAsb = res.data;
}
});
// //
// getapi("/api/app/item-type/by-code-all").then((res) => {
// this.resultitemtype = res.data;

Loading…
Cancel
Save