diff --git a/src/resources/components/TsAvatar/TsAvatar.vue b/src/resources/components/TsAvatar/TsAvatar.vue index 6790e99111b00e343c06cbd961e7bb398f3a2c30..41e7431f252c865164a955645445656379e69a41 100644 --- a/src/resources/components/TsAvatar/TsAvatar.vue +++ b/src/resources/components/TsAvatar/TsAvatar.vue @@ -64,12 +64,11 @@ export default { }, computed: { avatarSrc() { - if (this.avatar === null) return null; if (this.avatar && this.avatar.indexOf('api') > -1) return this.avatar.indexOf(BASEURLPREFIX + '/') != 0 ? BASEURLPREFIX + '/' + this.avatar : this.avatar; if (this.initType === 'role') return require('@/resources/assets/images/avatar/role.png'); if (this.initType === 'team') return require('@/resources/assets/images/avatar/team.png'); if (this.initType === 'user' && !this.namePinyin) return require('@/resources/assets/images/avatar/user.png'); - if (this.initType && !this.namePinyin) return require('@/resources/assets/images/avatar/process.png'); + if (this.initType && !['role', 'team', 'user'].includes(this.initType)) return require('@/resources/assets/images/avatar/process.png'); else return null; }, diff --git a/src/views/pages/framework/notifytactics/notifytactics-edit.vue b/src/views/pages/framework/notifytactics/notifytactics-edit.vue index 077170a51aeced89fd4b792287621da4b1f2ee2c..d6be6bbca74abcf8c16ed019c708d553fac055cc 100644 --- a/src/views/pages/framework/notifytactics/notifytactics-edit.vue +++ b/src/views/pages/framework/notifytactics/notifytactics-edit.vue @@ -18,7 +18,12 @@ -
+
- {{ $t('page.actions') }} - {{ row.notifyList.length }} + {{ $t('page.actions') }} +
{{ $t('page.actions') }} @@ -81,17 +86,16 @@
-
-
+
+
diff --git a/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue b/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue index dc5448cc3a313d50f4e4a55c88e5c42547006329..bc64e92354e652656c7ed42f46118ee87c3dffb5 100644 --- a/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue +++ b/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue @@ -89,6 +89,7 @@ border="none" size="small" :transfer="true" + class="transparentSelect" >
@@ -731,4 +732,9 @@ export default { } } } +.transparentSelect { + .ivu-input { + background-color: transparent !important; + } +}