imeik-bizui 2.1.1 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -204,8 +204,7 @@ export default {
204
204
  'remote-method': this.getExpertsList
205
205
  },
206
206
  scenarioLoading: false,
207
- doctorLoading: false,
208
- costFeeList: []
207
+ doctorLoading: false
209
208
  }
210
209
  },
211
210
  computed: {
@@ -467,9 +466,11 @@ export default {
467
466
  value: item.sceneAndIdentity,
468
467
  standardAmount: item.standardAmount
469
468
  }))
470
- this.costFeeList = JSON.parse(res.data).costFeeList
471
469
  this.$set(data, 'scenarioList', list)
470
+ this.$set(data, 'costFeeList', JSON.parse(res.data).costFeeList)
472
471
  this.$set(data, 'shenfenList', shenfenList)
472
+ } else {
473
+ this.$message.error(res.message)
473
474
  }
474
475
  })
475
476
  }
@@ -477,7 +478,7 @@ export default {
477
478
  handleChangeIdentity(val, row) {
478
479
  const sceneInfo = row.shenfenList_new.find((item) => item.value === val)
479
480
  this.$set(row, 'standardAmount', sceneInfo.standardAmount)
480
- this.costFeeList.forEach((item) => {
481
+ row.costFeeList.forEach((item) => {
481
482
  if (item.sceneAndIdentity === row.doctorServiceSceneName + '_' + row.identity) {
482
483
  this.$set(row, 'costFee', item.costFee)
483
484
  }