Commit e87d4fa5 authored by 任鸿志's avatar 任鸿志

env(development): 更新 API 地址并调整结算逻辑

- 修改 VUE_APP_BASE_URL 为 http://10.10.9.219:8802
- 更新 VUE_APP_BASE_URL_SFC 为 http://10.10.9.219:8802
- 调整 outpatientCharging 组件中的处方审核逻辑
  - 在计算患者负担金额后立即显示对话框
  - 移除不必要的 await
  - 调整异常处理结构
parent 34c67563
......@@ -11,7 +11,7 @@ VUE_APP_BASE_API = ''
# VUE_APP_BASE_URL = 'http://10.10.40.69:9903'
VUE_APP_BASE_URL_change = 'http://10.10.8.230:6200/fancy'
# VUE_APP_BASE_URL = 'http://127.0.0.1:9902'
VUE_APP_BASE_URL = 'http://10.10.9.219:9902'
VUE_APP_BASE_URL = 'http://10.10.9.219:8802'
# VUE_APP_BASE_URL = 'http://10.10.9.219:9902'
VUE_APP_BASE_URL_SFC = 'http://10.10.9.219:8802'
# VUE_APP_BASE_URL_SFC = 'http://127.0.0.1:9902'
......
......@@ -2618,8 +2618,9 @@ export default {
this.form.djf = this.round(this.round(this.round(this.bxxxinfo.patient_burden - this.bxxxinfo.gjzhzf, 2) - this.bxxxinfo.his_deduct_amount, 2) - this.bxxxinfo.grzhzf, 2) //this.round(this.round(this.round(this.bxxxinfo.patient_burden - this.bxxxinfo.gjzhzf, 2) - this.bxxxinfo.his_deduct_amount, 2) - this.bxxxinfo.grzhzf, 2)
// this.form.djf=0
console.log(this.form.djf, 'djf')
this.dialogVisible = true
// 验证违规
await prescription({
prescription({
patient_id: this.patientData.patient_id,
settle_type: this.selectTableArr[0] ? this.selectTableArr[0].settle_type.code : '',
prescription_nos: this.cost_id,
......@@ -2633,7 +2634,7 @@ export default {
// } else {
// }
})
this.dialogVisible = true
})
})
.catch(err => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment