imeik-bizui 1.9.0 → 1.9.2

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.
@@ -95,12 +95,12 @@
95
95
  </template>
96
96
  <!-- 授课名称 -->
97
97
  <template slot="className" slot-scope="{ row }">
98
- <div v-if="!isView">
98
+ <div v-if="!isView && checkHasCourse(row)">
99
99
  <ImInput v-model="row.courseName" :class="{ 'is-error': row.valid === false && checkHasCourse(row) }" placeholder="请输入" maxlength="100"></ImInput>
100
100
  </div>
101
101
  <div v-else>
102
102
  <ImDiffText v-if="showDiff" :show-diff="showDiff" :old-value="row.courseName" :no-absolute="true" :new-value="row._newData?.courseName" />
103
- <div v-else>{{ row.courseName }}</div>
103
+ <div v-else>{{ row.courseName || '-' }}</div>
104
104
  </div>
105
105
  </template>
106
106
 
@@ -254,7 +254,7 @@ export default {
254
254
  }
255
255
  },
256
256
  {
257
- label: '活动身份',
257
+ label: '活动参与身份',
258
258
  prop: 'identity',
259
259
  type: 'slot',
260
260
  slot: 'identity',