Merge remote-tracking branch 'origin/20240912_adapter' into 20240912_adapter

20240912_adapter
wangwei 5 months ago
commit f5f4b2c1d3

@ -1749,11 +1749,12 @@ export default {
//
if (!this.$isNotBlank(this.editQuery.sptm) && !this.$isNotBlank(this.editQuery.ybbm)) {
getCodeRelDetail({drugcode:row.nameCode}).then((response) => {
getCodeRelDetail({drugCode:row.nameCode}).then((response) => {
if (response.code == 20000) {
if (this.response.data != null && this.response.data.length > 0) {
this.editQuery.sptm = this.response.data[0].sptm;
this.editQuery.ybbm = this.response.data[0].ybbm;
if (response.data != null && response.data.length > 0) {
this.editQuery.sptm = response.data[0].sptm;
this.editQuery.ybbm = response.data[0].ybbm;
this.getYbHcData()
}
}
}).catch(() => {

Loading…
Cancel
Save