imeik-bizui 1.8.4 → 1.8.5

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.
@@ -94,7 +94,7 @@
94
94
  <!-- 授课名称 -->
95
95
  <template slot="className" slot-scope="{ row }">
96
96
  <div v-if="!isView">
97
- <ImInput v-model="row.className" :class="{ 'is-error': row.valid === false && checkHasCourse(row) }" placeholder="请输入" maxlength="100"></ImInput>
97
+ <ImInput v-model="row.courseName" :class="{ 'is-error': row.valid === false && checkHasCourse(row) }" placeholder="请输入" maxlength="100"></ImInput>
98
98
  </div>
99
99
  <div v-else>
100
100
  <ImDiffText v-if="showDiff" :show-diff="showDiff" :old-value="row.courseName" :no-absolute="true" :new-value="row._newData?.courseName" />
@@ -367,7 +367,7 @@ export default {
367
367
  } else if (!item.doctorServiceSceneCode) {
368
368
  res && showMessage && this.$message.warning('请检查服务场景')
369
369
  res = false
370
- } else if (this.checkHasCourse(item) && !item.className) {
370
+ } else if (this.checkHasCourse(item) && !item.courseName) {
371
371
  res && showMessage && this.$message.warning('请填写授课名称')
372
372
  res = false
373
373
  } else if (!item.costAmount) {